如何创建Windows应用程序安装/设置选择组件窗口?
我正在使用 Visual studio 2008 安装项目创建一个 Windows 应用程序安装项目。此安装程序将包含以下步骤:
- 初始屏幕
- 选择安装文件夹/目录
- 数据库配置
- 选择组件
我无法找到在安装程序中创建此类安装窗口的方法。你能帮我找到解决方案吗?
I am creating a windows application setup project using Visual studio 2008 setup project. This setup will have following steps:
- Splash screen
- Select Installation folder/directory
- Database configuration
- Select Components
I am having trouble finding a way to create such installation window in setup. could you please help me to find a solution for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与您在那里找到的内容相比,Visual Studio 创建安装/设置文件的例程相当弱。就我个人而言,我使用一个名为 Inno Setup 的程序。它是一个非常强大的脚本程序,允许您完全自定义安装过程。您可能需要花一点时间学习它所使用的脚本语言的基础知识,但无论您花多少时间了解该语言,以使用安装实用程序为当前和未来的程序创建完整的安装文件,都是值得的。
Visual Studio's routine for creating install/setup files is fairly weak compared to what you can find out there. Personally, I use a program called Inno Setup. It's an extremely powerful scripting program that allows you to completely customize the installation process. You may have to spend a little bit of time learning the basics of the scripting language it uses but will be well worth whatever time you may spend understanding the language to use the setup utility to create complete installation files for your current and future programs.