I want to uninstall a software in windows using chef .While uninstalling ,there are 2 radio buttons , one for modify and other for remove .By default modify is selected , but my requirement is to select remove option.
How to do so .. ??
Can anyone help me out in this issue.
I tried doing the below method.
windows_package 'Some software' do
action :remove
end
What you see on the GUI is not necessarily the "phrase" you need. If you look at the documentation for
windows_package
, you will see that the action you want isremove
.