PowerShell Logo Small

Disable-TlsSessionTicketKey



This is the built-in help made by Microsoft for the command 'Disable-TlsSessionTicketKey', in PowerShell version 5 - as retrieved from Windows version 'Microsoft Windows Server 2012 R2 Standard' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Disables a TLS session ticket key.

SYNTAX


Disable-TlsSessionTicketKey [-ServiceAccountName] <NTAccount> [-Confirm] [-WhatIf] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Disable-TlsSessionTicketKey cmdlet disables an administrator managed Transport Layer Security (TLS) session ticket key for the service account. The cmdlet disables the
key for the TLS session by deleting the key and the corresponding rule that uses the key.


When you disable a TLS session ticket key for the service account, the service account cannot decrypt existing TLS session tickets. Disabling the TLS session ticket key can
affect the performance of the TLS server. The TLS server cannot create new session tickets and must negotiate session information between the client and the server every
time the client connects to the TLS server.


TLS creates a session ticket by using the TLS Session Resumption without Server-Side State mechanism. For more information, see New-TlsSessionTicketKey or type Get-Help
New-TlsSessionTicketKey.



<

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=294408
Enable-TlsSessionTicketKey
New-TlsSessionTicketKey
Export-TlsSessionTicketKey

REMARKS

<

Examples


Example 1: Disable a TLS session ticket key.

PS C:\> Disable-TlsSessionTicketKey -ServiceAccountName "NetworkService"



This command disables the TLS session ticket key for the service account named NetworkService.