/build/static/layout/Breadcrumb_cap_w.png

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 33.5k  |  Created: 09/03/2010

Average Rating: 0
iTunes has 36 inventory records, 33 Questions, 1 Blogs and 3 links. Please help add to this by sharing more!

Deployment Tips (23)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 3 / 5 (Average) based on 4 ratings
Most Commonly Reported Deployment Method
Windows Installer with Custom Transform (MST)

Deployment Tip Summary

iTunessetup.exe /quiet /passive /norestart
14
Note
This deployment is based on LanDesk where users have user access, on an XP enviroment.

First unpack the files from the .exe installer. I used 7zip.
I had problems getting the quicktime.msi included in the installer, to work alone. It seems to be called from iTunes.msi. So I downloaded the standalone version of quicktime and used that quicktime.msi. A bad Apple ideed! I made two .cmd scripts to help the install. After installation, users should be able to upgrade iOS on their chosen iGadet.

So my filelist:
preinstall.cmd (removes automaticly check for ios update)
AppleMobileDevicesupport.msi
AppleApplicationSupport.msi
Quicktime.msi
iTunes.msi
Postinstall.cmd (Run with user account)
AdminFlag.reg
iTunes.reg
Complete.reg

This is how it looks: Preinstall.cmd
SET SOURCE=\\server\software$\Apple\iTunes\10.0
Regedit /S "%SOURCE%\AdminFlag.reg"
----------------------------------------------------------------
AdminFlag.reg:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default]
"AdminFlags"=dword:00300009
-----------------------------------------------------------------
(More options here: http://support.apple.com/kb/ht2102)

AppleMobileDevicesupport.msi and AppleApplicationSupport.msi installs without problems.

Quicktime.msi needs these changes:
DESKTOP_SHORTCUTS=0 QT_TRAY_ICON=2 ASUWISINSTALLED=0 SCHEDULE_ASUW=0
I am not sure that SCHEDULE_ASUW=0 functions like it used to. The checkbox is still marked under Help>Update Existing software. So I copied the file QuickTime.qtp in the postinstall.cmd (Below). Quicktime will run an installer upon first run, but it will run with basic user rights.

iTunes.msi needs these changes:
Add these entries:
DESKTOP_SHORTCUTS=0
QUICKTIME_IS_INSTALLED=1
AMDS_IS_INSTALLED=1
APPLEAPPLICATIONSUPPORT_IS_INSTALLED=1
Possibly BONJOUR_IS_INSTALLED=1 needs to be included (I get a message upon first start of itunes, that it is missing.)

Modify these entries:
PRODUCT_LANGUAGE=1044 (My language code)
SCHEDULE_ASUW=0
REGSRCH_DESKTOP_SHORTCUT=0

To predefine user settings, first install iTunes on computer. Then start iTunes and modify settings to your needs and extract the two files with identical names: iTunesPrefs.xml. Place them in relevant folders on your install path. See postinstall.cmd for details. (you need to translate the norwegian filepath)

If this is an iTunes upgrade, the script will take care of former user settings and not overwrite them. It must be run with current user access.

Postinstall.cmd looks like this:
SET SOURCE=\\server\software$\Apple\iTunes\10.0
if not exist "%APPDATA%\Apple Computer\iTunes" mkdir "%APPDATA%\Apple Computer\iTunes"
if not exist "%USERPROFILE%\Lokale innstillinger\Programdata\Apple Computer\iTunes" mkdir "%USERPROFILE%\Lokale innstillinger\Programdata\Apple Computer\iTunes"

if not exist "%APPDATA%\Apple computer\iTunes\iTunesPrefs.xml"
copy "%SOURCE%\Appdata\iTunesPrefs.xml" "%APPDATA%\Apple Computer\iTunes"

if not exist "%USERPROFILE%\Lokale innstillinger\Programdata\Apple Computer\iTunes\iTunesPrefs.xml"
copy "%SOURCE%\Userprofile\iTunesPrefs.xml" "%USERPROFILE%\Lokale innstillinger\Programdata\Apple Computer\iTunes"

Regedit /S "%SOURCE%\itunes.reg"
Regedit /S "%SOURCE%\complete.reg"

set source=\\server\software$\Apple\QuickTime\7.68.75
copy "%source%\QuickTime.qtp" "%userprofile%\Lokale innstillinger\Programdata\Apple Computer\QuickTime" /Y
----------------End of data---------------------------------


complete.reg will remove annoying first time screen.
iTunes.reg will modify some parental controls.
(see below for details)

complete.reg
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\AppEvents\EventLabels\iTunes_Complete]
@="Complete"
"DispFileName"="@C:\\Programfiler\\iTunes\\iTunes.Resources\\iTunesRegistry.dll,-300"
------------------------------------------------------------
iTunes.reg:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Apple Computer, Inc.\iTunes]
"SM Shortcut Installed"=dword:00000001

[HKEY_CURRENT_USER\Software\Apple Computer, Inc.\iTunes\Parental Controls]
"UserFlags"=dword:00000000
"UserMoviesLimit"=dword:0000012c
"UserTVShowsLimit"=dword:000001f4
"UserRatingSystemID"=dword:00000001
"UserGamesLimit"=dword:0000012c

------------------------------------------------------------
Yes I should have merged the two reg files. ;-)
I Couldn't find a way to get rid of the Eula :-(
This posting will be edited.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
13
Note
I found a way to install iTune 10x 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.

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 iTune.bat or install.bat whichever you named the bat file.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
7
Command Line
1. Download iTunesSetup.exe from apple.com

2. Extract AppleApplicationSupport.msi and QuickTime.msi using 7zip

3. Using MDT2010:
iTunessetup.exe /quiet /passive /norestart

Dependencies: QuickTime and AppleApplicationSupport (extracted in step 1) and installed as follows:

msiexec /i AppleApplicationSupport.msi /quiet /norestart

msiexec QuickTime.msi /quiet /passive
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
7
Note
For windows 7, there are a few changes that have to be done to make this work. The Postinstall.cmd has to be changed a bit, and also has to be called up at anytime BEFORE installation of the itunes(64).msi, reason for this is that itunes.msi/itunes64.msi will make the itunesprefs.xml file during the installation process if there are no files there already.

Also the %USERDATA% variable has been changed in win7 to %LOCALAPPDATA%.

For windows 7, this seems to also get ridd of the EULA popup at start.

Instead of Postinstall.cmd i called it preinstall2.cmd, and
put mostly the same inside it as Arvidb's postinstall:

SET SOURCE=\\server\software$\apple\Itunes\10.0
if not exist "%APPDATA%\Apple Computer\iTunes" mkdir "%APPDATA%\Apple Computer\iTunes"
if not exist "%LOCALAPPDATA%\Apple Computer\iTunes" mkdir "%LOCALAPPDATA%\Apple Computer\iTunes"
if not exist "%APPDATA%\Apple Computer\iTunes\iTunesPrefs.xml" copy "%SOURCE%\Appdata\iTunesPrefs.xml" "%APPDATA%\Apple Computer\iTunes"
if not exist "%LOCALAPPDATA%\Apple Computer\iTunes\iTunesPrefs.xml" copy "%SOURCE%\Userprofile\iTunesPrefs.xml" "%LOCALAPPDATA%\Apple Computer\iTunes"
Regedit /S "%SOURCE%\itunes.reg"
Regedit /S "%SOURCE%\complete.reg"

You will ofcourse have to make new itunesprefs.xml files for win7 installations, but you can also copy in previous xml files (from windows 7 installations) if you are upgrading.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
6
Note
New features are added to parental flags options:
(http://support.apple.com/kb/ht2102)
Use in the AdminFlags registry entry above.

kParentalFlags_DisableHomeSharing 0x00100000
kParentalFlags_DisableCheckForAppUpdates 0x00200000 kParentalFlags_DisableCheckForDeviceUpdates 0x00400000

Added in iTunes 10
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
6
Note
If you are using the "duplicate files method" to get the XML files to copy into the users appdata folders then you MAY need to add a DuplicateFiles and RemoveDuplicateFiles entry in the InstallExecuteSequence if they dont exisst. Make sure you give them the correct sequence number if you need to add them.

Read about RemoveDuplicateFiles here: http://msdn.microsoft.com/en-us/library/aa371195%28VS.85%29.aspx

DuplicateFiles here:
http://msdn.microsoft.com/en-us/library/aa368334%28VS.85%29.aspx
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
5
Note
;Here's an Autoit install script to upgrade from iTunes 9 to 10 in Windows 7. This can be run on a logged out computer remotely. It's not that different from the iTunes 8 script I had for XP. Since it's an upgrade, I didn't have to deal with some of the usual problems like disabling autoupdate, doing the first run (itunesprefs.xml), and putting some registry items under HKCU to avoid msi repair.

; you can run explorer in Session 0 to see this
opt("TrayIconDebug", 1)

; the itunes.exe you end up with is not really 64-bit
run("itunes64setup.exe")

; in case you run it a 2nd time
if winwait("iTunes + QuickTime", "Change or remove iTunes", 15) then
controlclick("iTunes + QuickTime", "Change or remove iTunes", "Cancel")
winwait("iTunes + QuickTime", "Are you sure")
controlclick("iTunes + QuickTime", "Are you sure", "&Yes")
winwait("iTunes + QuickTime", "iTunes Installer Interrupted.")
controlclick("iTunes + QuickTime", "iTunes Installer Interrupted.", _
"&Finish")
exit(2)
endif

winwait("iTunes + QuickTime", "Welcome to the iTunes Installer")
controlclick("iTunes + QuickTime", "Welcome to the iTunes Installer", _
"&Next >")

winwait("iTunes + QuickTime", "License Agreement")
controlclick("iTunes + QuickTime", "License Agreement", _
"I &accept the terms in the license agreement")
controlclick("iTunes + QuickTime", "License Agreement", "&Next >")

winwait("iTunes + QuickTime", "Installation Options")
controlcommand("iTunes + QuickTime", "Installation Options", _
"Add iTunes and QuickTime shortcuts to my desktop", "Uncheck")
controlcommand("iTunes + QuickTime", "Installation Options", _
"Use iTunes as the default player for audio files", "Uncheck")

; didn't need to
;controlcommand("iTunes + QuickTime", "Installation Options", _
; "Automatically update iTunes and other Apple software", "Uncheck")

controlclick("iTunes + QuickTime", "Installation Options", "&Install")

winwait("iTunes + QuickTime", "Congratulations.")
controlcommand("iTunes + QuickTime", "Congratulations.", _
"Open iTunes after the installer exits.", "Uncheck")
controlclick("iTunes + QuickTime", "Congratulations.", "&Finish")

; didn't need to
;winwait("iTunes + QuickTime", "You must restart")
;controlclick("iTunes + QuickTime", "You must restart", "&No")

; custom shortcut folder
DirRemove("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Multimedia\Media Players\iTunes", 1)
DirMove("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Itunes", _
"C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Multimedia\Media Players", 1)

; didn't need to
;FileDelete("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Apple Software Update.lnk")

; custom shortcut folder
DirRemove("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Multimedia\Media Players\Quicktime", 1)
DirMove("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Quicktime", _
"C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Multimedia\Media Players", 1)

; hide shortcut
FileSetAttrib("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Multimedia\Media Players\Quicktime\Uninstall Quicktime.lnk", "+H")
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
4
Note
Recently a client requested an iTunes 10 package which had the following requirements:
No Desktop ShortCut
Parental Ratings Set to Australia
Nothing Blocked in the Preferences
No AutoUpdates or Check for Updates
(Here's the kicker)
A per user library not resident in the %userprofile%\Music location, but in a static local disk location.
This is the method I spent some time putting together:

1.Started the iTunes64.exe install

2.Browsed to %username%\temp and extracted the following MSI’s from a temporary folder created within
AppleApplicationSupport.msi
AppleMobileDeviceSupport64.msi
Bonjour64.msi
iTunes64.msi
QuickTime.msi (renamed this to iTunesQuickTime.msi)
(No requirement for the AppleUpdater.msi so deleted)

3.Cancelled the iTunes64.exe installation

4.Edited the iTunes64.msi using AdminStudio and changed:
Under Shortcuts –
Deleted the Desktop shortcut

Under Shortcuts –
Added a manual Shortcut to
C:\Program Files(x86)\iTunes\iTunes.exe

Under Custom Actions –
Deleted the AddDesktopShortcuts CA

Under Custom Actions –
Deleted the Set_Desktop_Shortcuts CA

Under Property Manager –
Changed RegSrch_DesktopShortcuts to value 0

Under Property Manager –
Changed Accept License to Yes

Under Property Manager –
Changed Schedule_ASUW value to 0

5.Using AdminStudio Tuner, created transforms for iTune64.msi and iTunesQuickTime.msi

6.Created a Batch file to sequentially install silently the msi’s in the above order, under an Admin user context

7.Once installed, opened iTunes and browsed to Edit-Preferences

8.Changed the following:

General Tab –
Unchecked “Check for new software updates automatically”

Parental Tab –
Unchecked all Disabled options, Changed Ratings to Australia

9.Closed iTunes and opened the Registry and exported the following keys to a registry file which corresponds to the Preference options

[HKEY_CURRENT_USER\Software\Apple Computer, Inc.\iTunes\Parental Controls]
"UserFlags"=dword:00000001
"UserMoviesLimit"=dword:000000c8
"UserTVShowsLimit"=dword:0000012c
"UserRatingSystemID"=dword:00000005
"UserGamesLimit"=dword:0000012c

10.Injected this Registry file into iTunes64.msi and saved.

11.Browsed to the following locations and backed up:

%appdata%\Apple Computer\iTunes\iTunesPrefs.xml
%localappdata%\Apple Computer\iTunes\iTunesPrefs.xml

12.Created a VB script to manage the following when run under the user context (Active Setup) on first login:

Sets %LocalAppData% to use as a variable
Sets %appdata% to use as a variable
Sets %username% to use as a variable

Checks for C:\Music and when found creates the folder path C:\Music\%username%\iTunes\iTunesMedia

Checks for
%localappdata%\Apple Computer\iTunes\iTunesPrefs.xml

Checks for
%appdata%\Apple Computer\iTunes\iTunesPrefs.xml

If not found the script copies as follows:

C:\Program Files (x86)\*ClientName*\iTunesControl\Preference1\iTunesPrefs.xml to %localappdata%\Apple Computer\iTunes\iTunesPrefs.xml

C:\Program Files (x86)\*ClientName*\iTunesControl\Preference2\iTunesPrefs.xml to %appdata%\Apple Computer\iTunes\iTunesPrefs.xml

[These files are different (but named the same!) and are required to preconfigure Edit-Preference values and also to suppress the EULA.]

Finally the script copies:
C:\Program Files (x86)\*ClientName*\iTunesControl\iTunes Library.itl to
C:\Music\%username%\iTunes\iTunesMedia\iTunes Library.itl

13.A blank MSI was created using InstallShield in order to separate the vanilla extracted MSI’s (and minor changed iTunes64.msi) from the mechanics of the package, in order to maintain a simple upgrade path for the client.

14.The Blank MSI was called iTunesControl.msi and configured with the following:

MSI creates
C:\Program Files (x86)\*ClientName*\iTunesControl
MSI creates
C:\Program Files(x86)\*ClientName*\iTunesControl\Preference1

MSI creates
C:\Program Files(x86)\*ClientName*\iTunesControl\Preference2

Injected %appdata% iTunesPrefs.xml to Preference2 folder

Injected %localappdata% iTunesPrefs.xml to Preference1 folder

Injected Vanilla iTunes Library.itl file to iTunesContol folder

Injected iTunes.vbs file to iTunesContol folder

Added Active Setup registry keys to point new users first login at the iTunes.vbs
“C:\Program Files (x86)\iTunes\iTunesControl\iTunes.vbs”

ActiveSetup Reg keys:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{iTunesPreferences}]
"ComponentID"="iTunesPreferences"
"StubPath"="\"C:\\Program Files (x86)\\*ClientName*\\iTunesControl\\iTunes.vbs\""
"Version"="1"

[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Active Setup\Installed Components\{iTunesPreferences}]
"ComponentID"="iTunesPreferences"
"StubPath"="\"C:\\Program Files (x86)\\*ClientName*\\iTunesControl\\iTunes.vbs\""
"Version"="1"

Added 4 Custom Actions running VB scripts:

CA VBS to Create C:\Music
CA VBS to CACLS C:\Music\*
CA VBS to CACLS C:\Program Files (x86)\Grant Thornton\*
CA VBS to CACLS C:\Program Files (x86)\iTunes\*

Added AfterInstallFinalise in the sequence above

15.Created an iTunesInstall.bat to sequentially install the MSIs:

msiexec.exe /I AppleApplicationSupport.msi /qb > C:\Windows\SOE\SOEAPPLOG\AppleApplicationSupport_Install.log
msiexec.exe /I AppleMobileDeviceSupport64.msi /qb > C:\Windows\SOE\SOEAPPLOG\AppleMobileDeviceSupport64_Install.log
msiexec.exe /I Bonjour64.msi /qb > C:\Windows\SOE\SOEAPPLOG\Bonjour64_Install.log
msiexec.exe /I iTunes64.msi transforms=iTunes64.mst /qb > C:\Windows\SOE\SOEAPPLOG\iTunes64_Install.log
msiexec.exe /I iTunesQuickTime.msi transforms=iTunesQuickTime.mst /qb > C:\Windows\SOE\SOEAPPLOG\iTunesQuickTime_Install.log
msiexec.exe /I iTunesControl.msi /qb > C:\Windows\SOE\SOEAPPLOG\iTunesControl_Install.log

16.Created the relative iTunesUninstall.bat to sequentially uninstall the MSIs:

msiexec.exe /X {B3575D00-27EF-49C2-B9E0-14B3D954E992} /qb REBOOT=ReallySuppress > C:\Windows\SOE\SOEAPPLOG\AppleApplicationSupport_Uninstall.log
msiexec.exe /X {439760BC-7737-4386-9B1D-A90A3E8A22EA} /qb REBOOT=ReallySuppress > C:\Windows\SOE\SOEAPPLOG\AppleMobileDeviceSupport64_Uninstall.log
msiexec.exe /X {CA0D2F09-F811-48D4-843E-C87696C6A9D9} /qb REBOOT=ReallySuppress > C:\Windows\SOE\SOEAPPLOG\Bonjour64_Uninstall.log
msiexec.exe /X {B613A9BB-2B34-4824-A4BE-2427653D59D6} /qb REBOOT=ReallySuppress > C:\Windows\SOE\SOEAPPLOG\iTunes64_Uninstall.log
msiexec.exe /X {57752979-A1C9-4C02-856B-FBB27AC4E02C} /qb REBOOT=ReallySuppress > C:\Windows\SOE\SOEAPPLOG\iTunesQuickTime_Uninstall.log
msiexec.exe /X {8C0FD894-D6E5-4EB3-8A8F-232E06A5E392} /qb REBOOT=ReallySuppress > C:\Windows\SOE\SOEAPPLOG\iTunesControl_Uninstall.log

All done, the batch file installs the main set of 5 msi's extracted from the original iTunes64_setup.exe then installs the iTunesControl.msi

This creates the folder structures and permissions for the package and delivers the files required for the active setup and user preferences.

On first login, the Active Setup checks force a new user to run the iTunes.VBS from C:\Program Files (x86)\iTunes\iTunesControl\iTunes.vbs which has been prepermissioned with Change rights for Everyone, so the script will run. The script creates folders under C:\Music, C:\Music\%username%\iTunes\iTunesMedia\ (again prepermissioned to allow a standard user to execute).

The correct iTunesPrefs.xmls's are copied to the correct user locations (%appdata% and %localappdata%) which suppress EULA and add preferences details.

When the user *first runs iTunes, have them hold down shift until the "Choose Library" screen appears then have them browse to C:\Music\%username%\iTunes\iTunesMedia\iTunes Library.itl, in order to finalise the local, non-profile connected library.

************************************************************

This package was designed with the knowledge that the software can require frequent updates.

In order to create a new package without much work, the steps to follow are:
•Download the updated iTunes64.exe from Apple
•Extract the MSI’s as above
•Right Click and Edit the iTunes64.msi as above in steps 4,5 and 10
•Under the Installation Information\General Information node in the new MSI, take note of the Product Code
•Create a new MST for the new iTunes64.msi
•Edit the current package Uninstall.bat file and change the iTunes64.msi GUID to the Product Code of the new iTunes64.msi.
•Create a new package based on the previous 4 original msi’s
AppleApplicationSupport.msi
AppleMobileDeviceSupport64.msi
Bonjour64.msi
QuickTime.msi (renamed this to iTunesQuickTime.msi)

Add the new iTunes64.msi and transform, the QuickTime transform and the iTunesControl.msi and the nstall/uninstall batch files to complete your package source files.
•Package all into ypur deployment weapon of choice.

iTunes.vbs

'Declare Variables******************************************

Dim objFso, strPref1, strPref2, strPrefEnv1, strPrefEnv2, strProfile, strMediaLocation, strControlHome

'Set ScriptShell********************************************

Set objShell = WScript.createObject("wscript.shell")
Set objFso = CreateObject("Scripting.FileSystemObject")

'Set String Variable Values********************************

strControlHome="C:\Program Files (x86)\*ClientName*\iTunesControl"

strPref1="C:\Program Files (x86)\*ClientName*\iTunesControl\Preference1"

strPref2="C:\Program Files (x86)\*ClientName*\iTunesControl\Preference2"

strMediaLocation="C:\Music\%username%\iTunes\iTunesMedia"

'Set String Environment Variables***************************

strPrefEnv1=objshell.ExpandEnvironmentStrings("%localappdata%")

strPrefEnv2=objshell.ExpandEnvironmentStrings("%appdata%")

strProfile=objshell.ExpandEnvironmentStrings("%username%")

'Checks for Environment locations (%localappdata% and %appdata%) \Apple Computer\iTunes and creates if not found******************

If Not(objFSO.FolderExists(strPrefEnv1&"\"&"Apple Computer")) Then
objFSO.CreateFolder(strPrefEnv1&"\"&"Apple Computer")
objFSO.CreateFolder(strPrefEnv1&"\"&"Apple Computer\iTunes")
End If

If Not(objFSO.FolderExists(strPrefEnv2&"\"&"Apple Computer")) Then
objFSO.CreateFolder(strPrefEnv2&"\"&"Apple Computer")
objFSO.CreateFolder(strPrefEnv2&"\"&"Apple Computer\iTunes")
End If

'Checks for the iTunesPref.xml file in %localappdata% path and copies if not found**

If Not(ObjFso.FileExists(strPrefEnv1&"\"&"Apple Computer\iTunes\iTunesPrefs.xml")) Then

objFso.CopyFile strPref1&"\"&"iTunesPrefs.xml", strPrefEnv1&"\"&"Apple Computer\iTunes\iTunesPrefs.xml"
End If

'Checks for the iTunesPref.xml file in %appdata% path and copies if not found**

If Not(ObjFso.FileExists(strPrefEnv2&"\"&"Apple Computer\iTunes\iTunesPrefs.xml")) Then

objFso.CopyFile strPref2&"\"&"iTunesPrefs.xml", strPrefEnv2&"\"&"Apple Computer\iTunes\iTunesPrefs.xml"
End If

'Creates C:\Music\%username%\iTunes\iTunesMedia folder

If Not(objFSO.FolderExists ("C:\Music")) Then
objFSO.CreateFolder("C:\Music")
End If

If Not(objFSO.FolderExists ("C:\Music\"&strProfile)) Then
objFSO.CreateFolder("C:\Music\"&strProfile)
End If

If Not(objFSO.FolderExists ("C:\Music\"&strProfile&"\iTunes")) Then
objFSO.CreateFolder("C:\Music\"&strProfile&"\iTunes")
End If

If Not(objFSO.FolderExists ("C:\Music\"&strProfile&"\iTunes\iTunesMedia")) Then
objFSO.CreateFolder("C:\Music\"&strProfile&"\iTunes\iTunesMedia")
End If

'Checks for C:\Music\%username%\iTunes\iTunesMedia\iTunes Library.itl and copies if not there

If Not(ObjFso.FileExists("C:\Music\"&strProfile&"\iTunes\iTunesMedia\iTunes Library.itl")) Then

objFso.CopyFile strControlHome&"\"&"iTunes Library.itl", "C:\Music\"&strProfile&"\iTunes\iTunesMedia\iTunes Library.itl"
End If

************************************************************
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
3
Note
This is how I created an iTunes 10.2.2.14 Installation with autoupdate disabled for the Enterprise.

1.Extracted the following MSI packages from iTunesSetup.exe (32 bit).
The MSI packages are extracted to %temp% when iTunesSetup.exe is executed.

2.Copy the following MSI files to your Package folder.
AppleApplicationSupport.msi
AppleMobileDeviceSupport.msi
Bonjour.msi
QuickTime.msi
iTunes.msi

3.Created a Transformfile for iTunes.msi.
To disable autoupdate add the following registry key:
[HKEY_LOCAL_MACHINE\SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default]
"AdminFlags"=dword:01000101
The above key is the result of the following settings and will apply for all users:
kParentalFlags_Locked 0x00000001
kParentalFlags_DisableCheckForUpdates 0x00000100
kParentalFlags_DisableFirstRunWelcomeWindow 0x01000000

You can enable several default behaviours using the AdminFlags bits as "Avidb's" post referes to: http://support.apple.com/kb/ht2102

4.Run the packages in the same order as described in step 2, and use you're newly created transform file together with the iTunes.msi and your home free. To install packages silent, use the Msiexec switch "/Passive" . Also remember to modify the Quicktime installer aswell as it also contains autoupdate functionality.

5. Hint: To disable EULA on startup, you have to modify %AppData%\Apple Computer\iTunes\iTunesPrefs.xml. I coulden't Disable the EULA without breaking the Sound device configuration, I would not be surprised if this is the intended behaviour.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
3
Note
If you wanted to deploy iTunes without various scripts about here's a few itunes iDeas...

Install iTunes on a CLEAN machine, launch and accept the EULA. Manage your parental controls in Preferences.

iTunes installs a preferences file into the user profile in two locations:
%AppData%\Apple Computer\iTunes
%LocalAppData%\Apple Computer\iTunes
You will need these later.

Read the Apple KBase article on "Windows OS Managed Client: How to manage iTunes control features" (http://support.apple.com/kb/ht2102)

Extract all the MSIs as everyone has explained above, you'll be best to deploy them all before iTunes for various reasons. Don't be a tool and edit the MSI directly, use ORCA at least or your development studio of choice.

Hopefully now (and the parental controls mentioned earlier) means you'll end up with a Registry table in your MST looking something _similar_ to:
SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default AdminFlags #18874625 iTunes.exe
SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default AdminGamesLimit #300 iTunes.exe
SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default AdminRatingSystemID #5 iTunes.exe
SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default AdminTVShowsLimit #300 iTunes.exe
SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default AdminMoviesLimit #200 iTunes.exe

Note that AdminFlags is a bitwise VALUE not a key as some people may think.

Property Table:
DESKTOP_SHORTCUTS=No (just FYI, non-essential)
DONTCACHEMSI=1
LaunchiTunesHelper=0
NO_BONJOUR=1 (this is a non-essential, as iTunes still wants Bonjour there after installation)
Thanks to the other posters for these:
REGSRCH_DESKTOP_SHORTCUTS=0
SCHEDULE_ASUW=0
IAcceptLicense=Yes

caPackage Table:
Make a condition of 1=2 for all items

Now, the only tricky part is making sure you get the preferences files installed correctly. The directory references for "Apple Computer\iTunes" you need are:

AppDataFolder
LocalAppDataFolder

Once you've added them to this location in your MST then all you need to do is ensure that the component table attributes colum matches 144, that is, you're not going to overwrite them if they exist. (explaination: Existing iTunes users want to keep their preferences)

MSIFileHash table:
Clear any data for the preferences files mentioned.

And this works with iTunes 64 as well as 32 bit. Thanks to the other posters for their ideas. I hope this helps someone looking for a pure MSI deployment.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
2
Command Line
This worked for me for iTunes 10.4.1

Extract the itunessetup.exe executable to a folder.

Copy the itunessetup.exe to that same folder.

Create a batch file in that same folder with the following:
msiexec /I AppleApplicationSupport.msi /quiet /norestart
msiexec /I QuickTime.msi /quiet /passive
msiexec /I bonjour.msi /quiet /passive
iTunessetup.exe /quiet /passive /norestart

If you don't add bonjour's silent install, iTunes will complain that it is not installed when opening the program, but appears to work otherwise.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Command Line
To install iTunes 10.6.0.40 silent, treat it as a MSI package like this:
"itunes64setup.exe" /msi /qn NO_AMDS=1 NO_ASUW=1 NO_BONJOUR=1 NO_QUICKTIME=1

Will install iTunes without Quicktime, Bonjour, SW-updates etc.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Note

For 10.6 supressing updates.

iTunes.msi" DESKTOP_SHORTCUTS=0 MEDIA_DEFAULTS=0 SCHEDULE_ASUW=0 REENABLEAUTORUN=0

Add reg:

[HKEY_LOCAL_MACHINE\SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default]
"AdminFlags"=dword:00000101

 

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Note
iTunessetup.exe /quiet /passive /norestart
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Command Line
In version 10.1.1.4 I discovered that I needed to define the property STANDALONE=1 to stop the MSI from trying to run SetupAdmin.exe.

See http://www.appdeploy.com/messageboards/tm.asp?m=71023 for more details.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
If you are trying to install iTunes on a Windows Server 2003 OS the AppleMobileDeviceSupport.msi will fail to install with an error stating "AppleMobileDeviceSupport requires that your computer is running Windows XP SP2 or newer." Simply extract the itunessetup.exe using winrar, winzip etc. Open the AppleMobileDeviceSupport.msi with orca, go to the LaunchCondition table and change the entry:

(VersionNT=501 And ServicePackLevel>=2) Or VersionNT>=600

VersionNT>=501
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
If you're upgrading your 10.4 install to 10.5 note that you also have to upgrade the other components. Apple Application Support (Version 2.1.5) can't use RestartManager to uninstall the previous version (schema is incorrect in both MSIs as well as catering for RM) thefore iTunesHelper.exe & Apple Mobile Device service are to be terminated before uninstall/upgrade.

QuickTime is no longer included in the installation.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Virtualization
Hi All, sharing my Recipe for iTunes 10.5.0.142, as it took me several attempts to get one that worked!
Sequenced with Appv(softgrid) on a Windows XP VM.
Same package works for both Win7 and WinXP targets.
note: QuicktimeInstaller.exe was a seperate installer.


Name: Apple_iTunes_10.5
Asset Folder= x:\itunes5.001

receipe:
extract msi's from iTunesSetup.exe (x86 version)
connect to internet
--- start monitoring ---
Install msiexec /i Bonjour.msi to default (had no choice)
install msiexec /i appleapplicationsupport.msi to x:\itunes5.001\appsupp

install QuicktimeInstaller.exe to x:\itunes5.001\quicktime
install msiexec /i itunes.msi to x:\itunes5.001\itunes

when prompted "open itunes after install completes"
setup preferences open sample movi, audio file, etc.

run quicktime from x:\itunes5.001\quicktime -> setup preferences, open sample movi
--- stop monitoring ---

Luunch itunes and quick time several times - confirm operation and preferences
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note
To suppress EULA and Bonjour notification (if you did not install it) and tutorial window for mass deployment all we need to do is... install all the 5 msi's as said above in a cmd file and go to %appdata%\Apple Computer\iTunes and %LocalAppData%\Apple Computer\iTunes copy the iTunesPrefs.xml file in both folders to the folder where you have all the msi's. Make two diff folders like appd_xml and Localappd_xml and place the respective xml files in those. now in the Install.cmd file after all the 5 command lines to install write
if exist "%AppData%\Apple Computer\iTunes\" copy /Y "%~dp0appd_xml\iTunesPrefs.xml" "%AppData%\Apple Computer\iTunes\"
if exist "%LocalAppData%\Apple Computer\iTunes\" copy /Y "%~dp0localappd_xml\iTunesPrefs.xml" "%LocalAppData%\Apple Computer\iTunes\"
save and run the install.cmd
you wont get EULA and the bonjour error.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note

If you are using a script based installation, and a previous version of iTunes is installed, Use the commands below. Or else it might not work or it may reboot. version 10.7.x

taskkill /F /IM iTunes.exe
taskkill /F /IM iTunesHelper.exe
taskkill /F /IM AppleMobileDeviceService.exe

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Command Line
What i usually do is extract all the EXE and look at the MSIs, From there i delete the "Junk" (apple update utility). Then i rename QuickTime.msi to aaQuicktime.msi (iTunes seems to like it installed first). Then i create this bat script: for /f %%a in ('dir /b *.msi') do start /wait msiexec /qn /i %%a Finally i run the bat.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note

iTunes 10.7.0.21 installation for guest users on a mandatory profile:

We are doing a pretty uncommon thing here of using a local guest account tied to a mandatory profile as opposed to using something like Steady-State or Deep-Freeze. This is a great option for locations like a public library or kiosk, but can cause some issues around software installations. It causes the iTunes.msi (from CommonFiles cache) to run every first-lauch after logon since every logon is a new user profile. Guest users on a madatory profile don't have this ability so it throws an error message. Since iTunes does not modify the default user profile changes had to be made manually. This is all done using SCCM and OSDAppTree via PowerShell. For others with this issue I hope this information will be helpful.

Note: this is information from several resources (included ITNinja), combined with some of my own work. The bottom of this post will have several scripts to show how we do some of this.

Step 1: AppleApplicationSupport2.2.2.msi /qb

Step 2: AppleMobileDeviceSupport9.0.0.59 /qb

Step 3: QuickTime7.72.80.56.msi /qb TRANSFORMS=QuickTime.msi

-->Part 1: Create a Transform:

--> --> CheckBox table: ChkOptInstASU=0

--> --> LaunchCondition table: drop "NOT BNEWPRODUCTINSTALLED"

--> --> Property table: QT_TRAY_ICON=#0

--> --> Property table: SCHEDULE_ASUW=0

--> --> Property table: AdminProperties=PROGRAMMENUNAME;QTJAVADIR;QTPROGRAMMENUFOLDERNAME

--> --> Property table: SecureCustomeProperties=APPLEAPPLICATIONSUPPORTISINSTALLED;APPLEAPPLICATIONSUPPORTWISINSTALLED;BNEWERPRODUCTISINSTALLED;DESKTOP_SHORTCUTS;EXISTINGINSTALLDIR;EXISTINGPROGRAMMENUNAME;EXISTINGQTCOMPONENTS;EXISTINGQTEXTENSIONS;EXISTINGQTJAVADIR;EXISTINGQTSYSTEM;INSTALLDIR;ISACTIONPROP1;ITUNES70_801_INSTALLED;PROGRAMMENUNAME;QT7PP1INSTALLED;QTINFO.BISQTPRO;QTINFO.BITUNESHELPERRUNNING;QTINFO.BNEWERQTISINSTALLED;QTINFO.BOLDERQTISINSTALLED;QTINFO.BQTISINSTALLED;QTINFO.BSETDONOTLOADFROMBUILDRESULTS;QTINFO.BUPGRADEWOULDINVALIDATEPROKEY;QTINFO.BUYQTPROURL;QTINFO.CURRENTQTINSTALLPATH;QTINFO.CURRENTQTMACVERSNUM_BASE10;QTINFO.CURRENTQTPROCESSCOUNT;QTINFO.CURRENTQTVERSNUM;QTINFO.CURRENTQTVERSNUM_BASE10;QTINFO.CURRENTQTVERSSTR;QTINFO.EXISTINGQTVERSNUM;QTINFO.EXISTINGQTVERSSTR;QTINFO.QTPROREGNAME;QTINFO.QTPROREGNUMBER;QTJAVADIR;QTPLUGINOCXFOLDER;QTPROGRAMMENUFOLDERNAME;REGSRCH_DESKTOP_SHORTCUTS;REGSRCH_ITUNESHELPER_PATH;UPGRADEFOUND;UPGRADING750;UPGRADING755

--> --> Shortcut table: drop "QuickTimePlayer_Desktop"

--> --> Shortcut table: drop "QuickTimeUninstaller"

--> Part 2: After a test install of QuickTime, make all your desired changes. Kill all QuickTime process and capture the QuickTime.qtp file.

Step 4: copy QuickTime.qtp "C:\Users\Default\AppData\LocalLow\Apple Computer\QuickTime"

Step 5: iTunes10.7.0.21.msi /qb TRANSFORMS=iTunes.msi.

-->Part 1: Create a Transform:

--> --> Component table: drop "itms.js"

--> --> InstallExecuteSequence table: drop "Launch_iTunesHelper"

--> --> InstallExecuteSequence table: drop "WixSchedFirewallExceptionInstall"

--> --> Registry table: drop "Registry415"

--> --> Registry table: drop "Registry835"

--> --> SelfReq table: drop "ITDetector.ocx"

--> Part 2: After a test install of iTunes, make all your desired changes. Kill all iTunes process and capture the iTunesPrefs.xml file from both LocalAppData and RoamingAppData locations (these files are different, both are needed).

Step 6: copy iTunesPrefs.xml "C:\Users\Default\AppData\Local\Apple Computer\iTunes"

Step 7: copy iTunesPrefs.xml "C:\Users\Default\AppData\Roaming\Apple Computer\iTunes"

Step 8: load default user registry hive

Step 9: import registry settings into default user registry hive (see below)

Step 10: unload default user registry hive

PowerShell script for QuickTime install:

  #Determine Operating System (Do Not Remove)
  if ($osversion -like "*Windows 7*") {
   #All actions specific to Windows 7 (x86)
   echo "Beginning installation for Windows 7 x86" | Out-File -Append -FilePath "$logpath\$applog.txt"
   #Set variable for location of executable - Edit variables as necessary
   $program = "msiexec.exe"
   #Set variable for location of exectable parameters - Edit variables as necessary
   $arguments = "/i `"$dir\QuickTime.msi`" /qb TRANSFORMS=`"$dir\QuickTime.mst`""
   #Install the application - edit as necessary
   Start-Process -FilePath "$program" -ArgumentList "$arguments" -Wait -PassThru | Out-Null
   if ((!($lastexitcode -eq 0)) -and (!($lastexitcode -eq $null))) {$error5 = $lastexitcode}
   echo "Error5 = $error5" | Out-File -Append -FilePath "$logpath\$applog.txt"
   $configdir = "C:\Users\Default\AppData\LocalLow\Apple Computer\QuickTime"
   if (!(test-path -path "$configdir")) {mkdir "$configdir"}
   Copy-Item "$dir\QuickTime.qtp" -destination "$configdir"
   if ((!($lastexitcode -eq 0)) -and (!($lastexitcode -eq $null))) {$error7 = $lastexitcode}
   echo "Error7 = $error7" | Out-File -Append -FilePath "$logpath\$applog.txt"
  }

PowerShell script for iTunes install:

#Determine Operating System (Do Not Remove)
  if ($osversion -like "*Windows 7*") {
   #All actions specific to Windows 7 (x86)
   echo "Beginning installation for Windows 7 x86" | Out-File -Append -FilePath "$logpath\$applog.txt"
   #Set variable for location of executable - Edit variables as necessary
   $program = "msiexec.exe"
   #Set variable for location of exectable parameters - Edit variables as necessary
   $arguments = "/i `"$dir\iTunes.msi`" TRANSFORMS=dir\iTunes.mst MEDIA_DEFAULTS=0 SCHEDULE_ASUW=0 REENABLEAUTORUN=0 /qb"
   #Install the application - edit as necessary
   Start-Process -FilePath "$program" -ArgumentList "$arguments" -Wait -PassThru | Out-Null
   if ((!($lastexitcode -eq 0)) -and (!($lastexitcode -eq $null))) {
    $error5 = $lastexitcode
    echo "Installation did not complete successfully, Error5 = $error5" | Out-File -Append -FilePath "$logpath\$applog.txt"
   }
   $roamingdir = "C:\Users\Default\AppData\Roaming\Apple Computer\iTunes"
   if (!(test-path -path "$roamingdir")) {mkdir "$roamingdir"}
   #Copy configuration files
   Copy-Item "$dir\AppData\iTunesPrefs.xml" -destination "$roamingdir"
   if ((!($lastexitcode -eq 0)) -and (!($lastexitcode -eq $null))) {
    $error7 = $lastexitcode
    echo "Copy of roaming configuration file failed, Error7 = $error7" | Out-File -Append -FilePath "$logpath\$applog.txt"
   }
   $localdir = "C:\Users\Default\AppData\Local\Apple Computer\iTunes"
   if (!(test-path -path "$localdir")) {mkdir "$localdir"}
   Copy-Item "$dir\LocalAppData\iTunesPrefs.xml" -destination "$localdir"
   if ((!($lastexitcode -eq 0)) -and (!($lastexitcode -eq $null))) {
    $error8 = $lastexitcode
    echo "Copy of local configuration file failed, Error8 = $error8" | Out-File -Append -FilePath "$logpath\$applog.txt"
   }
   #Import registry settings
   if (!(test-path -path "HKLM:\Default_User")) {
    echo "Loading default user registry hive." | Out-File -Append -FilePath "$logpath\$applog.txt"
    $preloaded = "no"
    $program = "reg.exe"
    $arguments = "load HKEY_LOCAL_MACHINE\Default_User C:\Users\Default\NTUSER.DAT"
    Start-Process -FilePath "$program" -ArgumentList "$arguments" -Wait -PassThru | Out-Null
   }
   $program = "reg.exe"
   $arguments = "import `"$dir\iTunes.reg`""
   Start-Process -FilePath "$program" -ArgumentList "$arguments" -Wait -PassThru | Out-Null
   if ((!($lastexitcode -eq 0)) -and (!($lastexitcode -eq $null))) {
    $error9 = $lastexitcode
    echo "Import of registry keys failed, Error9 = $error9" | Out-File -Append -FilePath "$logpath\$applog.txt"
   }
   else {echo "Import of registry keys successfull." | Out-File -Append -FilePath "$logpath\$applog.txt"}
   if ($preloaded -eq "No") {
    echo "Unloading default user registry hive." | Out-File -Append -FilePath "$logpath\$applog.txt"
    $program = "reg.exe"
    $arguments = "unload HKEY_LOCAL_MACHINE\Default_User"
    Start-Process -FilePath "$program" -ArgumentList "$arguments" -Wait -PassThru | Out-Null
   }
  }

 Registry file for iTunes:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Default_User\AppEvents\EventLabels\iTunes_Complete]
@="Complete"
"DispFileName"="@C:\\Program Files\\iTunes\\iTunes.Resources\\iTunesRegistry.dll,-300" [HKEY_LOCAL_MACHINE\Default_User\AppEvents\EventLabels\iTunes_PageLoadComplete]
@="Page Load Complete"
"DispFileName"="@C:\\Program Files\\iTunes\\iTunes.Resources\\iTunesRegistry.dll,-301" [HKEY_LOCAL_MACHINE\Default_User\AppEvents\Schemes\Apps\iTunes]
@="iTunes" [HKEY_LOCAL_MACHINE\Default_User\AppEvents\Schemes\Apps\iTunes\iTunes_Complete] [HKEY_LOCAL_MACHINE\Default_User\AppEvents\Schemes\Apps\iTunes\iTunes_Complete\.Current]
@="C:\\Program Files\\iTunes\\iTunes.Resources\\complete.wav" [HKEY_LOCAL_MACHINE\Default_User\AppEvents\Schemes\Apps\iTunes\iTunes_Complete\.Default]
@="C:\\Program Files\\iTunes\\iTunes.Resources\\complete.wav" [HKEY_LOCAL_MACHINE\Default_User\AppEvents\Schemes\Apps\iTunes\iTunes_PageLoadComplete] [HKEY_LOCAL_MACHINE\Default_User\AppEvents\Schemes\Apps\iTunes\iTunes_PageLoadComplete\.Current]
@="C:\\Program Files\\iTunes\\iTunes.Resources\\axloadcomplete.wav" [HKEY_LOCAL_MACHINE\Default_User\AppEvents\Schemes\Apps\iTunes\iTunes_PageLoadComplete\.Default]
@="C:\\Program Files\\iTunes\\iTunes.Resources\\axloadcomplete.wav" [HKEY_LOCAL_MACHINE\Default_User\Software\Apple Computer, Inc.] [HKEY_LOCAL_MACHINE\Default_User\Software\Apple Computer, Inc.\iTunes]
"SM Shortcut Installed"=dword:00000001 [HKEY_LOCAL_MACHINE\Default_User\Software\Apple Computer, Inc.\iTunes\Preferences]
"DontAutomaticallySyncIPods"=dword:00000001 [HKEY_LOCAL_MACHINE\Default_User\Software\Apple Computer, Inc.\iTunes\Parental Controls]
"UserFlags"=dword:00000000
"UserMoviesLimit"=dword:0000012c
"UserTVShowsLimit"=dword:000001f4
"UserRatingSystemID"=dword:00000001
"UserGamesLimit"=dword:0000012c [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\CLSID\{DC0C2640-1415-4644-875C-6F4D769839BA}]
@="iTunes Class"
"AppID"="{F98206B5-F052-4965-9FA0-85F61BC3C19D}" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\CLSID\{DC0C2640-1415-4644-875C-6F4D769839BA}\LocalServer32]
@="\"C:\\Program Files\\iTunes\\iTunes.exe\"" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\CLSID\{DC0C2640-1415-4644-875C-6F4D769839BA}\ProgID]
@="iTunes.Application.1" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\CLSID\{DC0C2640-1415-4644-875C-6F4D769839BA}\TypeLib]
@="{9E93C96F-CF0D-43f6-8BA8-B807A3370712}" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\CLSID\{DC0C2640-1415-4644-875C-6F4D769839BA}\VersionIndependentProgID]
@="iTunes.Application" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\iTunes.Application.1]
@="iTunes Class" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\iTunes.Application.1\CLSID]
@="{DC0C2640-1415-4644-875C-6F4D769839BA}" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\iTunes.Application]
@="iTunes Class" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\iTunes.Application\CLSID]
@="{DC0C2640-1415-4644-875C-6F4D769839BA}" [HKEY_LOCAL_MACHINE\Default_User\Software\Classes\iTunes.Application\CurVer]
@="iTunes.Application.1"
[HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3g2] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3g2\OpenWithProgids]
"QuickTime.3g2"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3gp] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3gp\OpenWithProgids]
"QuickTime.3gp"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3gp2] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3gp2\OpenWithProgids]
"QuickTime.3gp2"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3gpp] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.3gpp\OpenWithProgids]
"QuickTime.3gpp"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.AAC] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.AAC\OpenWithProgids]
"QuickTime.aac"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ADT] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ADT\OpenWithProgids]
"WMP11.AssocFile.ADTS"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ADTS] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ADTS\OpenWithProgids]
"QuickTime.adts"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.aif] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.aif\OpenWithProgids]
"QuickTime.aif"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.aifc] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.aifc\OpenWithProgids]
"QuickTime.aifc"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.aiff] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.aiff\OpenWithProgids]
"QuickTime.aiff"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.asf] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.asf\OpenWithProgids]
"WMP11.AssocFile.ASF"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.asx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.asx\OpenWithProgids]
"WMP11.AssocFile.ASX"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.au] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.au\OpenWithProgids]
"WMP11.AssocFile.AU"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.avi] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.avi\OpenWithProgids]
"WMP11.AssocFile.AVI"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.bmp] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.bmp\OpenWithProgids]
"Paint.Picture"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.cab] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.cab\OpenWithProgids]
"CABFolder"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.contact] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.contact\OpenWithProgids]
"contact_wab_auto_file"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.css] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.css\OpenWithProgids]
"CSSfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.csv] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.csv\OpenWithProgids]
"Excel.CSV"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dib] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dib\OpenWithProgids]
"Paint.Picture"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dll] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dll\OpenWithProgids]
"dllfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.doc] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.doc\OpenWithProgids]
"Word.Document.8"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.docm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.docm\OpenWithProgids]
"Word.DocumentMacroEnabled.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.docx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.docx\OpenWithProgids]
"Word.Document.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dot] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dot\OpenWithProgids]
"Word.Template.8"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dotm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dotm\OpenWithProgids]
"Word.TemplateMacroEnabled.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dotx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dotx\OpenWithProgids]
"Word.Template.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dwfx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.dwfx\OpenWithProgids]
"Windows.XPSReachViewer"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.easmx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.easmx\OpenWithProgids]
"Windows.XPSReachViewer"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.edrwx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.edrwx\OpenWithProgids]
"Windows.XPSReachViewer"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.emf] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.emf\OpenWithProgids]
"emffile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.eprtx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.eprtx\OpenWithProgids]
"Windows.XPSReachViewer"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.exe] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.exe\OpenWithProgids]
"exefile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.fon] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.fon\OpenWithProgids]
"fonfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.gif] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.gif\OpenWithProgids]
"giffile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.htm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.htm\OpenWithProgids]
"htmlfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.html] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.html\OpenWithProgids]
"htmlfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ico] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ico\OpenWithProgids]
"icofile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ini] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ini\OpenWithProgids]
"inifile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.itls] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.itls\OpenWithProgids]
"iTunes.itls"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.itms] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.itms\OpenWithProgids]
"iTunes.itms"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.itpc] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.itpc\OpenWithProgids]
"iTunes.itpc"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jfif] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jfif\OpenWithProgids]
"pjpegfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jpe] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jpe\OpenWithProgids]
"jpegfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jpeg] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jpeg\OpenWithProgids]
"jpegfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jpg] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jpg\OpenWithProgids]
"jpegfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jtx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.jtx\OpenWithProgids]
"Windows.XPSReachViewer"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk\OpenWithProgids]
"lnkfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m1v] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m1v\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m2t] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m2t\OpenWithProgids]
"WMP11.AssocFile.M2TS"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m2ts] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m2ts\OpenWithProgids]
"WMP11.AssocFile.M2TS"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m2v] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m2v\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m3u] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m3u\OpenWithProgids]
"WMP11.AssocFile.m3u"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4a] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4a\OpenWithProgids]
"QuickTime.m4a"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4b] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4b\OpenWithProgids]
"QuickTime.m4b"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4p] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4p\OpenWithProgids]
"QuickTime.m4p"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4r] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4r\OpenWithProgids]
"iTunes.m4r"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4v] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.m4v\OpenWithProgids]
"QuickTime.m4v"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mht] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mht\OpenWithProgids]
"mhtmlfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mhtml] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mhtml\OpenWithProgids]
"mhtmlfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mid] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mid\OpenWithProgids]
"WMP11.AssocFile.MIDI"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.midi] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.midi\OpenWithProgids]
"WMP11.AssocFile.MIDI"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mod] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mod\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mov] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mov\OpenWithProgids]
"QuickTime.mov"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp2] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp2\OpenWithProgids]
"WMP11.AssocFile.MP3"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp2v] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp2v\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp3] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp3\OpenWithProgids]
"WMP11.AssocFile.MP3"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp4] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp4\OpenWithProgids]
"QuickTime.mp4"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp4v] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mp4v\OpenWithProgids]
"WMP11.AssocFile.MP4"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpa] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpa\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpe] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpe\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpeg] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpeg\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpg] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpg\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpv2] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mpv2\OpenWithProgids]
"WMP11.AssocFile.MPEG"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.msg] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.msg\OpenWithProgids]
"Outlook.File.msg.14"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mts] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.mts\OpenWithProgids]
"WMP11.AssocFile.M2TS"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ocx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ocx\OpenWithProgids]
"ocxfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.odt] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.odt\OpenWithProgids]
"Word.OpenDocumentText.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.otf] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.otf\OpenWithProgids]
"otffile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pcast] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pcast\OpenWithProgids]
"iTunes.pcast"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.png] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.png\OpenWithProgids]
"pngfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pot] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pot\OpenWithProgids]
"PowerPoint.Template.8"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.potm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.potm\OpenWithProgids]
"PowerPoint.TemplateMacroEnabled.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.potx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.potx\OpenWithProgids]
"PowerPoint.Template.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppam] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppam\OpenWithProgids]
"PowerPoint.Addin.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppsm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppsm\OpenWithProgids]
"PowerPoint.SlideShowMacroEnabled.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppsx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppsx\OpenWithProgids]
"PowerPoint.SlideShow.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppt] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ppt\OpenWithProgids]
"PowerPoint.Show.8"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pptm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pptm\OpenWithProgids]
"PowerPoint.ShowMacroEnabled.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pptx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pptx\OpenWithProgids]
"PowerPoint.Show.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ps1xml] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ps1xml\OpenWithProgids]
"Microsoft.PowerShellXMLData.1"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.rle] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.rle\OpenWithProgids]
"rlefile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.rmi] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.rmi\OpenWithProgids]
"WMP11.AssocFile.MIDI"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.rtf] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.rtf\OpenWithProgids]
"Word.RTF.8"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.scf] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.scf\OpenWithProgids]
"SHCmdFile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.search-ms] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.search-ms\OpenWithProgids]
"SearchFolder"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sldm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sldm\OpenWithProgids]
"PowerPoint.SlideMacroEnabled.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sldx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sldx\OpenWithProgids]
"PowerPoint.Slide.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.snd] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.snd\OpenWithProgids]
"WMP11.AssocFile.AU"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sys] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.sys\OpenWithProgids]
"sysfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.tif] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.tif\OpenWithProgids]
"TIFImage.Document"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.tiff] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.tiff\OpenWithProgids]
"TIFImage.Document"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ts] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ts\OpenWithProgids]
"WMP11.AssocFile.TTS"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ttc] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ttc\OpenWithProgids]
"ttcfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ttf] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.ttf\OpenWithProgids]
"ttffile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.tts] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.tts\OpenWithProgids]
"WMP11.AssocFile.TTS"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.txt] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.txt\OpenWithProgids]
"txtfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.vsto] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.vsto\OpenWithProgids]
"bootstrap.vsto.1"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wav] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wav\OpenWithProgids]
"WMP11.AssocFile.WAV"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wax] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wax\OpenWithProgids]
"WMP11.AssocFile.WAX"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wdp] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wdp\OpenWithProgids]
"wdpfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wm\OpenWithProgids]
"WMP11.AssocFile.ASF"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wma] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wma\OpenWithProgids]
"WMP11.AssocFile.WMA"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wmf] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wmf\OpenWithProgids]
"wmffile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wmv] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wmv\OpenWithProgids]
"WMP11.AssocFile.WMV"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wmx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wmx\OpenWithProgids]
"WMP11.AssocFile.ASX"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wpl] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wpl\OpenWithProgids]
"WMP11.AssocFile.WPL"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wps] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wps\OpenWithProgids]
"wpsfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wvx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wvx\OpenWithProgids]
"WMP11.AssocFile.WVX"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlam] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlam\OpenWithProgids]
"Excel.AddInMacroEnabled"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xls] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xls\OpenWithProgids]
"Excel.Sheet.8"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlsb] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlsb\OpenWithProgids]
"Excel.SheetBinaryMacroEnabled.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlsm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlsm\OpenWithProgids]
"Excel.SheetMacroEnabled.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlsx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlsx\OpenWithProgids]
"Excel.Sheet.12"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlt] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xlt\OpenWithProgids]
"Excel.Template.8"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xltm] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xltm\OpenWithProgids]
"Excel.TemplateMacroEnabled"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xltx] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xltx\OpenWithProgids]
"Excel.Template"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xml] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xml\OpenWithProgids]
"xmlfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xps] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xps\OpenWithProgids]
"Windows.XPSReachViewer"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xsl] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.xsl\OpenWithProgids]
"xslfile"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.zip] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.zip\OpenWithProgids]
"CompressedFolder"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\Directory] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\Directory\OpenWithList] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\Directory\OpenWithProgids]
"File Folder"=hex(0): [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Windows\CurrentVersion\WinTrust\Trust Providers\Software Publishing]
"State"=dword:00023c00 [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore\7c2ed805_0]
@="{0.0.0.00000000}.{7c6fc93f-e6b0-4d22-9ef3-c54e87f05532}|\\Device\\HarddiskVolume1\\Program Files\\iTunes\\iTunes.exe%b{00000000-0000-0000-0000-000000000000}" [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Office] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Office\Outlook] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Office\Outlook\Addins] [HKEY_LOCAL_MACHINE\Default_User\Software\Microsoft\Office\Outlook\Addins\iTunesAddIn.CalendarHelper]
@=""
"FriendlyName"="iTunes Outlook Addin"
"Description"="iTunes Outlook Addin"
"LoadBehavior"=dword:00000002
"CommandLineSafe"=dword:00000000 [HKEY_LOCAL_MACHINE\SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls [HKEY_LOCAL_MACHINE\SOFTWARE\Apple Computer, Inc.\iTunes\Parental Controls\Default]
"AdminFlags"=dword:0x00000101

 

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note

Okay, so I followed every step in this thread, but apart from the desktop icon not showing, all changes are futile. 2 colleages looked over my shoulder to verify the steps and all three of us are gobsmacked. I've been looking throught multiple forums for 2 days now and every bit of information points to the same steps mentioned here.

The only thing that I need to get done are 3 things:

  1. No Accept ULA message @ startup
  2. No auto-update
  3. No Bonjour service and no message about it

I've changed / added the next lines in the original MSI as well as the original MSI combined with an MST:

DESKTOP_SHORTCUTS = 0
DISABLEADVTSHORTCUTS = 0
SCHEDULE_ASUW = 0
AMDS_IS_INSTALLED = 1
BONJOUR_IS_INSTALLED = 1
REBOOT = ReallySuppress
NO_ASUW = 0
NO_BONJOUR = 0
IAcceptLicense = Yes
REGSRCH_DESKTOP_SHORTCUTS = 0

I've also edited the registry as mentioned above and as mentioned in the Apple Itunes whitepapers, but when I try to run that installation, I get a 1406 MSI error, which directs to a W95 problem with a wrong version of the Windows Installer.

My installation base is Windows 7 ultimate X64 SP1 with all required updates and all VCredists from 2005 up for X86 and X64.

I'm getting really frustrated. Can anyone verify that the above settings work?

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Questions & Answers (33)

Questions & Answers related to Apple iTunes

4
ANSWERS
1
ANSWERS
6
ANSWERS
2
ANSWERED
1
ANSWERS
2
ANSWERS
2
ANSWERS
1
ANSWERS
3
ANSWERS
1
ANSWERS
1
ANSWERS
2
ANSWERS
1
ANSWERS
1
ANSWERS
3
ANSWERED

Blogs (1)

Blog posts related to Apple iTunes

Reviews (0)

Reviews related to Apple iTunes

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ