JPJedi
JPJedi

Reputation: 1508

Unknown Publisher when I install application I wrote?

When I install my application on my computer I get a warning that the publisher is not verified. How can I change that? or do I need to worry about that when I distribute my application?

The application is written in Visual Studio 2008 with VB.NET

Upvotes: 11

Views: 23651

Answers (2)

Adam Butler
Adam Butler

Reputation: 3037

You can use the signtool command line program to sign exe files or msi files. I believe you might need a certificate from an official authority to change the UAC messages.

Upvotes: 3

M.A. Hanin
M.A. Hanin

Reputation: 8074

On the Project Properties window, go to the Signing tab. Create/Import certificates and sign the manifests and/or assembly.

You can find more information here, with helpful links at the "See Also" section.

Upvotes: 6

Related Questions