William Heath wrote: > Hi All, > I thought I sent an email to the list regarding a need I have to self sign > a > py2exe windows executable. Does anyone know how to do that? > > -Tim >
You can use capicom to sign an executable (or even a .pyd):
import win32com.client
s=win32com.client.Dispatch('capicom.signedcode')
s.FileName='yourexecutable.exe'
s.Sign(None)
s.Timestamp('http://timestamp.verisign.com/scripts/timstamp.dll')
Roger
--
http://mail.python.org/mailman/listinfo/python-list
