Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 343 Bytes

File metadata and controls

5 lines (4 loc) · 343 Bytes

If running in non-admin session, enable PowerShell scripts with command:

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass -Force

Enable TLS 1.2

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12