Hi ansible_connection should be 'winrm' and you can set the auth mode using ansible_transport. So ultimately your vars should be;
ansible_user: Administrator > ansible_password: RandomePassword > ansible_port: 5985 > ansible_winrm_scheme: http > ansible_connection: winrm > ansible_winrm_transport: credssp > ansible_winrm_server_cert_validation: ignore One thing I would recommend is to use HTTPS instead of just HTTP. If you used the ConfigureRemotingForAnsible.ps1 script to set up WinRM you can just change ansible_port to 5986 and remove ansible_winrm_scheme to do this. Thanks Jordan -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/955469d7-e016-4ba1-b028-23052e7a0fd2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
