User Tools

Site Tools


sysadmin:aggiungere_una_vm_ad_un_job_con_powershell

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

sysadmin:aggiungere_una_vm_ad_un_job_con_powershell [11/06/2017 07:12] – external edit 127.0.0.1sysadmin: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'operazione
 +
 +<code powershell>
 +Add-PSSnapin VeeamPSSnapin
 +$Entity = Find-VBRViEntity -name "nomeDellaVM"
 +$Job = Get-VBRJob -name "nomeDelJob"
 +Add-VBRViJobObject -Job $Job -Entities $Entity
 +</code>
 +