Re: [ansible-project] Run .exe on windows command prompt

2015-09-28 Thread Chris Church
It appears as though the backslashes are escaping the character that follows (which doesn't quite make sense since your example uses a single-quoted string). What version of ansible are you using? You could try:raw: "D:\\builds\\router\\bin\\wrapper.exe" On Mon, Sep 28, 2015 at 4:27 AM,

[ansible-project] Run .exe on windows command prompt

2015-09-28 Thread Jugal Porwal
Hi, I want to run a .exe on windows command prompt from my centos control node. The command is as follows : wrapper.exe -t wrapper.conf Initially i tried to atleast run the .exe without any args using my following playbook : --- - hosts: windows tasks: - name: Register as a service