Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How can I backup to my iPhone to a network drive?

Is there a way to backup iPhone to a network drive?


Yes.


If you use iTunes on a Windows-PC create a JUNCTION LINK "mklink /j". This example will backup to OneDrive.

cd C:\Users\peter\Apple\MobileSync\
rename Backup Backup-OLD
mklink /j Backup C:\Users\peter\OneDrive\Apple\MobileSync\Backup
move Backup-OLD\* Backup\

You of course have to create the folder on OneDrive

mkdir C:\Users\peter\OneDrive\Apple\MobileSync\Backup


You can also backup to a network drive. You have to map a drive letter because mklink does not support UNC paths.

net use   N: \\pS-NAS\homes\Peter
cd C:\Users\peter\Apple\MobileSync\
rename Backup Backup-OLD
mklink /j C:\Users\peter\Apple\MobileSync\Backup  N:\Apple\MobileSync\Backup
move Backup-OLD\* Backup\
mkdir N:\Apple\MobileSync\Backup

Windows, Windows 10

Posted on Feb 11, 2024 3:32 PM

Reply
3 replies
Sort By: 

Feb 11, 2024 3:34 PM in response to peter84st

-- to remove the JUNCTION LINK

C:
cd C:\Users\peter\Apple\MobileSync\Backup
rmdir backup
mkdir Backup
move C:\Users\peter\OneDrive\Apple\MobileSync\Backup\*  Backup\
rmdir C:\Users\peter\OneDrive\Apple\MobileSync\Backup
rmdir C:\Users\peter\OneDrive\Apple\MobileSync\
rmdir C:\Users\peter\OneDrive\Apple\
Reply

Feb 11, 2024 4:54 PM in response to peter84st

When you backup to the OneDrive folder on your Windows-PC, the ONeDrive sync service will start syncing with the Cloud. For my 30 GB, it took about 20 hours. I had to limit OneDrive uploads to 200 kB/s because my network was getting thrashed and I couldn't stream videos or control my Smart Home.


I only have 3.4 Megabit/s upload = 340 kiloByte/s

Reply

How can I backup to my iPhone to a network drive?

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.