I have seen several examples of installing windows apps using the Chef Git resource. I have two questions about this:
What is the best practice for installing windows applications that are not made available in Git and don't have existing cookbooks in the Chef community?
e.g. download and install a Windows installer hosted @ a static URL? I suppose I could just host it in a git repo and pull it down, but wondering if there is a more elegant way to pull it directly from the providers site similar to wget?
How does one run the windows installer once downloaded, and provide the parameters requested during the install routine? e.g. what is the windows no compile equivalent of :run, "bash[compile_app_name]", and how does one include the parameters required by the install utility (install dir, etc.) in the chef Recipe?