vars:
ansible_python_interpreter: "C:\\Python34\\python.exe"
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ImportError: No module named 'grp'
fatal: [qa-codegen01.theorchard.local]: FAILED! => {"changed": false, "failed": true, "parsed": false}
Are we limited to the amount of modules avail for windows?
The scripting language for Windows hosts is powershell, not Python.
You could probably use raw to run commands, but raw will always report changed = true so you would have to handle idempotency yourself.
Depending on what you want to achieve you might need to write a windows module or two.
Hope this helps,
Jon