+ Reply to Thread
Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16

Thread: code signing

  1. #11

    Default Re: code signing

    I meant the setup.exe. Is there any reason I'd want to also the digital signature to my application.exe file?

  2. #12
    Join Date
    Mar 2004
    Posts
    4,307

    Default Re: code signing

    Microsoft recommends that commercial software publishers code sign all their PE files. And if you would like to see your own application files flagged as 'suspicious' by anti-virus and anti-spyware systems on a regular basis, then don't code-sign ;-)

    You should always code-sign your own PE application files (all your .exe, .dll, .ocx, ...). You should not code-sign 3rd-party files because code-signing means that you take over responsibility (and sometimes it is not even allowed to code-sign because the signature modifies the binary contants of a file). If you have "unsigned" 3rd-party components, you should ask the vendor to code-sign the files.

    Friedrich

  3. #13

    Default Re: code signing

    In the script it looks like I'm signing my application .exe but I don't see where setup.exe is being code signed.

    #code-sign application "C:\Installation Programs\Release\DataBinder.exe"


    I went to General Information and added digital signature to installer executable.

  4. #14
    Join Date
    Mar 2004
    Posts
    4,307

    Default Re: code signing

    Yes, that is correct. When you have General Information -> Digital Signature -> Add a Digital Signature -> set to YES then the compiler will automatically code-sign your generated setup.exe. Compiler report should look similar to the attached screenshot.

    Friedrich
    Attached Images Attached Images  

  5. #15

    Default Re: code signing

    Got it....thanks!

  6. #16
    Join Date
    Mar 2004
    Posts
    4,307

    Default Re: code signing

    You are welcome

    Friedrich

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •