I found these directions on another thread and they worked for me. I've never been able to get the restore to work through the normal interface. It took me a while to figure out the exact syntax but the directions below are very close. Hope this helps:
"I had the same problem. Never could get the recovery to work from the GUI. I did find a fix on my own however. Google mostly failed me on this one, so hopefully this solves the problem for some other people dealing with this issue.
- Used diskpart to setup my partitions correctly. The volume you're recovering TO MUST be the same size or larger than the volume that was backed up FROM. In my case, the USB backup drive was mounted by the restore disk as C: and the new raid volume was unformatted and no partition created. So I reassigned the usb drive to z:, create partition, create volume, format volume, assigned volume C: Exit out of diskpart when you have it all the way you want it. I'll use my case as an example (off the top of my head so excuse syntax errors):
- From the command line: DISKPART
- list disk
- list volume
- select volume=1 (this was my USB volume)
- remove letter=C
- asssign letter=Z
- select disk=1 (this was my raid disk)
- create partition primary
- create volume simple
- assign letter=C
- format fs=ntfs label="Main" quick
- list volume (verify the volume is created and formatted)
- Exit
- wbadmin is the command line utility you will use to recover your system image.http://technet.microsoft.com/en-us/library/cc754015(WS.10).aspx
I did the following steps to get all I needed to successfully recover onto my new raid volume using wbadmin:
- From the command line: wbadmin get versions -backupTarget:z: -machine:rhess-PC
- Copy (left click highlight, right click highlighted text) text under "Version Identifier" from results given by previous command
- Next command: wbadmin get items -backupTarget:z: -machine:rhess-PC -version:<right click to paste copied text>
- These results will confirm that you have a volume image to restore from in this backup set. Note the name of the volume in this backup set. Once confirmed, move to step 5.
- Recovery command: wbadmin start recovery -backupTarget:z: -recoveryTarget:c: -itemtype:Volume -item:c: -version:<version from above>
As long as your recovery target is the same size or larger than the size stored with your backup set, the restore should be fine. For future backups, it's best practice to shrink the system volume, then backup. This way you can restore to a disk smaller than your current volume, providing more flexibility on future restores.
When the recovery is complete, exit the command prompt (type "exit") then click the link for "repair startup issues". This will make the newly recovered/created partition bootable. After the dialog, reboot and all should work. I've done this twice now where the wizard would just give me the "No disk that can be used for recovering the system can be found." error and this method was successful.
Hope this helps someone.