August 28, 200718 yr Hi. I'm trying to do a silent install of VMWare Workstation 6.0 ACE Edition. I have successfully made it install via administrative package/MSIEXEC but I have one problem:1. It still restarts! Obviously, this is not what I want.Does anyone know of a fix?Also, is there a guide somewhere for Silent iTunes 7 installation?
August 28, 200718 yr /qb INSTALLDIR=%programfiles%\[system.toolz]\vm.ware REBOOT=ReallySuppressthis is what I use and then import the registry entries needed for serialization/registration works flawlessly everytime
August 28, 200718 yr Hi. I'm trying to do a silent install of VMWare Workstation 6.0 ACE Edition. I have successfully made it install via administrative package/MSIEXEC but I have one problem:1. It still restarts! Obviously, this is not what I want.Does anyone know of a fix?Also, is there a guide somewhere for Silent iTunes 7 installation?Ask shark007 Edited August 28, 200718 yr by sp00f
September 2, 200718 yr I do it like this.extract vmware;setup.exe /a /s /v /qn TARGETDIR=%systemdrive%\vmwareThis will extract the vmware installer into C:\vmware (or whatever your system drive is)------------------------------------------------------------------------------------------------------------------------------------------------Create a batch file called install.batPlace these lines in it@ECHO OFFstart /wait /i vmware.msi /qn REBOOT=REALLYSUPPRESS ADDLOCAL=ALL DESKTOPSHORTCUT=1 SERIALNUMBER=XXXXX-XXXXX-XXXXX-XXXXXcopy /y preferences.ini "%userprofile%\application data\vmware\"Put your serial number there at the end replacing XXXXX-XXXXX-XXXXX-XXXXXDon't forget the dashes.Place your preferences.ini from your current vmware installation into the same directory you extracted vmware into You can see that path above, this might be C:\Documents and Settings\Administrator\Application Data\VMware for instance.Place install.bat into the same directory you extracted vmware into.I use winrar to create the sfx with the following settings. (you can use whatever you like)------------------------------------------------------------------------------------------------------------------------------------------------sfx settings;archive name = vmware.execreate sfxcreate solid archivecompression = bestsfx advanced options;general;%userprofile%\local settings\temp\absolute pathdon't save and restore pathsrun after;install.batmodes;unpack to temporary folderhide alloverwrite all files------------------------------------------------------------------------------------------------------------------------------------------------hope this helps, cheers.
September 2, 200718 yr The simple way! VMware-workstation-6.0.0-45731.exe /S /v"/qr SERIALNUMBER=xxxxx-xxxxx-xxxxx-xxxxx DESKTOP_SHORTCUT=0 DISABLE_AUTORUN=0 REBOOT=0"
September 2, 200718 yr Hi. I'm trying to do a silent install of VMWare Workstation 6.0 ACE Edition. I have successfully made it install via administrative package/MSIEXEC but I have one problem:1. It still restarts! Obviously, this is not what I want.Does anyone know of a fix?Also, is there a guide somewhere for Silent iTunes 7 installation?check PM
September 3, 200718 yr I prefer my way, the installer is MUCH smaller, and I can import my settings. Did you try your installer on another OS ?
September 3, 200718 yr yes, it works fine on windows2000 and XP. Edited September 3, 200718 yr by Fungus
September 3, 200718 yr I prefer my way, the installer is MUCH smaller, and I can import my settings. smile.gifIf you want it small....don't use winrar SFX read my tuto here. If you can get it smaller then my way...tell me
September 3, 200718 yr 7zip is not usable on older systems which have low amounts of ram. Otherwise I would probably use it. (I have some legacy machines I use for developing and testing.)I have been bugging the UPX developers to make the --exact switch really make files exactly as they were (byte for byte) before compression. I have done some tests with it as is, and with .exe, .dll , .ocx and .scr files it gets far better compression ratio than either winrar or 7zip if the files are precompressed with all options including the resources. This could be scripted inside a batch or cmd script to uncompress the executable files, and make the compression ratio even higher. It would also allow for compression of windows component files and other things which have crc checks and must not be modified in any way. The AbodeReader installer uses such a technique with a modified UPX, to obtain it's very small installer size. Edited September 3, 200718 yr by Fungus
Create an account or sign in to comment