DSCResources/MSFT_AdfsCertificate/en-US/about_AdfsCertificate.help.txt
.NAME
AdfsCertificate .DESCRIPTION The AdfsCertificate Dsc resource manages certificate that AD FS uses to sign, decrypt, or secure communications. .PARAMETER CertificateType Key - String Allowed values: Service-Communications, Token-Decrypting, Token-Signing Specifies the certificate type (that is, how the Federation Service uses the certificate). .PARAMETER Thumbprint Required - String Specifies the thumbprint of the certificate to use. .EXAMPLE 1 This configuration will set the primary token-signing certificate in Active Directory Federation Services (AD FS) to the certificate with the specified thumbprint. Configuration AdfsCertificate_Config { Import-DscResource -ModuleName AdfsDsc Node localhost { AdfsCertificate Certificates { CertificateType = 'Token-Signing' Thumbprint = 'fedd995b45e633d4ef30fcbc8f3a48b627e9a28b' } } } |