sysadmin:aggiungere_una_vm_ad_un_job_con_powershell
Differences
This shows you the differences between two versions of the page.
sysadmin:aggiungere_una_vm_ad_un_job_con_powershell [11/06/2017 07:12] – external edit 127.0.0.1 | sysadmin:aggiungere_una_vm_ad_un_job_con_powershell [20/12/2021 06:17] (current) – lrosa | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Aggiungere una VM ad un job con PowerShell ====== | ||
+ | |||
+ | Utilizzare questo script per automatizzare l' | ||
+ | |||
+ | <code powershell> | ||
+ | Add-PSSnapin VeeamPSSnapin | ||
+ | $Entity = Find-VBRViEntity -name " | ||
+ | $Job = Get-VBRJob -name " | ||
+ | Add-VBRViJobObject -Job $Job -Entities $Entity | ||
+ | </ | ||
+ | |||