William Heath wrote:
You can use capicom to sign an executable (or even a .pyd):
import win32com.client
s=win32com.clie nt.Dispatch('ca picom.signedcod e')
s.FileName='you rexecutable.exe '
s.Sign(None)
s.Timestamp('ht tp://timestamp.veris ign.com/scripts/timstamp.dll')
Roger
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
>
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
>
import win32com.client
s=win32com.clie nt.Dispatch('ca picom.signedcod e')
s.FileName='you rexecutable.exe '
s.Sign(None)
s.Timestamp('ht tp://timestamp.veris ign.com/scripts/timstamp.dll')
Roger
Comment