The following steps show how to create a silent install package for iTunes, for distribution with a software distribution tool like SCCM.
The installer will install either the 32-bit or 62-bit version as required.
Having troubles? Check out the example package itunesSilentInstall.zip
Note: you will need to have 7-zip (or similar) installed to extract MSI installers from the EXE files.
@echo off REM ravinderjaiswal.com cls echo -------------------------------------------------------- echo . echo . Installing iTunes - please wait echo . This window will close once installed REM Install software updater -- OPTIONAL - remove command if not required start /wait msiexec /i "%~dp0AppleSoftwareUpdate.msi" /qn /norestart REM Silent install for 64-bit if defined ProgramFiles(x86) start /wait msiexec /i "%~dp0AppleApplicationSupport64.msi" /qn /norestart if defined ProgramFiles(x86) start /wait msiexec /i "%~dp0AppleMobileDeviceSupport6464.msi" /qn /norestart if defined ProgramFiles(x86) start /wait msiexec /i "%~dp0iTunes64.msi" /qn /norestart if defined ProgramFiles(x86) exit REM Silent install for 32-bit start /wait msiexec /i "%~dp0AppleApplicationSupport.msi" /qn /norestart start /wait msiexec /i "%~dp0AppleApplicationSupport.msi" /qn /norestart start /wait msiexec /i "%~dp0iTunes.msi" /qn /norestart
4. You can now create your SCCM package or deploy the software by using install.cmd.