Software available at: http://sketchup.google.com/download/
EXE can be unzipped using 7-Zip or similar, then there's a simple MSI installer.
- INSTRUCTIONS FOR REMOVING OLD VERSIONS
Copy the following to a batch file to remove version 7:
rem Uninstall old versions
@echo off
echo Remove old versions of Google Sketchup
echo Remove Google Sketchup Version 7
msiexec /x {597E70FF-7C46-4EED-8092-91B7C2E0529D} /qn
echo Uninstall Complete
Add additional msiexec lines containing the product code of any earlier versions
__________________________________________
- INSTRUCTIONS TO INSTALL SKETCHUP VERSION 8
Extract the downloaded Google Sketchup Installer for version 8 using 7zip or some other extraction software
Copy GoogleSketchUp8.msi into a new folder on your computer.
Prepare Google Sketchup 8 for deployment
Edit GoogleSketchUp8.msi with an msi editor , like Orca, and change the INSTALLGOOGLETOOLBAR property to 0 to disable the google toolbar installation, save this to an MST file that you can call during the installation
Alternatively you can use:
INSTALLGOOGLETOOLBAR=0 when calling the MSI file if you prefer not to directly edit your MSI files
Create a new registry file to prevent the update service, and to choose the default template:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Google\SketchUp8\Preferences]
"DefaultTemplate"="C:\\Program Files (x86)\\Google\\Google SketchUp 8\\Resources\\en-US\\Templates\\Temp01b - Simple.skp"
"CheckForUpdates"=dword:00000000
Deploy Google Sketchup 8
Copy the GoogleSketchUp8.msi, and the .mst to your msi deployment share, and add the msi (don't forget to add the mst too!) to the software deployment GPO.
Add the Reg key to the login script so users get the default template and do not get update prompts.
msiexec /i \\servername\GoogleSketchUp8.msi /q LicenseAccepted=1 INSTALLGOOGLETOOLBAR=0 SETDEFAULTSEARCH=0
Works like a charm tested it on Windows XP and 7.
GoogleSketchup 8.0.4811
Google SketchUp Pro 8.x is an .EXE that contains an .MSI installer. You can use the same command-line params as for 7.x or put them in the Property table of a MST/Transform.
Can't see any useful command-lines with "/?" (hardly a surprise these days), but the MSI ends up in the following location (thereabouts) on Windows 7 when you double-click the EXE: C:\Users\username\AppData\Local\Temp\7zS54D.tmp
you can find the msi file in the %temp% folder. just type in %temp% into run and look for the folder named 7zS6.tmp
Running the default setup using the App-V Sequencer from Microsoft works without error. Also able to push the virtual app via SCCM 2007.
I was able to extract the .msi from the .exe using WinRar, then deploy it silently using /i /qn.
To get MSI from EXE you can do following:
* Run exe file and wait till load (don't press next)
* Access %TEMP%
* Mark all in %TEMP% to delete and delete..
* In %TEMP% folder you can't delete you will find MSI package, which you can normally install as classic MSI without any issue.
Hope it helps
To suppress welcome dialog add to your reg file:
[HKEY_CURRENT_USER\Software\Google\SketchUp8\WelcomeDialog]
"ShowOnStartup"=dword:00000000
To find the msi you can also run procmon and the installer at the same time. Just watch file changes and filter on the name of the installer. You can also filter 'catagory contains write'.
View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.
Used "msiexec /i GoogleSketchUp8.msi INSTALLGOOGLETOOLBAR=0 /q" and it worked like a charm! Thank you!