New-VBRApplicationBackupSnapshot
Short Description
Creates a new snapshot of the application backup repository.
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
New-VBRApplicationBackupSnapshot -Repository <VBRApplicationBackupRepository> [<CommonParameters>] |
Detailed Description
This cmdlet creates a new snapshot of the application backup repository. You can use this snapshot to perform instant recovery or data recovery operations.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Repository |
Specifies the application backup repository in which you want to create a snapshot.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRApplicationBackupSnapshot object that contains information about the application backup repository snapshot.
Examples
Creating Application Backup Repository Snapshot
This example shows how to create a snapshot in an application backup repository.
|
$repository = Get-VBRApplicationBackupRepository -Name "Application Backup Repository 01" New-VBRApplicationBackupSnapshot -Repository $repository |
Perform the following steps:
- Run the
Get-VBRApplicationBackupRepositoryReturns application backup repositories. cmdlet. Specify theNameparameter value. Save the result to the$repositoryvariable. - Run the
New-VBRApplicationBackupSnapshotcmdlet. Set the$repositoryvariable as theRepositoryparameter value.
Related Commands
Get-VBRApplicationBackupRepositoryReturns application backup repositories.