Link to home
Start Free TrialLog in
Avatar of davidcase
davidcase

asked on

running signtool from a Delphi 2009 Application

I need to run the signtool application from a Delphi 2009 application that gathers a list of files in a folder, backs up the files and then signs them. The command line I need to execute is something like this...

signtool sign /fMyCert.pfx /pPassword /t"timestamp URL" "%s\%s"

I then use the format function to replace the %s\%s with the path to the filename to sign.

I have tried the cmdline in a batch file and it works perfectly.

The application runs from the folder where the certificate tools are situated (incuding signtool.exe)...

Needs to run on Windows 7 and Windows 2003 Server R2 Standard Edition.
ASKER CERTIFIED SOLUTION
Avatar of aflarin
aflarin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of davidcase
davidcase

ASKER

The solution gave me all the clues I needed to figure the rest of the problem out. Great Help.