9 lines
285 B
PowerShell
Executable File
9 lines
285 B
PowerShell
Executable File
#!/usr/bin/env pwsh
|
||
|
||
. /opt/idssys/powerwall/settings.ps1
|
||
|
||
Connect-VIServer -Server $VCENTERHOST -Protocol https -User $VCENTERUSER -Password $VCENTERPASS | Out-Null
|
||
|
||
Set-DrsRule -Rule "System VMs (S)" -Enabled $false;
|
||
|
||
Disconnect-VIServer -Server $VCENTERHOST -Force –Confirm:$false |