Windows Admin Center certificate replacement
On GUI
- Open up Control Panel > Programs and Features
- Click on Windows Admin Center > Change
- Click Next and Use an SSL Certificate installed on this computer
- Type in the thumbprint of the certificate (can be found in certlm.msc)
On Server Core
Run the following:
Powershell
$WAC_Online = "http://aka.ms/WACDownload"
$WAC_Installer = "C:\windows\Temp\wac.msi"
$Port = 443
Invoke-WebRequest -Uri $WAC_Online -OutFile $WAC_Installer
msiexec /i $WAC_Installer SME_PORT=$Port SSL_CERTIFICATE_OPTION=generateAfter you've ran the above follow the GUI guide