Forum Discussion
Deleted
May 30, 2018Windows Admin Center - Single Sign On Configuration
I am struggling with the directions for configuring Single Sign-On for Windows Admin Center. I installed WAC on a Windows Server 2016 server (with desktop experience). The server name is "wac01". ...
MattM310
Jun 25, 2022Copper Contributor
For those who have a clustered version of WAC, this is how we did the same thing, but included both of our nodes:
[System.Collections.ArrayList]$nodes = @()
$nodes.Add((Get-ADComputer "WAC1"))
$nodes.Add((Get-ADComputer "WAC2"))
Get-ADComputer -Filter { OperatingSystem -Like '*Windows Server*' } | Set-ADComputer -PrincipalsAllowedToDelegateToAccount $nodes