Posted On March 31, 2019

How to Change iTunes Backup Location of Storage In Windows

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How to Change iTunes Backup Location of Storage In Windows
  1. Make a directory junction after moving the backup storage location
    • robocopy “C:\Users\%USERNAME%\AppData\Roaming\Apple Computer\MobileSync” “D:\iphone_backups” /E /R:0 /NP /MOVE
    • mklink /J “%APPDATA%\Apple Computer\MobileSync\Backup” “D:\iphone_backups”
  2. Move iPhone Software Updates location
    • robocopy “C:\Users\%USERNAME%\AppData\Roaming\Apple Computer\iTunes\iPhone Software Updates” “D:\iphone_backups\iPhone Software Updates” /E /R:0 /NP /MOVE
    • mklink /J “%APPDATA%\Apple Computer\iTunes\iPhone Software Updates” “D:\iphone_backups\iPhone Software Updates”
  3. Change iTunes Media Location
    • Run iTunes > Edit > Preferences > Advanced > click on “Change” of iTunes Media folder location
    • Navigate to the new location (e.g. D:\iphone_backups) > Select Folder > OK

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Restricting Access to Directory in Windows Shares

- Only allow Admins write access to root folders- NTFS permissions at root directory for…

Windows Server Power Settings

powercfg /setactive SCHEME_MINpowercfg /hibernate offpowercfg -L

PowerShell: Mapping and Unmapping Network Drives

How to Map Network Drive using Dot Net Framework $driveLetter='T' $smbPath='\\FILESERVER\SHARENAME' $username='DOMAIN\USERNAME' $password='PASSWORD' $networkDrivesObject =…