Can the resulting command line be determined after running an .msi installer?

后端 未结 2 1149
你的背包
你的背包 2020-11-30 15:41

If I want a silent install, is there any simple way of running the installer, selecting the desired options and then determining the msiexec options/switches necessary for a

2条回答
  •  一向
    一向 (楼主)
    2020-11-30 16:30

    Yes, it sounds like you need to create a response transform (MST). A lot of the tools linked to above are premium tools (not worth paying for a response transform!!) but I used this a while ago (this tool is free) and it seemed to work well:

    http://www.jontylovell.net/index.php?page=10

    Once you create your response transform with your installation configuration, you then need to specify the transform on the command line with:

    MSIEXEC /I {Path To MSI} TRANSFORMS={Path the response MST} /qn
    

提交回复
热议问题