Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 699 Bytes

File metadata and controls

30 lines (20 loc) · 699 Bytes

PowerShell

PowerShell cmdlets and scripts

SChannelServerProtocol

Allows you to get and set the server status of the secure channel protocols (SSL and TLS in IIS).

To install the module execute the following command in PowerShell:

Import-Module .\SChannelServerProtocol.psm1

To get help:

Get-Help Get-SChannelServerProtocol
Get-Help Set-SChannelServerProtocol

To turn off SSL 3.0 in IIS (to protect against the POODLE attack):

Set-SChannelServerProtocol -Protocols SSL30 -Status Disabled

This requires administrative rights and a computer restart is necessary.