Ansible/playbook/windows/getProductInfo.yml
James Tombleson d43d21157c windows updates can be parsed
Figured out how to get the returned values back.  Getting into choco now.
2019-04-08 08:21:28 -07:00

12 lines
157 B
YAML

- name: Get Windows info
hosts: windows
tasks:
- name: get stuff
win_product_facts:
register: output
- debug: msg="{{ output }}"