Jump to content

How to uninstall Quicktime 6? - using a script


Recommended Posts

Posted (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 by Jason P

Posted
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 COMPUTER
strComputer = "."
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

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...