mark Asked: 2018-05-23 16:47:39 +0800 CST2018-05-23 16:47:39 +0800 CST 2018-05-23 16:47:39 +0800 CST Is it possible to manage Server Manager Properties through PowerShell DSC? 772 For example: Server Manager → Manage → Server Manager Properties "Do not Start manager automatically at logon" Server Manager → Local Server → IE Enhanced Security Configuration → Off windows 1 Answers Voted Peter Hahndorf 2018-05-25T22:47:56+08:002018-05-25T22:47:56+08:00 To change the Do not Start manager automatically at logon setting, you can set a registry value (DWORD): Key: HKLM:\SOFTWARE\Microsoft\ServerManager Value: DoNotOpenServerManagerAtLogon a value of 1, disabled the startup after logon. I just checked my old Server-Install scripts and found this for IE Enhanced Security Configuration: Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}" -Name “IsInstalled” -Value 0 Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A8-37EF-4b3f-8CFC-4F3A74704073}" -Name “IsInstalled” -Value 0 you need to translate it into DSC syntax.
To change the
Do not Start manager automatically at logon
setting, you can set a registry value (DWORD):a value of 1, disabled the startup after logon.
I just checked my old Server-Install scripts and found this for IE Enhanced Security Configuration:
you need to translate it into DSC syntax.