如何手动签署与开发者许可的exe文件为Windows 8 RT(How to sign manual

2019-08-04 14:54发布

我做的Windows 8 RT一个exe文件。 但是当我要运行,显示错误信息:

"Windows cannot verify the digital signature for this file. ..."

获得Windows 8 RT开发人员许可证 。 使用此许可证的Visual Studio 2012可以远程部署和我表面上运行Metro应用。

但我想手动登录使用signtool.exe此证书我的exe文件:

signtool.exe sign -s CertStoreName -n "subject name" C:\mytest.exe

我的问题是,我不知道我的开发人员许可证“CertStoreName”“主题名称”。 我怎样才能获得这些名称。

Answer 1:

开发人员许可证只允许您部署和运行在Windows RT的Windows Store应用程序,而这样的应用程序仍在开发中。 如果你正在建设一个商店的应用程序,你不应该担心自己签名的二进制文件。 该商店被分发给最终用户之前签署您的应用程序包中的所有内容。

桌面应用程序是一个不同的故事。然而。 不支持Windows RT(ARM)大厦的桌面应用程序。



文章来源: How to sign manually an exe file with developer licence for Windows 8 RT