Since Microsoft is removing the Backup utility from Windows 8.1, I have been exploring alternatives to that very useful utility. I know there are third party utilities that will work fine, but I would rather stay with a native version, if possible.
It seems the utility
WBADMIN is capable of creating a backup image just as the Backup utility did. So I started to experiment and found some interesting things.
First, the command to start the backup, which will work in the Administrative version of a Command Prompt or PowerShell.
WBADMIN START BACKUP -backupTarget:f: -allCritical
With
f in my case being the target drive to store the backup image. There are additional flags for including other partitions.
But when I tried it on my Windows 8 to 8.1 upgraded system, it would not work. On another system with the 8 to 8.1 upgrade, it also failed giving me the message:
The Windows Backup engine could not be contacted. Retry the operation.
The remote procedure call failed.
So I reinstalled Windows 8 to test and it worked, for one day, and then started to fail again. So after much research and testing, I found I needed to go into the Hidden System Folder,
System Volume Information, and remove the
WindowsImageBackup directory.
I don't recommend anyone else do this unless they have taken precautions in case of problems. But to remove the directory, I had to boot to the Install media and select Repair your computer. Using the Command prompt option and
dir /a to find the folder and directory. Then using
rmdir WindowsImageBackup /s I was able to remove it.
Both of my systems are now completing the backup process..
I do not know for sure what caused the problem, but I believe the directory had some confusing or corrupted information, possibly because of multiple OS installs on different hard drives and confusion over target drive locations which had been tried.
Another interesting item that came up, is the situation with the
Recovery partition. As you can see from the message below, the Recovery partition is not included in the image by default. The reason is the 8 to 8.1 update install no longer uses it since the Recovery image has been moved to the C: partition. It will be interesting to see how the imaging software, native or third party, will handle an image recovery and what it does with the 300MB of space not included in the image by default. If you have a Legacy (MBR) install, it will still be included because of the combined Boot/Recovery partition.
Retrieving volume information...
This will back up (EFI System Partition),Windows 8(C: ) to f:.
Thanks for reading....