I am trying to write a playbook which will install windows software(exe files) on windows client machine from the control machine (software is on control machine)
I want to either copy the software onto Windows machine and then install using ansible or directly install on the windows machine from the control.
Please help, i tried to search in google for help but no luck,
Did yo try using the win_copy module to copy across the package and installing it via win_msi module or your own script to install it issued via the script module.
win_copy is a bad idea. WinRM is simply not built for transferring binary files. The recommendation is to have the file accessible on a UNC path/url and then use win_package to get it onto the windows machine.
win_copy does not work as the file size is around 300MB. I need to deploy the package on to number of windows clients and install it. Is win_package released module, i couldnt find it.
Another way i tried was to use win_get_url to download the package, but it looks like each client calls ftp to download causing overhead.
I think you are most likely to be successful if you set up a web server on your ansible controller and then use win_get_url to fetch and then run the .exe to install (or use win_package as suggested above as I believe this will retrieve from http and install).
Bear in mind you will have almost the same amount of traffic if you push from your ansible controller to each of your windows hosts as you would if you asked each of your clients to fetch from your controller. You would still be transferring roughly the same amount of data regardless of whether you did this via http, cifs (windows file sharing) or another protocol.
You could even use something like varnish to cache the http response into RAM to speed up subsequent requests for the same file, but probably not worth it if you are only have a small number of windows hosts to manage.
To overcome this, I wrote a powershell script which will call “Get-SCPFile” cmdlet by Posh-SSH and was able to successfully copy the file from controlling node to windows clients.
Is win_package module going to be with ansible version 1.9.2 and anyone when stable version 1.9.2 is going to be released
Does win_package do a copy similar to win_copy? It would be good if we have a win module which will copy binary files with bigger size from controlling machine to clients. This will be easier for people who do not want to setup any ftp.