1. Download and install Dell racadm
2. Upload key
racadm -r idrac.fqdn.tpl -i sslkeyupload -t 1 -f "C:\File\To\domain.key"
3. Upload certificate
racadm -r idrac.fqdn.tpl -i sslcertupload -t 1 -f "C:\File\To\domain.crt"
4. Restart idrac
Posted: Januar 6th, 2020 under Dell.
Comments: none
1. Open group policy editor
gpedit
2. Computer Configuration -> Administrative Templates -> All Settings -> Configure Automatic Updates
Posted: Oktober 1st, 2019 under Windows, Windows Server.
Comments: none
1. Open cmd as Administrator Install pfx certificate to LocalMachine Personal
certutil.exe -importPFX "C:\Users\Administrator\Desktop\gerst.pfx" noExport
2. Open mmc and add Snapin certificate local computer
3. On certificate -> right click Properties -> All Tasks -> Manage Private Keys
4. Add NetworkService with ReadOnly
5. Open powershell as Administrator and add rdp ssl thumbprint
$tp = (ls Cert:\LocalMachine\my | WHERE {$_.Subject -match "gerst-it" } | Select -First 1).Thumbprint
Write-Output "Thumbprint: $tp"
& wmic /namespace:\\root\CIMV2\TerminalServices PATH Win32_TSGeneralSetting Set SSLCertificateSHA1Hash="$tp"
Posted: Oktober 1st, 2019 under Windows, Windows Server.
Comments: none