Want to highlight a helpful answer? Upvote!

Did someone help you, or did an answer or User Tip resolve your issue? Upvote by selecting the upvote arrow. Your feedback helps others! Learn more about when to upvote >

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Silent install of iTunes 10 for Windows

I am trying to deploy iTunes 10 to about 100 windows machines. Is there a command I can use to make the install silent. I have seen past references to /q /n and /quiet /passive but those do not seem to work. I have also seen references at appdeploy.com about extracting the msi and using MDT2010 but that is getting over my head. I am not picky about what gets installed, I'll take all the default settings to make life easier.

Please help
Roy

Mac Mini, Mac OS X (10.5.2)

Posted on Jan 21, 2011 1:44 PM

Reply
Question marked as Best reply

Posted on Feb 11, 2011 2:00 PM

Roy,

I found this at Appdeploy: http://www.appdeploy.com/packages/detail.asp?id=1928

I found a way to install iTunes 10.1.2 through KACE.
Download iTunesSetup.exe
Extract MSI using 7zip or winRAR.
Within it contains 6 MSI:
AppleApplicationSupport.msi
AppleMobileDeviceSupport.msi
AppleSoftwareUpdate.msi
Bonjour.msi
iTunes.msi
QuickTime.msi

Extract them to a folder.
Create bat file that include below and name it as install.bat.

@echo off
AppleApplicationSupport.msi /qn
AppleMobileDeviceSupport.msi /qn
AppleSoftwareUpdate.msi /qn
Bonjour.msi /qn
iTunes.msi /qn
QuickTime.msi /qn

Zip all 6 MSI and the bat file and upload it to KACE under distribution and manually configure command line as iTunes.bat or install.bat whichever you named the bat file.

Not sure if you are using KACE or not but it works within Windows.
2 replies
Question marked as Best reply

Feb 11, 2011 2:00 PM in response to roysbrew

Roy,

I found this at Appdeploy: http://www.appdeploy.com/packages/detail.asp?id=1928

I found a way to install iTunes 10.1.2 through KACE.
Download iTunesSetup.exe
Extract MSI using 7zip or winRAR.
Within it contains 6 MSI:
AppleApplicationSupport.msi
AppleMobileDeviceSupport.msi
AppleSoftwareUpdate.msi
Bonjour.msi
iTunes.msi
QuickTime.msi

Extract them to a folder.
Create bat file that include below and name it as install.bat.

@echo off
AppleApplicationSupport.msi /qn
AppleMobileDeviceSupport.msi /qn
AppleSoftwareUpdate.msi /qn
Bonjour.msi /qn
iTunes.msi /qn
QuickTime.msi /qn

Zip all 6 MSI and the bat file and upload it to KACE under distribution and manually configure command line as iTunes.bat or install.bat whichever you named the bat file.

Not sure if you are using KACE or not but it works within Windows.

Sep 28, 2011 7:55 AM in response to roysbrew

OK pour Windows 7 (désinstalle et met à jour QuickTime si version antérieure).


Download iTunesSetup.exe

Extract MSI using 7zip or winRAR c:\temp


'Installation de QuickTime 7.7 (suppression raccourci et updater)


RunProg("%SystemRoot%\system32\MSIEXEC.exe /i C:\TEMP\iTunes_10_4_Quicktime_7_7\DISTRIB\QuickTime.msi ASUWISINSTALLED=0 SCHEDULE_ASUW=0 REGSRCH_INSTALL_ASU=0 /qn)

RunProg("%SystemRoot%\system32\MSIEXEC.exe /i C:\TEMP\iTunes_10_4_Quicktime_7_7\DISTRIB\AppleApplicationSupport.msi /qn)


oshell.run("CMD /C del ""C:\users\Public\Desktop\QuickTime Player.lnk""")

oshell.run("CMD /C del ""C:\Users\All Users\Microsoft\Windows\Start Menu\Programs\Apple Software Update.lnk""")


'Preferences de Quicktime 7.7


'Suppression du démarrage automatique

oshell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\QuickTime Task"


'Suppression du raccourci de la zone de notification sans Reboot

oshell.Run "%COMSPEC% /C TASKKILL /F /IM qttask.exe", 0, False

oshell.RegWrite "HKLM\SOFTWARE\Apple Computer, Inc.\QuickTime\ActiveX\QTTaskRunFlags", 2, "REG_DWORD"


'Installation d'iTunes 10.4.0


RunProg("%SystemRoot%\system32\MSIEXEC.exe /i C:\TEMP\iTunes_10_4_Quicktime_7_7\DISTRIB\bonjour.msi /qn)

RunProg("%SystemRoot%\system32\MSIEXEC.exe /i C:\TEMP\iTunes_10_4_Quicktime_7_7\DISTRIB\AppleMobileDeviceSupport.msi /qn)

RunProg("%SystemRoot%\system32\MSIEXEC.exe /i C:\TEMP\iTunes_10_4_Quicktime_7_7\DISTRIB\itunes.msi /passive)

Silent install of iTunes 10 for Windows

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.