-
Check PowerShell Security Protocol Type
To check whic List the Security Protocol configuration [Net.ServicePointManager]::SecurityProtocol Get the BaseType of Net.SecurityProtocolType [Net.SecurityProtocolType] # Get the PowerShell supported TLS versions [enum]::GetNames([Net.SecurityProtocolType]) # Force PowerShell to use TLS 1.2 [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12 Force PowerShell to use TLS 1.2 By default, PowerShell uses TLS 1.0. Because SEP (Symantec Endpoint Protection) uses TLS 1.2, you will…
-
Check Execution Policy
Read more About Execution Policies All PowerShell execution policies: Restricted – No scripts can be run. Windows PowerShell can be used only in interactive mode. AllSigned – Only scripts that are signed by a trusted publisher can be run. RemoteSigned – Downloaded scripts must be signed by a trusted publisher before they can be run.…
-
Check PowerShell Engine Version
How to check which version of PowerShell? These 2 commands below can show you which version of PowerShell Engine is running on your machine. $psversiontable get-host
-
How to Pull Request (PR)
Recently I came across through Facebook’s Open Source Immersion program. The goal of this initiative is to provide developers with practical education and experience contributing to Open Source projects in preparation for our annual Developer Circles Community Challenge later this year. Over one month starting July 15, 2020 at 12:00 AM PST, participants in the…




