You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2022. It is now read-only.
The Test-WSMan command used to check if the bastion can connect to the node via WinRM is hard coded for -Authentication default. If the WinRM config has basic auth set to false, this test will fail and cause the script to not run for that node
Checking the config on the dest node winrm get winrm/config -r:machinename
The Test-WSMan command used to check if the bastion can connect to the node via WinRM is hard coded for
-Authentication default
. If the WinRM config has basic auth set to false, this test will fail and cause the script to not run for that nodeChecking the config on the dest node
winrm get winrm/config -r:machinename
The auth config looks like this
As you can see, the basic attribute is set to false, preventing
Test-WSMan
from being able to connect.Solution could be to allow a parameter to set authentication and then default to "default" if none specified.
The text was updated successfully, but these errors were encountered: