Skip to content

Latest commit

 

History

History
220 lines (167 loc) · 6.79 KB

File metadata and controls

220 lines (167 loc) · 6.79 KB
description external help file Module Name ms.date online version schema title
Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
wsbcmdlet.dll-Help.xml
WindowsServerBackup
12/27/2016
2.0.0
Start-WBFileRecovery

Start-WBFileRecovery

SYNOPSIS

Starts a file recovery operation.

SYNTAX

Start-WBFileRecovery [-BackupSet] <WBBackupSet> [-SourcePath] <String> [[-TargetPath] <String>]
 [[-Option] <WBFileRecoveryOptions>] [-Recursive] [-NoRestoreAcl] [-Async] [-Force] [<CommonParameters>]

DESCRIPTION

The Start-WBFileRecovery cmdlet starts a file recovery operation. For file recovery, you must specify the backup set from which to recover the file, along with the file that you want to recover.

To browse the volumes in backup, use the Get-WBBackupVolumeBrowsePath cmdlet.

EXAMPLES

Example 1 :Recover files to their original location

PS C:\> Start-WBFileRecovery -BackupSet $Backup -FilePathToRecover "C:\Dir1" -Recursive -FileRecoveryOption CreateCopyIfExists -Force
Recovering files from C:\Dir1 : 
Completed.

This command recovers the file at the path C:\Dir1 from the backup set named $Backup and restores it to its original location. Because the command includes the Force parameter, the backup proceeds without confirmation prompts.

Example 2: Recover files to a new location

PS C:\> Get-WBBackupVolumeBrowsePath -BackupSet $Backup -VolumeInBackup $Backup.Volume[0]
\\Server01\WsbMountedVolumes\WsbMountedVolumeFile46_6fc68703-1c22-11e1-89cd-806e6f6e6963\ PS C:\> dir \\Server01\WsbMountedVolumes\WsbMountedVolumeFile46_6fc68703-1c22-11e1-89cd-806e6f6e6963\dir1\File1.txt
Directory: \\Server01\WsbMountedVolumes\WsbMountedVolumeFile46_6fc68703-1c22-11e1-89cd-806e6f6e6963\dir1
Mode                LastWriteTime     Length Name
----                -------------     ------ ----
-a---        12/13/2011   2:35 PM          0 File1.txt PS C:\> Start-WBFileRecovery -BackupSet $Backup -FilePathToRecover "\\Server01\WsbMountedVolumes\WsbMountedVolumeFile46_6fc68703-1c22-11e1-89cd-806e6f6e6963\Dir1\File1.txt" -RecoveryTarget "F:\Dir1"
Warning
Start recovery of files from C:\Dir1\File1.txt to F:\Fir1 ? 
 [Y] Yes  [N] No  [S] Suspend  [?] Help (default is "Y"): Y

Recovering files from C:\Dir1\File1.txt : 
Completed.

This example recovers the file named C:\Dir1\File1.txt to the alternate location F:\Dir1.

The first command uses the Get-WBBackupVolumeBrowsePath cmdlet to get the volume browse path for the file that you recover. The first element of the Volume array within the backup set stored in the variable named $Backup specifies the volume from which to obtain the backup files.

The second command checks the path that you obtained from the first command for a file named File1.txt.

The third command restores the file named File1.txt to the path F:\Dir1.

PARAMETERS

-Async

Indicates that Windows PowerShell® returns immediately after it starts the backup and does not display status messages.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

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

-BackupSet

Specifies a backup set object that contains the backup set from which this cmdlet recover files.

Type: WBBackupSet
Parameter Sets: (All)
Aliases: 

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-Force

Forces the command to run without asking for user confirmation.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

Required: False
Position: 7
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-NoRestoreAcl

Indicates that the cmdlet does not restore the security attributes for the files after recovery.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

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

-Option

Specifies an object that contains file recovery options. The options specify the action to take when a file that you recover already exists in the same location. The acceptable values for this parameter are:

  • SkipIfExists: Causes Windows Server Backup to skip the existing file and continue with recovery of the next file.
  • CreateCopyIfExists: Causes Windows Server Backup to create a copy of the existing file and not overwrite it.
  • OverwriteIfExists: Causes Windows Server Backup to overwrite the existing file with the file from the backup.

If you do not specify this parameter, the cmdlet uses the CreateCopyIfExists option by default.

Type: WBFileRecoveryOptions
Parameter Sets: (All)
Aliases: 
Accepted values: Default, SkipIfExists, CreateCopyIfExists, OverwriteIfExists

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

-Recursive

Indicates that Windows Server Backup recovers the files from the folders that you specify along with files in folders that are subordinate to those folders. By default, the backup operation recovers only files that reside directly under the specified folders.

Type: SwitchParameter
Parameter Sets: (All)
Aliases: 

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

-SourcePath

Specifies the file path that this cmdlet recovers from the backup. You can prefix the file path with a volume browse path that you get from the Get-WBBackupVolumeBrowsePath cmdlet.

Type: String
Parameter Sets: (All)
Aliases: 

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-TargetPath

Specifies the location where recovered files reside after the recovery. If you do not specify this parameter, the backup operation recovers files to their original locations.

Type: String
Parameter Sets: (All)
Aliases: 

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

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Microsoft.Windows.ServerBackup.Commands.WBBackupSet

System.String

OUTPUTS

System.Object

NOTES

RELATED LINKS

Get-WBBackupVolumeBrowsePath

Get-WBJob