bostonrake Posted April 15, 2016 Report post Posted April 15, 2016 I need help with creating script to uninstall Quicktime. I'm pretty comfortable with creating a package in SCCM, but I can't find info on how to remove Quicktime via command line or some other means. Thanks! Quote Share this post Link to post Share on other sites More sharing options...
JLai Posted April 18, 2016 Report post Posted April 18, 2016 Find the product code in the registry HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall (search quicktime on that key). Look at the UninstallString, it usually says MSIEXEC/I{Your Version Product GUID}, you can then build your uninstall string from that. MSIEXEC /X {Your Version Product GUID} /quiet /norestart /log "%TEMP%\Apple QuickTime (Uninstall).log" Quote Share this post Link to post Share on other sites More sharing options...