REM ################################################################
REM Installs: Apple Quicktime
REM Arkitektur: x86
REM Download link: http://www.apple.com/quicktime/download/
REM Info:
REM Contact information:
REM Documentation:
REM Created:
REM Modifyed:
REM Info:
REM Program reboots during install: No
REM Windows needs to be rebooted by SCCM after install: No
REM User interaction at install: No
REM Application dependencies: No
REM Produktkod:
REM Uninstall command:
REM ################################################################

@echo off

setlocal

REM Kör setup för Quicktime
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 x86
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "QuickTime Task" /f

REM Removes Auto Launch from registry x64
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run" /v "QuickTime Task" /f

endlocal

REM Return exit code to SCCM
exit /B %EXIT_CODE%

  • No labels