ruby - Silent Install specific application version using Chef -


i able install array of different programs silently. unable install conemu normal .exe link (which used in source " " code below) break silent install asking user version want download.

 #install conemu  windows_package 'conemu'  installer_type :custom  retries 2  options " /s /d=d:\\home\\apps\\conemu"  source  ""  action :install end 

i unsure if code can inserted within options code. version options prompt appears destination correctly set "d:\home\apps\conemu". version choices 170819x64 or 170819x86.

if has suggestions or experience please let me know. thank you!

when using custom installer type, chef can run program , hope best. it's make sure give options needed ensure headless operation. double check if offer msi instead, or if nuget package exists somewhere.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -