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". ...
Martin Šramo
Oct 30, 2018Copper Contributor
As far as I found out, the Gateway is the windows server where WAC is installed and run as a service. Target node is the computer you want to manage.
For my case, I had to cycle through all computers (fortunately only 43) and run this commands for trusted delegation. Hopefully there is an easier way, so someone can enlighten us, but if not, this worked for me.
maedli
Jul 10, 2019Copper Contributor
You could always run:
$gateway = "gateway" # Machine where Windows Admin Center is installed
$gatewayObject = Get-ADComputer -Identity $gateway
Get-ADComputer -Filter { OperatingSystem -Like '*Windows Server*' } | Set-ADComputer -PrincipalsAllowedToDelegateToAccount $gatewayObject
This would configure it for all servers in the domain.
$gateway = "gateway" # Machine where Windows Admin Center is installed
$gatewayObject = Get-ADComputer -Identity $gateway
Get-ADComputer -Filter { OperatingSystem -Like '*Windows Server*' } | Set-ADComputer -PrincipalsAllowedToDelegateToAccount $gatewayObject
This would configure it for all servers in the domain.