This commit is contained in:
Zack Meier
2026-04-15 15:42:41 -05:00
parent 74edcc4d9a
commit 03dba08135
146 changed files with 9119 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
$Clusters = get-datacenter Primary*, Secondary* | get-cluster | sort-object Name
$Clusters | ForEach-Object{
$_ | Set-Cluster -HAEnabled $false -DrsEnabled $false -Confirm:$false
}
$Clusters = get-datacenter Primary*, Secondary* | get-cluster | sort-object Name
$Clusters | ForEach-Object{
If($_.Name -like "AVAYA*" -or $_.Name -like "TEL*"){
$_ | Set-Cluster -HAEnabled $true -Confirm:$false
}
Else{
$_ | Set-Cluster -HAEnabled $true -DrsEnabled $true -Confirm:$false
}
}
#avaya/tel no DRS