Management Node running:
Ansible 2.1
Centos 7
Remote Node running:
Windows 7
Powershell 3
The playbook below appears to run without errors but nothing happens on the remote node.
---
- hosts: windows
tasks:
- name: DiceTis Installer
win_msi: path="C:\\Users\\ads-6999\\Desktop\\SetupADS800DiceTIS.msi" create="C\\Program Files\\SetupADS800DiceTIS\\ADS800DiceTIS.exe" state=present
As I understand the -sudo flag has been deprecated to the -become flag which I tried to use as shown below
---
- hosts: windows
tasks:
- name: DiceTis Installer
become: yes
become_method: sudo
win_msi: path="C:\\Users\\ads-6999\\Desktop\\SetupADS800DiceTIS.msi" create="C\\Program Files\\SetupADS800DiceTIS\\ADS800DiceTIS.exe" state=present
but then I get the powershell error "The term sudo is not recognized as the name of a cmdlet, function or operable program"
Any ideas?