Skip to content

Get-TLSConfig

SYNOPSIS

Retrieves the current TLS configuration or lists available TLS versions.

SYNTAX

Default (Default)

Get-TLSConfig [<CommonParameters>]

ListAvailable

Get-TLSConfig [-ListAvailable] [<CommonParameters>]

ALIASES

This cmdlet has the following aliases, {{Insert list of aliases}}

DESCRIPTION

This function returns the currently configured TLS version used by .NET applications. If the -ListAvailable parameter is specified, it lists all available TLS versions supported.

EXAMPLES

EXAMPLE 1

Get-TLSConfig

Returns the currently configured TLS version.

EXAMPLE 2

Get-TLSConfig -ListAvailable

Lists all available TLS versions that can be configured.

PARAMETERS

-ListAvailable

List available TLS configurations

Type: System.Management.Automation.SwitchParameter
DefaultValue: False
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: ListAvailable
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

System.Net.SecurityProtocolType

{{ Fill in the Description }}

System.Array

{{ Fill in the Description }}

NOTES