Hello, I am trying to install Chart Director which is an .exe file with ansible. I am trying to use win_package to do the install as I have already checked for the registries in the uninstall directory (HKLM:Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall) after doing a manual install. Heres my playbook:
name: install
win_package:
name: install chartdir
path: C:\Windows\setup_4.0.exe
product_id: ‘{00065AC0-1AEC-4AB2-B5C3-79FBB228A9A1}’ #taken from the HKML path above after the manual install
state: present
After I run the playbook, my playbook just sits there and no information is spewed out with -vvvv.
Chart Director version im trying to install is 4.0.
Manually, all the InstallShield wizard is ‘Next’, ‘Next’, 'Next with no other user input. Any help would be appreciated
You would need to find out what the install arguments for a silent install are. I believe InstallShield uses ‘-s’ but you would need to determine if that is the case with this particular ex. Once you have found out what the silent argument is add it to your task like so
Turns out the application I am trying to install does not have any silent options. Returns nothing when executed with .\setup-4.0.exe /? or .\setup-4.0.exe /h /help
I think it is reasonable to ask the vendor to provide a silent installation option too. Point out that it is in their interest too - if you can automate installation, then doing automated testing against all supported versions of an operating system is easier.