UAC提示显示msi的临时随机程序名称,能否显示正确的名称?
我正在为 Windows 构建 MSI 安装程序并使用 Signtool 对该安装程序进行签名。当我运行 .msi 进行测试时,会出现 UAC(用户帐户控制)提示,询问我是否允许继续安装。这很好,但提示显示了许多字段,并且对于“程序名称”字段,它显示类似“403b3.msi”的内容。这不是我正在运行的 msi 的名称。
如何才能显示正确的程序名称?
I'm building an MSI installer for windows and sign the installer using signtool. When I run the .msi to test it, the UAC (User Account Control) prompt shows up to ask me if I want to allow the installation to proceed. That's fine, but the prompt shows a number of fields, and for the Program Name field it displays something like "403b3.msi". This is not the name of the msi I'm running.
How can I get the correct Program Name to be displayed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
执行signtool 时,使用/d 命令行参数和所需的程序名称来对msi 进行签名。
Windows 安装程序似乎创建了 msi 文件的临时副本,并在运行之前为其分配了一个生成的名称。如果您不将 /d 与 Signtool 一起使用,您会看到临时文件名,这对您的用户来说不是很有用。
Use the /d command line argument with the required program name when executing signtool to sign the msi.
It appears that the windows installer creates a temporary copy of the msi file and assigns it a generated name before running it. If you don't use /d with signtool, you get to see the temporary filename which isn't very useful for your users.
这是@Scott-langham 评论的应用版本。
这直接来自 Visual Studio 安装程序项目的 PostBuildEvent - VDPROJ 文件
this is an applied version of @Scott-langham's comment.
this was directly from the PostBuildEvent of a visual studio installer project - VDPROJ file