如何在 windows 中自动安装 Websphere MQ?
How to automate Websphere MQ installation in windows?
过去几周我一直在进行 MQ 安装。现在我需要使用 chef 或 powershell 脚本自动安装 MQ 7.5。 unix 的 MQ 安装 我通过 chef 得到了这个 URL https://github.com/ibm-messaging/mq-chef。对于 windows,我不确定如何实现自动化?请指导我或给我发送任何文章来做到这一点。提前致谢!
IBM MQ 7.5 知识中心页面“Advanced installation using msiexec”记录了如何执行自动安装。
Example
Here is an example of a typical msiexec command. All parameters,
separated by one or more spaces, must be typed on the same line as the
msiexec call.
msiexec
/i path\MSI\IBM WebSphere MQ.msi
/l*v c:\install.log
/q
TRANSFORMS=1033.mst
AGREETOLICENSE=yes
ADDLOCAL=Server
过去几周我一直在进行 MQ 安装。现在我需要使用 chef 或 powershell 脚本自动安装 MQ 7.5。 unix 的 MQ 安装 我通过 chef 得到了这个 URL https://github.com/ibm-messaging/mq-chef。对于 windows,我不确定如何实现自动化?请指导我或给我发送任何文章来做到这一点。提前致谢!
IBM MQ 7.5 知识中心页面“Advanced installation using msiexec”记录了如何执行自动安装。
Example
Here is an example of a typical msiexec command. All parameters, separated by one or more spaces, must be typed on the same line as the msiexec call.
msiexec /i path\MSI\IBM WebSphere MQ.msi /l*v c:\install.log /q TRANSFORMS=1033.mst AGREETOLICENSE=yes ADDLOCAL=Server