Jump to content

Recommended Posts

Posted

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

Posted

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])

Posted
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?
Posted
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.

Posted

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?

Posted (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 by localzuk

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...