VS2015 Installer Projects - Adds Invalid Microsoft signature to MSIs

醉酒当歌 提交于 2019-12-24 11:42:39

问题


This Microsoft tool adds an INVALID Microsoft digital signature when you build an MSI.

Anyone know of a simple way to stop the tool from adding the digital signature? Or an easy way to remove digital signature after the build?

VS2015 Installer Projects link https://visualstudiogallery.msdn.microsoft.com/f1cc3f3e-c300-40a7-8797-c509fb8933b9

The MSI file works fine even with the bad signature. BUT, when someone tries to download the MSI with the Edge browser, it blocks the download and shows this download error message. "The signature for this file is corrupt or invalid" . With a big scary RED Error shield icon.

If you want to scare away potential users from your product or tool, this is the perfect way to do it.

Rant: Microsoft took a big bow when it made this tool available again after dropping it in 2012. Telling developers "See we do listen to you and we brought back this popular tool." Well, wouldn't you think Microsoft could assign a low level developer to maintain it and fix simple things like this. Seems to be just another toy with a broken wheel that MS tossed into the sandbox and left it there to fall apart. C'mon Microsoft, spend 10 minutes and fix this.


回答1:


To fix this you can also try to dual sign the package, instead of completing removing the digital signature. This way the warning message about the invalid signature will disappear on download and also the correct info will appear in the UAC prompts on install.

Dual signing of course requires a SHA2 certificate.

SHA 2 signatures are not recognized by OSes older than Windows 7, so if you target those too and want your signature to be visible there you need to perform dual signing.

Microsoft explaining the steps for dual signing, with more details.




回答2:


The problem appears to be that older SHA1 certificates are no longer valid after the end of 2015 and security changes that enforce it, as in this thread and the Jan 12th security update comment:

Internet Explorer shows valid certificate as "corrupt or invalid signature"

I haven't personally tried this idea here, but it looks fairly easy code to test on an MSI file to delete the certificate:

http://www.fluxbytes.com/csharp/remove-digital-signature-from-a-file-using-c/



来源:https://stackoverflow.com/questions/35391691/vs2015-installer-projects-adds-invalid-microsoft-signature-to-msis

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!