How to pass multiple option in windows package

Hi Everyone,

I want to pass two parameters in windows_package resource. I have written my recipe below.

windows_package ‘C:\Temp\WebUI\text.msi’ do
options “/q TARGETDIR=C:\Temp\merge” WEBURL=http://google.com
action :install
end

but it is not working .

Can anyone help me how can we resolve this .

Regards,
Ramadurai

You probably want the WEBURL= after the quote, not before the quote.

Nathan Clemons
DevOps Engineer
Moxie Cloud Services (MCS)

O +1.425.467.5075
M +1.360.861.6291
E nclemons@gomoxie.com
W www.gomoxie.comhttp://www.gomoxie.com/

Thank Nathan Clemons. It works for me.