使用产品密钥条件创建 MSI
我正在使用 Visual Studio 2010 制作 MSI。
现在,我想使用产品密钥制作安装程序。
首先,对于所有安装程序来说,它只能是一把钥匙。
我可以用标准工具来做吗?
编辑:安装过程中的用户必须输入该密钥才能通过。
I'm making MSI with visual studio 2010.
Now, i want to make installer with Prodcut Key.
For begining it can be only one key for all installers.
Can i do it with std tools, or not?
Edit: and user in installation proccess must enter that key, to pass.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用Visual Studio 安装程序部署。
客户信息用户界面对话框和SerialNumberTemplate 属性 来完成此任务。
另请参阅 msdn。
You can use Visual Studio Installer Deployment.
Customer Information User Interface Dialog Box and SerialNumberTemplate Property to accomplish this task.
Also see a similar question asked in msdn.
这是补充说明。
请按照以下步骤添加“自定义信息”对话框并指定
SerialNumberTemplate
属性:在解决方案资源管理器中,右键单击安装项目。
在上下文菜单中,单击查看 ->用于打开
用户界面编辑器
的用户界面
右键单击“开始”或“进度”节点 ->点击添加对话框->选择
自定义信息
在“属性”面板中配置自定义信息。
Microsoft Visual Studio 提供了许多预定义的对话框,可用于在安装过程中显示信息或收集输入。请检查安装用户界面对话框。
Here is additional explanation.
Please follow these steps to add Custom Information dialog and specify
SerialNumberTemplate
property:In Solution Explorer, right-click the Setup project.
In context menu, click View -> User Interface to open
User Interface Editor
Right-click the Start or Progress node -> click Add Dialog -> select
Custom Information
Configure Custom Information in Properties panel.
Microsoft Visual Studio provides a number of predefined dialog boxes that you can use to display information or gather input during an installation. Please check Installation User Interface Dialog Boxes.