Jason P Posted August 3, 2007 Posted August 3, 2007 (edited) Anyone know of a script or GPO that I can use to uninstall Quicktime 6.5? I have some remote workstations that I need to have it removed from. Edited August 3, 2007 by Jason P
gunsmokingman Posted August 4, 2007 Posted August 4, 2007 Anyone know of a script or GPO that I can use to uninstall Quicktime 6.5? I have some remote workstations that I need to have it removed from.You could try a script like this.'/-> PLACE COMPUTER NAME OR IP HERE, THIS IS SET FOR LOCAL COMPUTERstrComputer = "." Set objWMIService = GetObject("winmgmts:impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colSoftware = objWMIService.ExecQuery ("Select * from Win32_Product Where Name = 'NAME_OF_APPLICATION'") For Each objSoftware in colSoftware objSoftware.Uninstall() Next
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