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
We are using Private CA w/o revocation list configured and it seems that WInRM connection fails with:
Connection reset by peer - SSL_connect
Windows Remoting allows to use "skipRevocationcheck" parameter in case if CA is configured such a way.
Here are some resources for both Powershell and Naitve WinRM:
PowerShell
NewPSSessionOptionCommand.SkipRevocationCheck Property https://msdn.microsoft.com/en-us/library/microsoft.powershell.commands.newpssessionoptioncommand.skiprevocationcheck%28v=vs.85%29.aspx
"SSL certificate could not be checked for revocation" error when you connect through Windows Remote PowerShell in Office 365 dedicated https://support.microsoft.com/en-us/kb/2792168
$sessionOption = New-PSSessionOption -SkipRevocationCheck
WinRM
Demystifying the WinRM command http://en.community.dell.com/techcenter/systems-management/w/wiki/5020.demystifying-the-winrm-command
winrm id -r:WIN-34V9V9AHPK3.qual.lab -usessl -skipRevocationcheck
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We are using Private CA w/o revocation list configured and it seems that WInRM connection fails with:
Connection reset by peer - SSL_connect
Windows Remoting allows to use "skipRevocationcheck" parameter in case if CA is configured such a way.
Here are some resources for both Powershell and Naitve WinRM:
PowerShell
NewPSSessionOptionCommand.SkipRevocationCheck Property
https://msdn.microsoft.com/en-us/library/microsoft.powershell.commands.newpssessionoptioncommand.skiprevocationcheck%28v=vs.85%29.aspx
"SSL certificate could not be checked for revocation" error when you connect through Windows Remote PowerShell in Office 365 dedicated
https://support.microsoft.com/en-us/kb/2792168
$sessionOption = New-PSSessionOption -SkipRevocationCheck
WinRM
Demystifying the WinRM command
http://en.community.dell.com/techcenter/systems-management/w/wiki/5020.demystifying-the-winrm-command
winrm id -r:WIN-34V9V9AHPK3.qual.lab -usessl -skipRevocationcheck
The text was updated successfully, but these errors were encountered: