/q or /q1 - silent install
/q2 - invisible install
Other useful options in conjunction with /q:
/x - clean up automatically if install fails
/b0 - never reboot after installation
/b1 - reboot if necessary (default)
/b2 - always reboot after installation
Nice thing is, it seems to automatically clean up any old versions installed.
if you want to do an uninstall this string works -
C:\Progra~1\Autodesk\AUTODE~1\Setup.exe /remove /q
youll have to have it remove the program icon also with a script.
another way to uninstall -
vbscript by www.jtbworld.com
on error resume next
Set WshShell = CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
UninstallString=WshShell.RegRead( "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Wind
ows\CurrentVersion\Uninstall\Auto desk Express Viewer\UninstallString")
InstallLocation=WshShell.RegRead("HKEY_LOCAL_MACHIN E\SOFTWARE\Microsoft\Wind
ows\CurrentVersion\Uninstall\Autodesk Express Viewer\InstallLocation")
WshShell.Run UninstallString & " /q",1,true
fso.DeleteFolder InstallLocation, True