Tagged Questions

1
vote
2answers
70 views

How to sign installation files of a Visual Studio .msi

This may be a duplicate, though I can't find it at this time. If so please point me in the right direction. I recently purchased an authenticode certificate from globalsign and am …
0
votes
2answers
104 views

Sign every executable with authenticode certificate through MSBuild

Hello, I have an authenticode certificate (.pfx) which I use to sign executables. How can I configure Team Build so that it signs every single executable (.exe, .dll, ...) automa …
1
vote
1answer
21 views

Preventing executables with invalid Authenticode signatures from running

We publish an update patch to our software package in a single executable file. The file is signed with an Authenticode digital signature, using the certificate issued to us. The …
0
votes
0answers
11 views

How to define TeamBuild Item Collection with built executables and libraries

After a TeamBuild project built all files, how can I create a collection of all built .exe and .dll files? For instance, I update all AssemblyInfo versions by creating a property …
0
votes
1answer
115 views

Cryptographic failure while signing assembly ‘<assemblyname>.dll’ – ‘Bad Version of Provider’

I purchased an authenticode certificate from a well known provider. Now I want to strong name an assembly and later on digitally sign it. This is what I've done so far: Extract …
0
votes
1answer
67 views

How do I set the http proxy in a subshell launched from a windows service

I am writing a windows service which takes an uploaded file, runs signtool.exe on it to do the signing and timestamping and then serves the signed file back. The code for this wor …
2
votes
1answer
133 views

MSI - Uninstall gives “Unidentified Publisher”

I have created an MSI installer using Visual Studio 2008. I then sign this with signtool.exe and my authenticode certificate. On a Vista x64 test PC, when the MSI is run the expec …
0
votes
2answers
265 views

How to verify a binary signed with a self-signed certificate?

We want to add automatic software updates to our application, but our company isn't yet ready to buy a code-signing certificate from a trusted root CA, so we'll be using a self-sig …
2
votes
3answers
261 views

Which code signing authority should I go with?

I'm looking at options to buy a code signing certificate for my company. I want it to be usable for MS Authenticode and also for Java and I want it to be trusted with the default …
1
vote
1answer
92 views

unknown publisher warning on unique downloads

We have an exe file delivered by an ASP.NET application. This binary is actually modified on the fly in memory. Is there any way to sign the modified exe with authenticode in mem …
1
vote
0answers
271 views

CAPICOM - Verify SignedCode is from a Trusted Publisher without UI

I'm using CAPICOM in a .NET 3.0 C# app to check an Authenticode signature on an exe file. I need to make sure that the certificate is listed as a Trusted Publisher. Using signedCod …
3
votes
2answers
544 views

Disabling authenticode signature verification in .NET exe without app.config

Does anyone know how to disable authenticode signature verification in a .NET executable (to avoid slow startup) without using an application config file? In other words, do this: …
3
votes
2answers
765 views

Validate Authenticode signature on EXE - C++ without CAPICOM

I'm writing a function for an installer DLL to verify the Authenticode signature of EXE files already installed on the system. The function needs to: A) verify that the signat …