Stránka 1 z 1

Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: ned pro 26, 2010 12:43 pm
od Fukki
Prosím o pomoc pokud by někdo věděl. Instaluji iTunes na relativně nový NB s legálními Win7 64bit, mám iTunes 10.1.1 for Windows (64-bit).

Při instalaci vyskočí problém viz obrázek.
http://img269.imageshack.us/img269/3813/errorxp.jpg

Instalace se sice dokončí, ale následně po spuštění vždy naskočí error "Apple aplication support was not found" "Error 2 (windows error 2). Tzn. aplikace se zřejmě špatně nainstalovala.
http://img63.imageshack.us/img63/4512/error1j.jpg

Zkoušel jsem i starší instalačky iTunes 10, 9.2.. stejný problém. Nevěděl byste někdo co s tím??? Děkuji předem.

Re: Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: ned pro 26, 2010 1:02 pm
od Marek

Re: Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: ned pro 26, 2010 1:19 pm
od Tea Racer
Přesne tak potrebujes 64bit iTunes :-)

Re: Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: ned pro 26, 2010 7:10 pm
od Fukki
Chlapi ale právě, že já jsem zkoušel 64bit iTunes, dokonce jsem zkoušel i 32bit iTunes (už jsem si nevěděl rady). Spíš to vypadá, jakoby bylo něco pomrvené v těch mých win7 na tom NB, ale k čertu proč? Vše normálně šlape, noťas je skoro nový, v provozu jen několik měsíců a žádné problémy neměl.

Vypadá to, že buď asi reinstal windows :-( nebo hodím ty iTunes na stolní domácí comp, což mně ale docela štve..

edit: asi jste se s něčím podobným nesetkali... ??

Re: Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: úte pro 28, 2010 11:36 am
od Marek

Re: Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: stř pro 29, 2010 8:19 pm
od john
Já mám 64bit Windows 7 a používám iTunes 32bit a bez problémů

Re: Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: stř pro 29, 2010 9:13 pm
od Tea Racer
To je nejaké divne ne? :D To mi neslo ani nainstalovat, jsi si jisty svojím OS? :D

Re: Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: stř pro 29, 2010 9:14 pm
od john
Ano, na stolním pc mám Win7 64bit (kvůli ramkám)
na MacBooku je to asi jedno :D

ikdyž otevřu procesy(správce úloh) tak tam mám 32exe

Re: Instalace iTunes hlasi "error... Microsoft.VC80.CRT..."

Napsal: pon led 03, 2011 8:41 pm
od Fukki
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.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