We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was getting https 426 errors while running this module. This is due to invoke-restmethod defaulting to TLS 1.0.
You can set this by adding this line of code into your module:
#Set TLS Verson [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
The text was updated successfully, but these errors were encountered:
Worth noting that it requires restarting the Powershell window to start working again after making this change, at least it did for me.
Sorry, something went wrong.
I noticed a pull request to fix this issue.
That pull request was merged in two days ago by @potatoqualitee
No branches or pull requests
I was getting https 426 errors while running this module. This is due to invoke-restmethod defaulting to TLS 1.0.
You can set this by adding this line of code into your module:
The text was updated successfully, but these errors were encountered: