
New-VBRApplicationGroupStartupOptions
Short Description
Creates VM startup settings for staged restore.
Applies to
Product Edition: Enterprise, Enterprise Plus
Syntax
New-VBRApplicationGroupStartupOptions -MaximumBootTime <int> -ApplicationInitializationTimeout <int> -MemoryAllocationPercent <int> [-HeartbeatCheck] [-PingCheck] [<CommonParameters>] |
Detailed Description
The cmdlet creates the VBRApplicationGroupStartupOptions object that contains VM startup settings for staged restore.
Run Start-VBRRestoreVM to restore VMware VMs with the staged restore option.
Run Start-VBRHvRestoreVM to restore Hyper-V VMs with the staged restore option.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Maximum | Specifies the period that is required for VMs to boot. Default: 600 sec. | True | Named | False |
|
Application | Specifies the timeout required to initialize applications on VMs. Default: 120 sec. | True | Named | False |
|
Memory | Specifies the amount of memory that you want to pre-allocate to VMs when these VMs start. Default: 100 percent. | True | Named | False |
|
Heartbeat | Indicates that Veeam Backup & Replication will perform the heartbeat test for verified VMs. | False | Named | False |
|
Ping | Indicates that Veeam Backup & Replication will perform the ping test for verified VMs. | False | Named | False |
|
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example
This command specifies startup settings for VMs added to an application group. Veeam Backup & Replication will perform staged restore with the following VM startup settings:
- The period that is required for VMs to boot is set to 200 sec
- The timeout required to initialize applications on VMs is set to 150
- The amount of memory provided for VMs is set to 80 percent
$startupoptions = New-VBRApplicationGroupStartupOptions -MaximumBootTime 200 -ApplicationInitializationTimeout 150 -MemoryAllocationPercent 80 |