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

2016-04-08 Thread Dimitri Yioulos
Once again, I'd suggest trying the raw command without quotes: raw: c:\temp\vlc-2.2.1-win32.exe /S On Monday, September 28, 2015 at 8:32:49 AM UTC-4, Jugal Porwal wrote: > > Hi, > > I want to run a .exe on windows command prompt from my centos control > node. The command is as follows : > >

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

2016-01-19 Thread Balaji Chandrababu
Hi Dimitri, I'm trying to do pretty much the same with our own installer. This is what i have got in the playbook. Example: - name: Install ZoneSense and Niva latest version raw: 'C:\Temp\ZoneSense 16.0.0.343.exe /S' I tried other options as well: raw: '"C:\Temp\ZoneSense 16.0.0.343.exe" /S'

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

2015-09-28 Thread Dimitri Yioulos
Try the raw command without any quotes, as in raw: D:\builds\router\bin\wrapper.exe. The following worked for me, and installed vlc on a test win2k8 box: --- - hosts: all gather_facts: false tasks: - name: installing app ... raw: c:\temp\vlc-2.2.1-win32.exe /S On Monday,