/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
This website uses cookies.
By continuing to use this site and/or clicking the "Accept" button you are providing consent
Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our
websites or when you do business with us. For more information about our
Privacy Policy and our data protection
efforts, please visit
GDPR-HQ