Customized Silent Install of Quicktime and iTunes
I would like to create a customized silent install of Quicktime and iTunes. My research so far indicates that I could use ORCA to modify the various .MSIs involved, and then install them in the correct order by msiexec.exe /I /qn to meet my objective.
My question is what modifications should I make to each .MSI in order to get an install that doesn't include any shortcuts, that accepts all EULA, that disables autoupdate, and also disregards Bonjour.
Another bit of confusion. Each installer includes a AppleApplicationSupport. Which one should be used?
My question is what modifications should I make to each .MSI in order to get an install that doesn't include any shortcuts, that accepts all EULA, that disables autoupdate, and also disregards Bonjour.
Another bit of confusion. Each installer includes a AppleApplicationSupport. Which one should be used?
1 Comment
[ + ] Show comment
-
Quick Question. Is Bonjour pat of Apple Application Support? Meaning that if I install Apple application support that it will install Bonjour aswell? - appmaster 10 years ago
Answers (4)
Please log in to answer
Posted by:
WGM_Jeff
12 years ago
What I did was extract the .MSIs, and then created a .bat file that looks like this:
@echo off
AppleApplicationSupport.msi /qn
AppleMobileDeviceSupport64.msi /qn
AppleSoftwareUpdate.msi /qn
Bonjour64.msi /qn
iTunes64.msi /qn
QuickTime.msi /qn
Then I zipped up the .MSIs and the batch file and used it to create a Managed Install on the K1000.
@echo off
AppleApplicationSupport.msi /qn
AppleMobileDeviceSupport64.msi /qn
AppleSoftwareUpdate.msi /qn
Bonjour64.msi /qn
iTunes64.msi /qn
QuickTime.msi /qn
Then I zipped up the .MSIs and the batch file and used it to create a Managed Install on the K1000.
Comments:
-
Thank you Jeff, that was just what I was looking for! - Mlib 12 years ago
Posted by:
samuelcolt
12 years ago
I currently deploy quictime+itunes in the following order with the commands. I believe the current version of apple application support is 2.1.7 and that seems to work with all the applications. Please make sure to mention no reboot
otherwise these installations will force reboot the computer. Please check out the link at the bottom since they have instructions how to disable desktop icons.
msiexec.exe ALLUSERS=true reboot=suppress /qn /i "appleapplicationsupport64.msi"
msiexec.exe /qn /norestart /i "applemobiledevicesupport64.msi"
msiexec.exe /qn /norestart /i "bonjour64.msi"
msiexec.exe /qn /norestart /i "quicktime.msi"
msiexec.exe /qn /norestart /i "itunes64.msi"
http://www.beyondpictures.com/blog/tech/2009/03/deploy-itunes-with-group-policy.html
otherwise these installations will force reboot the computer. Please check out the link at the bottom since they have instructions how to disable desktop icons.
msiexec.exe ALLUSERS=true reboot=suppress /qn /i "appleapplicationsupport64.msi"
msiexec.exe /qn /norestart /i "applemobiledevicesupport64.msi"
msiexec.exe /qn /norestart /i "bonjour64.msi"
msiexec.exe /qn /norestart /i "quicktime.msi"
msiexec.exe /qn /norestart /i "itunes64.msi"
http://www.beyondpictures.com/blog/tech/2009/03/deploy-itunes-with-group-policy.html
Comments:
-
Skip AppleSoftwareUpdate.msi if you dont want auto updates. In my k1000 i use the following onlinekscript to remove apple software updates that are installed on any machines in the network
msiexec.exe /uninstall "$(KACE_DEPENDENCY_DIR)\AppleSoftwareUpdate.msi" /qn /norestart - samuelcolt 12 years ago
Posted by:
piyushnasa
12 years ago
First this I would like to mention here is that it is not recommended to edit the MSI directly. you should create a Transform file which is a response file for MSI. Then you can make changes in this MST file.
If you just want to change some public properties, then you can do so directly by adding them and their value at command line
If you just want to change some public properties, then you can do so directly by adding them and their value at command line
Posted by:
piyushnasa
12 years ago
Follow below link to package latest version of itunes for Windows 7
http://msiworld.blogspot.com.au/2012/06/re-packaging-apple-itunes-10617-and.html