Ich möchte die Active Directory-Clientzertifikatauthentifizierung für einen Webserver mit DSC (Desired State Configuration) auf TRUE setzen.
Ich möchte dazu das Cmdlet xWebAdministration verwenden.
Der IIS-Pfad zum Festlegen des Werts lautet: system.webServer / security / authentication / clientCertificateMappingAuthentication
Ich habe dieses Skript bereits, aber der Wert wurde nicht richtig eingestellt:
# Client Certificate Mapping Authentication should be present
WindowsFeature ActiveDirectoryClientCertificateAuthentication
{
Name = "Web-Cert-Auth"
Ensure = "Present"
DependsOn = "[WindowsFeature]IIS"
}
# Client Certificate Mapping Authentication should be present
WindowsFeature Web-Client-Auth
{
Name = "Web-Client-Auth"
Ensure = "Present"
}
Wie kann das erreicht werden?
quelle