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
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
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
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:
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?
View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.