To MaReCeQ. Díky moc!!!!! Prolezl jsem celé
vlákno a nakonec zabral návod který přikládám níže. Konkrétně u mně zabral bod č. 2. Ještě jednou díky moc!!!!!!!!!!!
Cituji návod uživatele WizeWun:
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 ... sSetup.exe1. 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