Following:
[win]
172.16.2.5
172.16.2.6
[win:vars]
ansible_user=LocalUsername
ansible_password=Password
ansible_connection=winrm
ansible_winrm_transport=basic
ansible_winrm_server_cert_validation=ignore
Following:
$ ansible [host_group_name_in_inventory_file] -i hosts -m win_ping
$ ansible win -i inventory -m win_ping
$ ansible win -i inventory -m setup
$ ansible win -i inventory -m raw -a "dir"
$ ansible win -i inventory -m win_service -a "name=spooler"
$ ansible win -i inventory -m win_service -a "name=spooler state=stopped"
$ ansible win -i inventory -m win_service -a "name=spooler"
$ ansible win -i inventory -m win_feature -a "name=Telnet-Client state=present"