Hi folks,

I am trying to write a little tool in which I can verify digital
signature of system files in c#. Of course SIGVERIF does the same
thing but I can not use that for certain reasons.

Any input will be appreciated.

Thanks
Ravelstein

RE: Verifying Digital Signature by pavel_a

pavel_a
Tue Apr 04 10:09:03 CDT 2006

"Ravelstein" wrote:
> Hi folks,
>
> I am trying to write a little tool in which I can verify digital
> signature of system files in c#. Of course SIGVERIF does the same
> thing but I can not use that for certain reasons.
>
> Any input will be appreciated.


Not sure about C#... In plain C it can be something as simple as:

void main() {
system( "driverquery /SI > \"%TEMP%\\listfile\" & notepad
\"%TEMP%\\listfile\" );
}

Regards,
--PA

/* don't like the reply? try asking in correct newsgroup */


Re: Verifying Digital Signature by Ravelstein

Ravelstein
Tue Apr 04 12:18:38 CDT 2006

Thanks a TON PA, It helps.


Regards
Ravelstein