PowerShell cmdlets and scripts
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.psm1To get help:
Get-Help Get-SChannelServerProtocol
Get-Help Set-SChannelServerProtocolTo turn off SSL 3.0 in IIS (to protect against the POODLE attack):
Set-SChannelServerProtocol -Protocols SSL30 -Status DisabledThis requires administrative rights and a computer restart is necessary.