| 1 | = Windows Backup Network Restore = |
| 2 | |
| 3 | {{{ |
| 4 | It's an old post, but this issue still remains in 2017 and Windows 10 Creators Update (ver 1703). Anyways, I managed to find a workaround. The workaround is to use command line tool WBADMIN which is installed by default when you create Windows 10 repair disc. |
| 5 | |
| 6 | Boot with your repair disc. |
| 7 | Choose keyboard. |
| 8 | Choose an option: Troubleshoot. |
| 9 | Advanced Options: Command prompt. |
| 10 | |
| 11 | Now you're in command prompt. |
| 12 | |
| 13 | Start the network with command: |
| 14 | |
| 15 | startnet |
| 16 | |
| 17 | Check that you have valid IP configuration. If you don't, install necessarry driver and check again. |
| 18 | |
| 19 | ipconfig |
| 20 | |
| 21 | Connect to your network location which holds your backups. |
| 22 | |
| 23 | net use \\pc1\backups /user:localhost\operator |
| 24 | |
| 25 | In the example above adjust for your network name and user name. |
| 26 | |
| 27 | Run wbadmin on it's own to see available parameters. |
| 28 | |
| 29 | wbadmin |
| 30 | |
| 31 | Run wbadmin to retrieve available versions of backups that can be recovered. |
| 32 | |
| 33 | wbadmin get versions -backupTarget:\\pc1\backups |
| 34 | |
| 35 | This will retrieve available version identifiers in the format 'MM/DD/YYYY-HH:MM' |
| 36 | |
| 37 | Use the version identifier from above to restore your backup. |
| 38 | |
| 39 | In the example below, I removed old disk (250 GB) and replaced it with a bigger one (500GB). |
| 40 | |
| 41 | I chose to recreate disks and restore all volumes. Originaly, I had one disk with two volumes - 'system reserved' volume (500MB) and another volume occupying the rest of the disk. |
| 42 | |
| 43 | The command below recreated these two volumes succesfully, but when I signed in, I had to extend the volume, because it created it with the original size of 250 GB. |
| 44 | |
| 45 | Modify the command below to your needs. specifying version you want to restore, where your backup is being stored (-backupTarget), the machine you want to restore (-machine) and whether you want to recreate disks an restore all volumes. |
| 46 | |
| 47 | wbadmin start sysrecovery -version:05/30/2017-22:05 -backuptarget:\\pc1\backups -machine:ds2 -recreateDisks -restoreAllVolumes |
| 48 | |
| 49 | wbadmin 1.0 - Backup command-line tool |
| 50 | (C) Copyright 2013 Microsoft Corporation. All rights reserved. |
| 51 | |
| 52 | Troubleshooting information for BMR: http://go.microsoft.com/fwlink/p/?LinkId=225039 |
| 53 | |
| 54 | You have chosen to recover volume(s) \\?\Volume{319c017e-0000-0000-0000-100000000000}\,C: |
| 55 | from the backup created on 5/30/2017 2:05 PM to the original location. |
| 56 | Warning: You are about to recreate volumes, which will erase the data on all |
| 57 | volumes that contain operating system components. This action might also |
| 58 | delete data on data volumes. The deleted data will be replaced with the data |
| 59 | in the backup. If the disk layout is different from the layout when the |
| 60 | backup was created, this action will also erase data on the other disks. Once |
| 61 | the recovery operation starts, you cannot recover the erased data, even if |
| 62 | the action fails or is restarted. |
| 63 | |
| 64 | Do you want to continue? |
| 65 | [Y] Yes [N] No y |
| 66 | |
| 67 | Preparing all the volumes on all disk(s) for recovery. |
| 68 | Retrieving volume information... |
| 69 | Running a recovery operation for volume System Reserved (500.00 MB), copied (0%). |
| 70 | Running a recovery operation for volume System Reserved (500.00 MB), copied (94%). |
| 71 | Running a recovery operation for volume (C:), copied (0%) |
| 72 | |
| 73 | Running a recovery operation for volume (C:), copied (20%). |
| 74 | |
| 75 | ... |
| 76 | |
| 77 | Running a recovery operation for volume (C:), copied (97%). |
| 78 | Running a recovery operation for volume (C:), copied (99%). |
| 79 | The recovery operation for volume (C:) successfully completed. |
| 80 | The recovery operation completed. |
| 81 | Summary of the recovery operation: |
| 82 | -------------------- |
| 83 | |
| 84 | The recovery operation for volume System Reserved (500.00 MB) successfully completed. |
| 85 | The recovery operation for volume (C:) successfully completed. |
| 86 | |
| 87 | That's all. Good luck! |
| 88 | }}} |