QuickTime is notoriously difficult to distribute as a software package.
The following process has been tested and confirmed as working with QuickTime 7.7.5 and SCCM R3.
The installation will:
QuickTimeInstaller.exe /extract
@echo off msiexec /i "%~dp0QuickTime.msi" /quiet /norestart INSTALL_DESKTOP_SHORTCUT="FALSE" msiexec /i "%~dp0AppleApplicationSupport.msi" /quiet /norestart allusers=1 REM Remove desktop shortcut - Windows XP if exist "%ALLUSERSPROFILE%\Desktop\QuickTime Player.lnk" del "%ALLUSERSPROFILE%\Desktop\QuickTime Player.lnk" REM Remove desktop shortcut - Windows 7 if exist "C:\Users\Public\Desktop\QuickTime Player.lnk" del "C:\Users\Public\Desktop\QuickTime Player.lnk" REM Removes Auto Launch from registry reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "QuickTime Task" /f REM Return exit code to SCCM exit /B %EXIT_CODE%