Re: Call Signtool using python

2010-03-02 Thread Chris Rebert
On Tue, Mar 2, 2010 at 3:34 AM, enda man wrote: > Hi, > > I want to call the Windows signtool to sign a binary from a python > script. > > Here is my script: > // > os.chdir('./Install/activex/cab') > subprocess.call(["signtool", "sign", "/v", "/f", "webph.pfx", "/t", > "http://timestamp.verisign.

Re: Call Signtool using python

2010-03-02 Thread enda man
262-6300 or by electronic mail > immediately. Thank you. > > -Original Message- > From: python-list-bounces+mmitchell=transparent@python.org > > [mailto:python-list-bounces+mmitchell=transparent@python.org] On > Behalf Of enda man > Sent: Tuesday, March

RE: Call Signtool using python

2010-03-02 Thread Matt Mitchell
+mmitchell=transparent@python.org [mailto:python-list-bounces+mmitchell=transparent@python.org] On Behalf Of enda man Sent: Tuesday, March 02, 2010 6:34 AM To: python-list@python.org Subject: Call Signtool using python Hi, I want to call the Windows signtool to sign a binary from a python script

Call Signtool using python

2010-03-02 Thread enda man
Hi, I want to call the Windows signtool to sign a binary from a python script. Here is my script: // os.chdir('./Install/activex/cab') subprocess.call(["signtool", "sign", "/v", "/f", "webph.pfx", "/t", "http://timestamp.verisign.com/scripts/timstamp.dll";, "WebPh.exe" ]) // But I am getting thi