ContributionsMost RecentMost LikesSolutionsSoapUI installation using Ansible on 500 windows hosts Hi All, I'm planning to install SoapUI on my 500 servers using Ansible but when I execute my playbook it got stuck and it seems it is waiting for some input. I'm passing argument in the below manner, please advise this it this is not correct. - name: Install SoapUI win_package: path: '{{ tempdir.path }}\soapui.exe' arguments: '/S /D={{ soapui_install_dir }}' creates_path: '{{ soapui_install_dir }}' Any help is highly appreciated. regards Vikrant PS: Here are some more details: soapui_version: '32-5.5.0' soapui_download_url: '{{ artifactory_url.us }}/soapui/SoapUI-x{{ soapui_version }}.exe' soapui_install_dir: 'C:\Program Files (x86)\SmartBear\SoapUI-5.5.0'