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

Active Directory Audit Using AD Tidy

1. Clean up user accounts Download AD Tidy: https://www.cjwdev.com/Software/ADTidy/Download.html Run: "C:\Program Files\Cjwdev\AD Tidy Free Edition\ADTidy.exe"…

Office 365 Mail Import Using CSV Files

The Point and Click Method Prepare a CSV file in this format [email protected]@[email protected] Access Office…

PowerShell: Elevating Credential

$jumpbox="127.0.0.1" <# # Static Credentials (unsecured) $username = (Get-ADDomain).name+"\ADMINISTRATOR" $password = "PASSWORD" #> # Dynamic…