en-US/about_WSManServiceConfig.help.txt
|
.NAME
WSManServiceConfig .SYNOPSIS The WSManServiceConfig DSC resource is used to configure WS-Man service specific settings. .DESCRIPTION This resource is used configure WS-Man Service settings. .PARAMETER RootSDDL Write - System.String Specifies the security descriptor that controls remote access to the listener. .PARAMETER MaxConnections Write - Nullable[System.Uint32] Specifies the maximum number of active requests that the service can process simultaneously. .PARAMETER MaxConcurrentOperationsPerUser Write - Nullable[System.Uint32] Specifies the maximum number of concurrent operations that any user can remotely open on the same system. .PARAMETER EnumerationTimeoutMS Write - Nullable[System.Uint32] Specifies the idle time-out in milliseconds between Pull messages. .PARAMETER MaxPacketRetrievalTimeSeconds Write - Nullable[System.Uint32] Specifies the maximum length of time, in seconds, the WinRM service takes to retrieve a packet. .PARAMETER AllowUnencrypted Write - Nullable[System.Boolean] Allows the client computer to request unencrypted traffic. .PARAMETER AuthBasic Write - Nullable[System.Boolean] Allows the WinRM service to use Basic authentication. .PARAMETER AuthKerberos Write - Nullable[System.Boolean] Allows the WinRM service to use Kerberos authentication. .PARAMETER AuthNegotiate Write - Nullable[System.Boolean] Allows the WinRM service to use Negotiate authentication. .PARAMETER AuthCertificate Write - Nullable[System.Boolean] Allows the WinRM service to use client certificate-based authentication. .PARAMETER AuthCredSSP Write - Nullable[System.Boolean] Allows the WinRM service to use Credential Security Support Provider (CredSSP) authentication. .PARAMETER AuthCbtHardeningLevel Write - WSManAuthCbtHardeningLevel Specifies the hardening level for Channel Binding Tokens (CBT) used in authentication. .PARAMETER EnableCompatibilityHttpListener Write - Nullable[System.Boolean] Specifies whether the compatibility HTTP listener is enabled. .PARAMETER EnableCompatibilityHttpsListener Write - Nullable[System.Boolean] Specifies whether the compatibility HTTPS listener is enabled. .EXAMPLE 1 Enable compatibility HTTP and HTTPS listeners, set maximum connections to 100, allow CredSSP (not recommended) and allow unecrypted WS-Man Sessions (not recommended). Configuration WSManServiceConfig_Config { Import-DscResource -Module WSManDsc Node localhost { WSManServiceConfig ServiceConfig { IsSingleInstance = 'Yes' MaxConnections = 100 AllowUnencrypted = $false AuthCredSSP = $true EnableCompatibilityHttpListener = $true EnableCompatibilityHttpsListener = $true } # End of WSManServiceConfig Resource } # End of Node } # End of Configuration |