如何运行 setup.exe(vb6 setup toolkit) 并使用 C# 安装程序
我有一些启动 setup.exe 的代码(基于 vb6 安装工具包构建),
Process pr = new Process();
pr.StartInfo.FileName = @"path\to\Setup.exe";
pr.Start();
但接下来我需要做什么才能继续安装?例如,我如何按“下一步”或输入 dir 的路径?
I have some code what launch setup.exe (builded on vb6 setup toolkit)
Process pr = new Process();
pr.StartInfo.FileName = @"path\to\Setup.exe";
pr.Start();
but what i need to do next for continue install? how i can press "next" for example or put a path to dir?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 Windows 系统上的静默安装,请使用 MSI 包或 MSIX。
静默安装 (-s) 有许多参数。
使用 MSI 包编辑器(例如 ORCA),您可以编辑 MSI 包并更改其路径和默认设置。
查看 Microsoft 文档中的 msiexec:
DOCU< /a>
For a silent installation on Windows systems, use MSI Packages or MSIX.
There a many parameters with for a silent install (-s).
With a MSI package editor, for example ORCA, you can edit MSI Packages and change their paths and default settings.
Take a look at msiexec from the Microsoft documentations:
DOCU