Creating a junction to move the device backup folder doesn't work with iTunes from the Windows Store
Like Creating a junction to move the device ba… - Apple Community ...
How does one change the backup location of iTunes?
Like Creating a junction to move the device ba… - Apple Community ...
How does one change the backup location of iTunes?
See Relocate iOS device backups. Review the rest of the Make a split library portable user tip for advice on organizing the library on external storage.
If should be something like:
MkLink /J "%UserProfile%\Apple\MobileSync\Backup" "C:\mynewbackupdir"
Your rename should take care of the existing Backup folder, which should not exist before you try to create the junction. I assume the folder C:\mynewbackupdir has been created.
tt2
If the desired backup location is C:\mynewbackupdir ...
REM manually-installed iTunes location
cd %APPDATA%\Apple Computer\MobileSync
rename Backup Backup-orig
mklink /J Backup C:\mynewbackupdir
REM Windows-Store-installed iTunes location
cd %USERPROFILE%\Apple\MobileSync
rename Backup Backup-orig
mklink /J Backup C:\mynewbackupdir
Thank you -- I will update my answer to avoid the need for the `cd`
Too late to update it :/
Creating a junction to move the device backup folder doesn't work with iTunes from the Windows Store