This fix is PC only. Backup your iTunes Library, uninstall iTunes then follow one of the 3 procedures listed below
_Download URL_
http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iTunes9/061-6351. 20090909.Tza9j/iTunesSetup.exe
1. CMD LINE - cmd line to directory containing "
iTunesSetup.exe"
Type without quotes "*iTunesSetup.exe /passive /norestart*"
2. Using Batch File - Using 7zip or WinRAR, right click "
iTunesSetup.exe" then "*Extract to iTunesSetup*". Using notepad, copy and paste code below then save file as "
InstalliTunes.bat" in the iTunesSetup directory containing the extracted files.
*USE THIS ONLY IF QUICKTIME IS ALREADY INSTALLED*
+msiexec.exe /i "iTunes.msi" /passive /norestart+
+msiexec.exe /i "AppleApplicationSupport.msi" /passive /norestart+
*USE THIS ONLY IF QUICKTIME IS NOT INSTALLED*
+msiexec.exe /i "iTunes.msi" /passive /norestart+
+msiexec.exe /i "AppleApplicationSupport.msi" /passive /norestart+
+msiexec.exe /i "quicktime.msi" /passive /norestart+
3. Using VBS file - Using 7zip or WinRAR, right click "
iTunesSetup.exe" then "*Extract to iTunesSetup*". Using notepad, copy and paste code below then save file as "
InstalliTunes.vbs" in the iTunesSetup directory containing the extracted files.
*USE THIS CODE IF QUICKTIME IS NOT INSTALLED*
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
+Dim objShell, WshShell+
+'C:\iTunesSetup folder used as an example.+
+' Change to desired location with extracted files+
+Install="msiexec.exe /i C:\iTunesSetup"+
+iTunes="\iTunes.msi /passive /norestart"+
+QuickTime="\QuickTime.msi /passive /norestart"+
+AppSupport="\AppleApplicationSupport.msi /passive /norestart"+
+call iTunesQuicktime+
+call InstallComplete+
+Function iTunesQuicktime+
+Set oShell = CreateObject("Wscript.Shell")+
+Set WshShell = CreateObject("WScript.Shell")+
+oShell.Run Install & iTunes ' start iTunes installation+
+WScript.Sleep 210000 'waits 3.5 mins to install iTunes+
+oShell.Run Install & AppSupport+
+WScript.Sleep 120000+
+oShell.Run Install & QuickTime+
+WScript.Sleep 180000+
+Set oShell = nothing+
+Set WshShell = nothing+
+End Function+
+Function InstallComplete+
+Confirm = WshShell.popup("iTunes installation successfully completed." & vbCrlf &_+
+"Would you like to run iTunes now?",," iTunes Quicktime",36)+
+If Confirm=7 Then+
+Quit=WshShell.popup("Thank you for installing iTunes 9.0",," iTunes Quicktime",0)+
wscript.quit
Else
oShell.run("itunes.exe")
+End If+
+End Function+
Wscript.Quit
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
*USE THIS CODE IF QUICKTIME IS ALREADY INSTALLED*
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
+Dim objShell, WshShell+
+'C:\iTunesSetup folder used as an example.+
+' Change to desired location with extracted files+
+Install="msiexec.exe /i C:\iTunesSetup"+
+iTunes="\iTunes.msi /passive /norestart"+
+AppSupport="\AppleApplicationSupport.msi /passive /norestart"+
+call iTunes+
+call InstallComplete+
+Function iTunes+
+Set oShell = CreateObject("Wscript.Shell")+
+Set WshShell = CreateObject("WScript.Shell")+
+oShell.Run Install & iTunes ' start iTunes installation+
+WScript.Sleep 210000 'waits 3.5 mins to install iTunes+
+oShell.Run Install & AppSupport+
+WScript.Sleep 120000+
+Set oShell = nothing+
+Set WshShell = nothing+
+End Function+
+Function InstallComplete+
+Confirm = WshShell.popup("iTunes installation successfully completed." & vbCrlf &_+
+"Would you like to run iTunes now?",," iTunes Quicktime",36)+
+If Confirm=7 Then+
+Quit=WshShell.popup("Thank you for installing iTunes 9.0",," iTunes Quicktime",0)+
wscript.quit
Else
oShell.run("itunes.exe")
+End If+
+End Function+
Wscript.Quit
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
This should install iTunes without and resolve Application Support Error encountered.
Message was edited by: WizeWun