Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unknown publisher error while executing exe

Tags:

c#

clickonce

I have deployed my windows app project but when i run it it first throws an error "Unknown publisher". How to hide this message?

like image 452
Ulhas Tuscano Avatar asked Jun 28 '11 07:06

Ulhas Tuscano


People also ask

Why does it say unknown publisher?

An unknown publisher is a software creator whose identity isn't verified by your device's operating system (such as Windows or MacOS) or web browser (like Google Chrome).

How do I unblock unknown publisher in Windows 10?

Go to the Content tab, Look under the Certificates section. Click on Publishers button. Select the Untrusted Publishers tab. Select the Publisher you wish to unblock and click the Remove button.


1 Answers

You have to digitally sign your package to prevent this type of error.

http://msdn.microsoft.com/library/ms172240.aspx.

But typically it is advised not to worry about this at the development stage of the application but only consider this at the shipping time.

If you are interested in knowing the nitty-gritty details go here

like image 131
Illuminati Avatar answered Oct 05 '22 23:10

Illuminati