Forum Discussion
Agos82
Aug 21, 2025Copper Contributor
WAC not login
 Hi, i'm trying to use and understanding WAC, but i did't have fortune to installing.  I try to install Windows Server core 2025 on a physical server and i install with right power sheell command WAC ...
gavinstrawbridge
Aug 27, 2025Copper Contributor
You can install WAC via PowerShell:
On Server Core, you can install WAC via PowerShell like:
Install-Module -Name WindowsAdminCenter -Force 
Install-WindowsFeature Windows-Admin-CenterMake sure the WAC service is actually running:
Get-Service -Name WindowsAdminCenterMake sure it’s listening on the proper port (default is 443):
netstat -an | findstr 443Hope this helps