How to sign manually an exe file with developer licence for Windows 8 RT

风格不统一 提交于 2019-12-21 12:15:28

问题


I make an exe file for Windows 8 RT. But when I want to run, show an error message:

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

I get a developer licence for windows 8 RT. With this license visual studio 2012 can remotely deploy and run metro application in my surface.

But I want to sign manually my exe file with this certificate using signtool.exe:

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

My problem is that I don't know the "CertStoreName" and "subject name" for my developer licence. How can I get these names.


回答1:


The developer license just allows you to deploy and run Windows Store apps on Windows RT, while such apps are still being developed. If you are building a Store app, you should not worry about signing your binaries yourself. The Store signs all the contents of your app package before it is distributed to the end-users.

Desktop apps is a different story however. Building desktop apps on Windows RT (ARM) is not supported.



来源:https://stackoverflow.com/questions/14018337/how-to-sign-manually-an-exe-file-with-developer-licence-for-windows-8-rt

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