Techdw Posted March 13, 2012 Posted March 13, 2012 I need to unstall a program, On over 100 Pc's C:\Program Files\SafeCom\SafeComAppPrint\unins000.exe What is the best way of doing this and in silent mode if poss as well. Users need admin rights to install and Uninstall so would need that sorted as well. Thanks
localzuk Posted March 13, 2012 Posted March 13, 2012 You should be able to pass a /SILENT switch to that uninstaller. Putting it in a startup script should do the trick? eg. if exist {"[color=#333333][font=Verdana]C:\Program Files\SafeCom\SafeComAppPrint\unins000.exe"[/font][/color]} ( [color=#333333][font=Verdana] C:\Program Files\SafeCom\SafeComAppPrint\unins000.exe /SILENT [/font][/color])
Techdw Posted March 14, 2012 Author Posted March 14, 2012 Great got it to work with silent on the end but I need it to uninstall when I user logs on and it asks for a username and Passoword as the don't have rights to install or Uninstall - Any way round this?
FN-GM Posted March 14, 2012 Posted March 14, 2012 Great got it to work with silent on the end but I need it to uninstall when I user logs on and it asks for a username and Passoword as the don't have rights to install or Uninstall - Any way round this? Use it as a startup script.
Techdw Posted March 14, 2012 Author Posted March 14, 2012 Sorry bit of a newbie to this, Do I just C:\Program Files\SafeCom\SafeComAppPrint\unins000.exe /SILENT to the VBS script or is there extra lines I need to add?
localzuk Posted March 14, 2012 Posted March 14, 2012 (edited) Great got it to work with silent on the end but I need it to uninstall when I user logs on and it asks for a username and Passoword as the don't have rights to install or Uninstall - Any way round this? Do it via a group policy start up script, not a login script - then it will be running as system rather than a user. To execute from VBS - have a look here - http://customerfx.com/pages/crmdeveloper/2004/02/10/how-to-execute-a-file-program-in-vbscript.aspx Edited March 14, 2012 by localzuk
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now