Start-WBSystemStateRecovery

Starts a system state recovery operation.

Syntax

Start-WBSystemStateRecovery
     [-BackupSet] <WBBackupSet>
     [[-TargetPath] <String>]
     [-AuthoritativeSysvolRecovery]
     [-RestartComputer]
     [-Async]
     [-Force]
Start-WBSystemStateRecovery
     [-BackupSet] <WBBackupSet>
     [-ADIFM]
     [-TargetPath] <String>
     [-Async]
     [-Force]

Description

The Start-WBSystemStateRecovery cmdlet starts a system state recovery operation. If the System State recovery operation is performed on the actual machine, completion of the operation requires a restart. If recovery is performed on an Active Directory (AD) machine, this cmdlet must be run in Directory Services Restore Mode (DSRM).

Examples

Example 1: Start a system state recovery operation

PS C:\>$Backup = Get-WBBackupSet PS C:\> Start-WBSystemStateRecovery -BackupSet $Backup -Force -AutoReboot -Async

This example starts a system state recovery operation, then reboots the machine at the end of the recovery operation.

The first command stores the result of Get-WBBackupSetin a variable named $Backup.

The second command starts the system state recovery from the backup set in $Backup. The command also uses the Force parameter to perform the recovery without prompting, the AutoReboot parameter to reboot the machine when recovery finishes, and the Async parameter to suppress status output.

Parameters

-ADIFM

Indicates an install from media (IFM) operation to recover all the related data needed for Active Directory Domain Services. Active Directory Install From Media (ADIFM) creates a copy of the Active Directory database, registry, and SYSVOL state, and then saves this information in the location specified by RecoveryTarget. Use this parameter only when RecoveryTarget is specified. This parameter is valid only if the backup set contains an Active Directory system state backup.

Type:SwitchParameter
Position:2
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-Async

Indicates that Windows PowerShell return immediately after starting the backup, and not output status to the screen.

Type:SwitchParameter
Position:5
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-AuthoritativeSysvolRecovery

Indicates an authoritative recovery of SYSVOL, the System Volume shared directory. This parameter is valid only if the backup set contains an Active Directory system state backup.

Type:SwitchParameter
Position:3
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-BackupSet

Specifies the backup set from which system state recovery is to be done.

Type:WBBackupSet
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-Force

Starts the system state recovery without prompting you for confirmation. By default, the cmdlet prompts you for confirmation before it proceeds.

Type:SwitchParameter
Position:6
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-RestartComputer

Indicates a system restart at the completion of the system state recovery operation. Use this parameter only for a recovery to the original location. Do not use this parameter if you need to perform steps after the recovery operation.

Type:SwitchParameter
Position:4
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-TargetPath

Specifies an alternate location where the files belonging to system state can be recovered from the backup set. If you do not specify this parameter, system state recovery is performed for the actual machine, which will need a reboot at the end of the operation. ADIFM recovery requires this parameter.

Type:String
Position:2
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

Inputs

WBBackupSet

Specifies the backup set that contains volume backup of all the system critical volumes, or contains backup of the system state for the system state recovery operation.

Outputs

String

If you do not specify the Async parameter, the recovery operation outputs status at periodic intervals until the recovery operation completes. You can also call Get-WBJob to get the status of the current recovery operation. After completion of recovery, run Get-WBJob with the Previous parameter and an argument of 1to get the final recovery status.