Hi, I am execution an .exe file on Windows Server2019 Azure VM using chef cook book to install application.. I am using windows_package resource in my cook book.
But, once the installation is started, it needs some user inputs to click select the option by clicking on radio button, click next button on the UI. How to handle this via Chef. Even i tried with option /q but did not work out.
Any clue.
Here is my code in my recipe.
windows_package 'setup_file' do
source '<path\setup_file.exe'
options '/q'
action :install
end