/build/static/layout/Breadcrumb_cap_w.png

how to uninstall quicktime using GPO or WSUS

I am having some issues across the network with people saying that the update keeps popping up and is really annoying. After investigation we decided that we do not need the software at all on any computer anymore. 

With over 3000 Computers on the network is there a way of uninstalling quicktime via Group Policy or Windows updating server. Any help would be fantastic. Thank you in advance.

Liam 

1 Comment   [ + ] Show comment
  • Another thing...... People tell me there is a way of disabling the update prompt ???? Anyone know how I would get about that using the same WSUS or GPO ?? - liam.creaser 9 years ago

Answers (3)

Answer Summary:
Posted by: vjaneczko 9 years ago
9th Degree Black Belt
1
Simple; create a script that is "MSIEXEC /X {PackageGUID} /QB-"

Comments:
  • Thank you, I will give it a go! What does the QB- Stand for ? - liam.creaser 9 years ago
    • Type "MSIEXEC /?" at a CMD prompt for details on the switches, but any of the Q switches sets a level of quietness. - vjaneczko 9 years ago
    • Quiet Basic - It will perofmr a quiet uninstall but provide a basic uninstall gui to the user.
      Use qb-! this switch removes the cancel button so the user can stop the uninstall. - darkgen 9 years ago
      • Thank you, but im looking for full silent with no gui at all so that when i send the script out via gpo the user does not have a choice, it will just un-install with out them knowing. also if you know... The script will not run if the application is open. is there a way to close the application (if open) and the proceed with the un-install. - liam.creaser 9 years ago
Posted by: EdT 9 years ago
Red Belt
1

Use the /qn switch for a silent uninstall.  If you need to first kill any running tasks, you should craft a WMI script that will return all running instances of quicktime and kill them - just in case there are multiple windows open.

Set wshShell = CreateObject("WScript.Shell")
Set objwmisvc = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer &"\root\cimv2")

Set process = objwmisvc.ExecQuery ("Select * from Win32_Process Where Name = 'QUICKTIME.EXE'")
Do
      For Each cprocess In process
              <put your preferred kill code here>
      Next
Set process = objwmisvc.ExecQuery ("Select * from Win32_Process Where Name = 'QUICKTIME.EXE'")
Loop While (process.Count <> 0)


Comments:
  • People tell me there is a way of disabling the update prompt ???? Anyone know how I would get about that using the same WSUS or GPO ?? - liam.creaser 9 years ago
    • You can turn off update checking through the quicktime preferences - the users can do this themselves. Unfortunately, Apple use two XML files within the user profile to store preferences such as turning off update checking, so in deployment terms, you need to install Quicktime then copy the two XML files into the appropriate locations. If they don't exist, they are created with default values on first run. - EdT 9 years ago
Posted by: vjaneczko 9 years ago
9th Degree Black Belt
0

Let's try this again:

Type "MSIEXEC /?" at a CMD prompt for details on the switches, but any of the Q switches sets a level of quietness.


You can also Google how to kill a program from running within a script.  Search for TSKILL


Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Share

 
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