Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6192765
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:00:01+00:00 2026-05-24T03:00:01+00:00

I have created the setup of a Windows Forms application. After installing this setup

  • 0

I have created the setup of a Windows Forms application. After installing this setup in Windows 7, it displays something like this:

Name: my application.exe  
Publisher: unknown publisher  
Type: application  
From: my application.exe  

I want to set the publisher name. How do I set the publisher name?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:00:02+00:00Added an answer on May 24, 2026 at 3:00 am

    You need to digitally sign the output code. I can start you off with the article Signing and Checking Code with Authenticode.

    The whole purpose of this is to guarantee your code has not been tampered with. If you purchase a code signing certificate from one of the certificate authorities, you can prevent the “do you trust this” window from appearing at all.

    It’s not a simple task to set up, but it can be performed with a script once it’s up and going.
    You won’t find a simple, quick-fix answer.

    Here’s a cut and paste of the most relevant sections. You may need to read further to get exactly what you want.


    MakeCert

    Use the MakeCert test program to generate a test X.509 certificate. MakeCert performs the following tasks:

    1. Creates a public/private key pair for digital signatures and associates it with a name that you choose.
    2. Associates the key pair with a publisher’s name that you choose.
    3. Creates an X.509 certificate , signed by the test root key or one you specify, that binds your name to the public part of the key pair. The certificate is output to a file, a system certificate store, or both.

    MakeCert Internet Explorer 3.02 UPD Example

    The following is an example that creates a certificate using the Microsoft Internet Explorer 3.02 UPD options:

    MakeCert -k:c:\KeyStore\MyKey.pvk -n:CN=MySoftwareCompany Cert.cer
    

    In this example, a certificate file called Cert.cer is created. The public part of the key pair called MyKey is bound to the publisher, MySoftwareCompany.

    Cert2SPC

    After you have generated a certificate, you can create an software publishing certificate with the Cert2SPC program. This program wraps multiple X.509 certificates into a PKCS #7 signed-data object. Note that this program is for test purposes only. A valid software publishing certificate is obtained from a certificate authority.
    Here is an example:

    Cert2SPC MyCert.cer MyCert.spc
    

    This wraps an X.509 certificate, MyCert.cer into a PKCS #7 software publishing certificate called MyCert.spc.

    SignCode

    The final step is to actually sign a file using the SignCode program. This program will:

    1. Create a Cryptographic Digest of the file.
    2. Sign the digest with your private key.
    3. Copy the X.509 certificates from the software publishing certificate into
      a new PKCS #7 signed-data object. The PKCS #7 object contains the serial
      numbers and issuers of the certificates used to create the signature, the
      certificates, and the signed digest information.
    4. Embed the object into the file.
    5. Optionally, it can add a time stamp to the file. A time stamp should always be added when signing a file. However, SignCode also has the ability to add a time stamp to a previously signed file subject to some restrictions (see the examples that follow the options table).

    Once the file has been signed (assuming you have a valid certificate) and time stamped, the file can be distributed to your customers. Note that certificates generated with the test programs MakeCert and Cert2SPC are NOT valid for signing code that will be distributed to the public. Independent software vendors must obtain a certificate from GTE, VeriSign Inc., or another certification authority for signing code that will be distributed to the public.

    SignCode Examples for Internet Explorer 3.02 UPD

    Here are two examples of how to sign and time stamp a file using the Microsoft Internet Explorer 3.02 UPD options. The first uses a private-key name MyKey and the second uses a private-key file My.pvk:

    SignCode -prog MyControl.exe -spc Cert.spc -pvk MyKey -timeStamper http://timestamp.verisign.com/scripts/timstamp.dll
    SignCode -prog MyControl.exe -spc Cert.spc -pvk My.pvk -timeStamper http://timestamp.verisign.com/scripts/timstamp.dll
    

    Note In the URL above, timstamp.dll is correct. This is not a typographical error.

    In both cases a PKCS #7 object, Cert.spc, is embedded into the digest of the file, MyControl.exe. In the first example, the digest is signed with the private key of the MyKey key pair, and a time stamp is added. In the second example, the digest is signed with the private-key file My.pvk, and a time stamp is added.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a setup project with VS2008 for a .NET Windows Forms application
I have created a setup project using Visual Studio 2008. After the application is
I have created a Windows Forms C# application. But I am facing problems in
I'm creating a multilingual application using Windows Forms. I have created my multilingual content
Currently, I have a project with a Windows Service. I also created another Setup
I'm using Visual Studio 2008 and have created a setup project for my application.
I have a C# windows forms application. The way I currently have it set
I have a .Net windows forms application, and I need to load values into
I have created a windows form application which uses an SQL database. The database
I have created a Windows setup file for my Windows project in Visual Studio

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.