set theDMG to choose file with prompt "Please select iTunes dmg file:" of type {"dmg"}
do shell script "hdiutil mount " & quoted form of POSIX path of theDMG
do shell script "pkgutil --expand /Volumes/iTunes/Install\\ iTunes.pkg ~/tmp"
do shell script "hdiutil unmount /Volumes/iTunes/"
do shell script "cd ~/tmp/iTunesX.pkg;" & "cat Payload | gunzip -dc |cpio -i;" & "ditto ~/tmp/iTunesX.pkg/Applications/iTunes.app ~/tmp/iTunes.app;"
do shell script "plutil -replace CFBundleGetInfoString -string 'iTunes 13.6.5.3' ~/tmp/iTunes.app/Contents/Info.plist"
do shell script "plutil -replace CFBundleShortVersionString -string 13.6.5 ~/tmp/iTunes.app/Contents/Info.plist"
do shell script "plutil -replace CFBundleVersion -string 13.6.5 ~/tmp/iTunes.app/Contents/Info.plist"
do shell script "ditto ~/tmp/iTunes.app /Applications/iTunes.app"
do shell script "touch /Applications/iTunes.app"
do shell script "rm -rf ~/tmp"
do shell script "open -a /Applications/iTunes.app"
Does retroactive app solve the app icon problem?
It is not a Catalina only problem, it affects all versions of iTunes and macOS.When someone downloads iTunes, the app doesn't download
thanks for your helpIt is not a Catalina only problem, it affects all versions of iTunes and macOS.
See the last posts, starting with https://forums.macrumors.com/thread...tible-with-macos-mojave.2143244/post-28291983
The only solution that works is to use iTtunes 12.6 in Windows.even without solution itunes does not want to download or update the App
Do you just transfer the updated apps to Mojave I guess.?The only solution that works is to use iTtunes 12.6 in Windows.
https://forums.macrumors.com/thread...tible-with-macos-mojave.2143244/post-28297040
I can connect my iPhone 6 with iOS 12.4.6 to the VirtualBox virtual machine with Windows 10 x64 Pro Education, perform a backup and install downloaded apps.Do you just transfer the updated apps to Mojave I guess.?
giving it a shotYou have to use retroactive 1.6
giving it a shotso theres no way to get my current itunes back, i need to use this to re-install itunes? any complications with my library i should know about?
Sorry for making you wait. I got the good news today. The problem is in the server, Apple software team is aware of this and they are working on it. They said that the problem will be fixed soon.
Apple might have had a change of heart, iTunes 12.6.5.3 is working in 10.15.4 Beta 3 (19E242d).
I used this script
Code:set theDMG to choose file with prompt "Please select iTunes dmg file:" of type {"dmg"} do shell script "hdiutil mount " & quoted form of POSIX path of theDMG do shell script "pkgutil --expand /Volumes/iTunes/Install\\ iTunes.pkg ~/tmp" do shell script "hdiutil unmount /Volumes/iTunes/" do shell script "cd ~/tmp/iTunesX.pkg;" & "cat Payload | gunzip -dc |cpio -i;" & "ditto ~/tmp/iTunesX.pkg/Applications/iTunes.app ~/tmp/iTunes.app;" do shell script "plutil -replace CFBundleGetInfoString -string 'iTunes 13.6.5.3' ~/tmp/iTunes.app/Contents/Info.plist" do shell script "plutil -replace CFBundleShortVersionString -string 13.6.5 ~/tmp/iTunes.app/Contents/Info.plist" do shell script "plutil -replace CFBundleVersion -string 13.6.5 ~/tmp/iTunes.app/Contents/Info.plist" do shell script "ditto ~/tmp/iTunes.app /Applications/iTunes.app" do shell script "touch /Applications/iTunes.app" do shell script "rm -rf ~/tmp" do shell script "open -a /Applications/iTunes.app"