views:

54

answers:

2

Is this possible? How do I go about doing it? Does it require admin rights? (I would not think so)

A pointer to a help page or link is fine - no need to provide code. Given my difficulty with he code signing cert and setting it up in our build environment I am not sure I am googling with the right terms.

EDIT

After some searching I did find some possible sample code

http://support.microsoft.com/kb/323809/en-us

I will try it out.

A: 

Have you looked at MSFT's authenticode?

That's not programmatically.
MSalters
+1  A: 

Use either WinVerifyTrust or SetupScanFileQueue(SPQ_SCAN_USE_CALLBACK_SIGNERINFO)

MSalters
Thanks. I guess I will have to go look for some sample code. I can't make heads or tails of how to go about doing what I want using the information in those links.
Tim
Sample code is provided for WinVerifyTrust; see http://msdn.microsoft.com/en-us/library/aa382384(VS.85).aspx
MSalters