Skip to content

Powershell module to turn on/off TLS protocols for Windows

License

Notifications You must be signed in to change notification settings

kuan51/Manage-Tls

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Manage-Tls

Powershell module to turn on/off TLS protocols for Windows. This tool relies on True/False booleans to turn on/off the various TLS and SSL versions. Admin privileges are required as the script is making registry edits per the Microsoft docs.

True = Enable the protocol

False = Disable the protocol

Using the Module

  1. Import the module to powershell
import-module C:/path/to/Manage-Tls.psm1
  1. Run and provide either $True (enable) or $False (disable)
Manage-Tls -ssl3 $false
Manage-Tls -tls12 $true

Currently supports the following switches:

-ssl2 # SSLv2
-ssl3 # SSLv3
-tls1 # TLSv1
-tls11 # TLSv1.1
-tls12 # TLSv1.2

About

Powershell module to turn on/off TLS protocols for Windows

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published