在开始安装之前将所有文件解压到一个文件夹中
我们正在创建一个设置。因为我们想要将所有文件提取到一个文件夹中,然后我们想要一个接一个地安装它。有什么方法可以实现这一点吗?
在安装期间,我们希望向最终用户列出要执行的步骤,就像 SQL 安装期间列出的那样。并强调目前正在进行的过程。目前我们正在使用Windows安装程序的表单设计,它会在执行的每个步骤中从一种表单跳到另一种表单,而不显示将要执行的步骤。
谢谢, 帕拉梅斯瓦里
We are creating a setup. In that we want to extract all files to a folder and then we want to install it one after the other. Is there any way to carry this out?
During Installation we want to list the steps to be executed, to the end users, like listed during SQL installation. And highlight the process presently carried out. At present we are using Windows installer's Form design which skips from one form to other for each step carried without displaying the steps going to carry.
Thanks,
Parameswari
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文件提取和安装由 MSI 包的 Windows Installer 自动处理。你不需要做任何特别的事情。
关于安装步骤,这通常是通过自定义 UI 完成的。 Visual Studio 不支持它,但其他安装创作工具提供了多个可能适合您需求的 UI 主题。
The file extraction and installation is handled automatically by Windows Installer for MSI packages. You don't need to do anything special.
Regarding the installation steps, this is usually done through a custom UI. It's not supported by Visual Studio, but other setup authoring tools offer multiple UI themes that may suit your needs.