Changes between Initial Version and Version 1 of Windows Backup Network Restore


Ignore:
Timestamp:
01/05/24 01:21:44 (13 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Windows Backup Network Restore

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