Apple QuickTime is an extensible multimedia framework developed by Apple Inc., capable of handling various formats of digital video, picture, sound, panoramic images, and interactivity. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Apple QuickTime from the command line using both the EXE & MSI installers.
How to Install Apple QuickTime Silently
Apple QuickTime Silent Install (EXE)
- Navigate to: https://www.apple.com/quicktime/download/
- Download the QuickTimeInstaller.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command: QuickTimeInstaller.exe /extract
- Press Enter
- Enter the following command:
- MsiExec.exe /i AppleApplicationSupport.msi /qn
- Press Enter
- Enter the following command:
- QuickTimeInstaller.exe APPLEAPPLICATIONSUPPORTISINSTALLED=1 /qn
- Press Enter
After a few moments you should see the QuickTime Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Apple QuickTime |
Vendor: | Apple Inc. |
Version: | 7.79.80.95 |
Architecture: | x86 |
Installer Type: | EXE |
Silent Install Switch (Step 1) | MsiExec.exe /i AppleApplicationSupport.msi /qn |
Silent Install Switch (Step 2) | QuickTimeInstaller.exe APPLEAPPLICATIONSUPPORTISINSTALLED=1 /qn |
Silent Uninstall Switch: | MsiExec.exe /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /qn |
Download Link: | https://www.apple.com/quicktime/download/ |
PowerShell Script: | https://silentinstallhq.com/apple-quicktime-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-apple-quicktime-powershell/ |
Apple QuickTime Silent Install (MSI)
- Navigate to: https://www.apple.com/quicktime/download/
- Download the QuickTimeInstaller.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command: QuickTimeInstaller.exe /extract
- Press Enter
- Enter the following command:
- MsiExec.exe /i AppleApplicationSupport.msi /qn
- Press Enter
- Enter the following command:
- MsiExec.exe /i QuickTime.msi APPLEAPPLICATIONSUPPORTISINSTALLED=1 /qn
- Press Enter
After a few moments you should see the QuickTime Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.
Software Title: | Apple QuickTime |
Vendor: | Apple Inc. |
Version: | 7.79.80.95 |
Architecture: | x86 |
Installer Type: | MSI |
Silent Install Switch (Step 1) | MsiExec.exe /i AppleApplicationSupport.msi /qn |
Silent Install Switch (Step 2) | MsiExec.exe /i QuickTime.msi APPLEAPPLICATIONSUPPORTISINSTALLED=1 /qn |
Silent Uninstall Switch: | MsiExec.exe /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /qn |
Repair Command: | MsiExec.exe /fa {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /qn |
Download Link: | https://www.apple.com/quicktime/download/ |
PowerShell Script: | https://silentinstallhq.com/apple-quicktime-install-and-uninstall-powershell/ |
Detection Script: | https://silentinstallhq.com/create-a-custom-detection-script-for-apple-quicktime-powershell/ |
The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.
Additional Configurations
Apple QuickTime Silent Install (MSI) Using Transform File (.mst)
- Navigate to: https://www.apple.com/quicktime/download/
- Download the QuickTimeInstaller.exe to a folder created at (C:\Downloads)
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following command: QuickTimeInstaller.exe /extract
- Download & Install InstEd or your favorite MSI Editor
- Right-Click on the QuickTime.msi and select InstEd It!
- Select Transform-> New Transform
- Name the file QuickTime.mst and Save it to C:\Downloads
- Under the LaunchCondition Table, Right-Click the NOT BNEWERPRODUCTISINSTALLED Condition & select Delete Row
- Under the Property Table, Right-Click in the right pane & select Add Row
Field Name | Value |
APPLEAPPLICATIONSUPPORTISINSTALLED | 1 |
ASUWISINSTALLED | 0 |
DESKTOP_SHORTCUTS | 0 |
- Under the Property Table, Change the following Values
Field Name | Value |
QT_TRAY_ICON | NO |
REGSRCH_DESKTOP_SHORTCUTS | 0 |
SCHEDULE_ASUW | 0 |
- Under the Registry Table, Right-Click the following entries and select Delete Row
Registry | Key | Name | Value | Component |
reg112554B54F7763D33D9A81F0E41562C1 | SOFTWARE\Microsoft\Windows\CurrentVersion\Run | QuickTime Task | "[#QTTask.exe]" -atboottime | QTTask.exe |
reg6130284E45DA09759FA4AE2824D6586B | SOFTWARE\Apple Computer, Inc.\QuickTime\ActiveX | QTTask | [INSTALLDIR]QTTask.exe | QTPlugin.ocx |
- Under the Shortcut Table, Right-Click the QuickTimePlayer_Desktop shortcut & select Delete Row
- Under the Shortcut Table, Right-Click the QuickTimeReadMe shortcut & select Delete Row
- Under the Shortcut Table, Right-Click the QuickTimeUninstaller shortcut & select Delete Row
- Go to File-> Save-> Click OK
- Close InstEd
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter the following commands:
MsiExec.exe /i AppleApplicationSupport.msi /qn |
MsiExec.exe /i |
Create an Installation Log File
The Apple QuickTime installers offer the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following command to create a verbose log file with details about the installation.
Apple QuickTime Silent Install (EXE) with Logging
MsiExec.exe /i AppleApplicationSupport.msi /qn /L*v "%WINDIR%\Temp\AppleApplicationSupport-Install.log" |
QuickTimeInstaller.exe APPLEAPPLICATIONSUPPORTISINSTALLED=1 /qn /L*v "%WINDIR%\Temp\QuickTime-Install.log" |
Apple QuickTime Silent Install (MSI) with Logging
MsiExec.exe /i AppleApplicationSupport.msi /qn /L*v "%WINDIR%\Temp\AppleApplicationSupport-Install.log" |
MsiExec.exe /i QuickTime.msi APPLEAPPLICATIONSUPPORTISINSTALLED=1 /qn /L*v "%WINDIR%\Temp\QuickTime-Install.log" |
Exclude Desktop Shortcut During Install
The QuickTime installer creates a desktop shortcut by default. If you do not want the desktop shortcut, then you can run the following command line switches to exclude it.
Apple QuickTime Silent Install (EXE) with No Desktop Shortcut
MsiExec.exe /i AppleApplicationSupport.msi /qn |
QuickTimeInstaller.exe APPLEAPPLICATIONSUPPORTISINSTALLED=1 DESKTOP_SHORTCUTS=0 /qn |
Apple QuickTime Silent Install (MSI) with No Desktop Shortcut
MsiExec.exe /i AppleApplicationSupport.msi /qn |
MsiExec.exe /i QuickTime.msi APPLEAPPLICATIONSUPPORTISINSTALLED=1 DESKTOP_SHORTCUTS=0 /qn |
Exclude QuickTime Tray Icon
Apple QuickTime Silent Install (EXE) with No Tray Icon
MsiExec.exe /i AppleApplicationSupport.msi /qn |
QuickTimeInstaller.exe APPLEAPPLICATIONSUPPORTISINSTALLED=1 QT_TRAY_ICON=NO /qn |
Apple QuickTime Silent Install (MSI) with No Tray Icon
MsiExec.exe /i AppleApplicationSupport.msi /qn |
MsiExec.exe /i QuickTime.msi APPLEAPPLICATIONSUPPORTISINSTALLED=1 QT_TRAY_ICON=NO /qn |
Disable QuickTime Auto Update
- Install QuickTime
- Launch QuickTime Player
- Navigate to Edit-> Preferences-> QuickTime Preferences-> Update Tab
- Deselect “Check for update automatically”
- Click Apply & OK
- Close QuickTime
- Navigate to “C:\Users\<userprofile>\AppData\LocalLow\Apple Computer\QuickTime\”
- Copy the QuickTime.qtp file to C:\Downloads
- Uninstall QuickTime
- Delete the QuickTime.qtp file from “C:\Users\<userprofile>\AppData\LocalLow\Apple Computer\QuickTime\”
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Navigate to the C:\Downloads folder
- Enter one of the following sets of commands:
Apple QuickTime Silent Install (EXE) with Auto Updates Disabled
MsiExec.exe /i AppleApplicationSupport.msi /qn |
QuickTimeInstaller.exe APPLEAPPLICATIONSUPPORTISINSTALLED=1 SCHEDULE_ASUW=NO ASUWISINSTALLED=0 /qn |
Apple QuickTime Silent Install (MSI) with Auto Updates Disabled
MsiExec.exe /i AppleApplicationSupport.msi /qn |
MsiExec.exe /i QuickTime.msi APPLEAPPLICATIONSUPPORTISINSTALLED=1 SCHEDULE_ASUW=NO ASUWISINSTALLED=0 /qn |
- Create the following folder (if not present):
- “C:\Users\<userprofile>\AppData\LocalLow\Apple Computer\QuickTime\”
- Copy the QuickTime.qtp file to “C:\Users\<userprofile>\AppData\LocalLow\Apple Computer\QuickTime\”
Bypass QuickTime File Types Association Check
- Install QuickTime
- Launch QuickTime Player
- Wait for file types association pop-up
- Uncheck “Do not ask to perform this check again. The QuickTime Control Panel can be used to make subsequent changes.”
- Select Yes or No based on your preference
- Close QuickTime
- Navigate to “C:\Users\<userprofile>\AppData\LocalLow\Apple Computer\QuickTime\”
- Copy the QuickTime.qtp file to C:\Downloads
- Uninstall QuickTime
- Delete the QuickTime.qtp file from “C:\Users\<userprofile>\AppData\LocalLow\Apple Computer\QuickTime\”
- Follow the “How to Install Apple QuickTime Silently” steps mentioned earlier in the article
- Create the following folder (if not present):
- “C:\Users\<userprofile>\AppData\LocalLow\Apple Computer\QuickTime\”
- Copy the QuickTime.qtp file to “C:\Users\<userprofile>\AppData\LocalLow\Apple Computer\QuickTime\”
How to Uninstall Apple QuickTime Silently
Check out the following posts for a scripted solution:
- Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
- Enter the following command:
Apple QuickTime 7.79.80.95 Silent Uninstall
MsiExec.exe /x {FF59BD75-466A-4D5A-AD23-AAD87C5FD44C} /qn |
Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.