Hi, I've got a powershell script which creates an application group and add some VMs.
Is there a way I can set the VMs to have different start up times to the default ones given?
Also is it possible to give roles to the VMs through Powershell?
Many Thanks
This is my Powershell script:
Code: Select all
Add-PSSnapin VeeamPSSnapin
Sync-VBRBackupRepository -Repository (Get-VBRBackupRepository -Name "BackupData")
$ibfOibs = (Get-VBRRestorePoint -Name "DOM01")
$ibfOibs += (Get-VBRRestorePoint -Name "APP01")
$ibfOibs += (Get-VBRRestorePoint -Name "EXCH01")
Add-VSBViApplicationGroup –Name “App Group - Offsite Backups” –RestorePoint $ibfOibs