For Windows Server 2025, the supported restore path depends on what was backed up:
- For System State restore, use Windows Server Backup and point it to the folder that contains the backup.
- For full OS / bare metal recovery, use system image recovery from Windows Recovery and restore from a network share if needed.
For the error shown:
ERROR - The specified backup was not found.
the command must use the exact backup target and version identifier returned by wbadmin get versions.
Use this sequence:
- On the server to recover, open an elevated Command Prompt.
- Run:
wbadmin get versions -backuptarget:\\<servername>\<sharename> - Copy the version identifier exactly as returned.
- Start the System State recovery with that exact version and backup target:
wbadmin start systemstaterecovery -version:<versionidentifier> -backuptarget:\\<servername>\<sharename> - Confirm the recovery, let it complete, and then restart the server.
If the backup is being restored through the Windows Server Backup UI instead of command line:
- Open Windows Server Backup.
- Select Local Backup.
- In Actions, select Recover.
- Select A backup stored in another location.
- If the backup is on another server, select Remote shared folder. If local, select Local drives.
- Point to the WindowsImageBackup directory.
- Remote example:
\\MyFileServer\MyFolder\WindowsImageBackup - Local example:
D:\WindowsImageBackup
- Remote example:
- Continue the wizard and choose the recovery type.
Important checks for the “backup not found” error:
- The share path must be the correct backup target.
- The version identifier must exactly match the output of
wbadmin get versions. - For Windows Server Backup discovery, the backup files must be under the WindowsImageBackup folder.
- If using a local drive, the WindowsImageBackup folder must be at the root of a non-critical volume.
If the goal is to restore the entire OS rather than only System State, use system image recovery:
- Boot into System Recovery Options.
- Select Restore your computer using a system image that you created earlier.
- Select Select a system image > Advanced > Search for a system image on the network.
- Enter the share path and credentials.
- Select the recovery point.
- Select Format and repartition disks.
- Select Finish to begin restore. A restart is required.
For Exchange or SQL Server scenarios with OS damage, the documented supported option is System State or BMR restore, while lost application data requires the application-aware backup path instead of System State alone.