How to handle manual intervention to give UI inputs while running installation via Cookbook

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

Hi @prmylavarapu

what's your end goal here?

We need the installer to support the quiet option. So I'd start there and see if you can install the app on the command line without Chef.