Signtool
-
I have a few executables that I sign with my code signing certificate. Each file ends up with a slightly different timestamp because it's using a web based time server. Does anyone know how to give each file the same exact signature timestamp?
The difficult we do right away... ...the impossible takes slightly longer.
-
I have a few executables that I sign with my code signing certificate. Each file ends up with a slightly different timestamp because it's using a web based time server. Does anyone know how to give each file the same exact signature timestamp?
The difficult we do right away... ...the impossible takes slightly longer.
Did you try the [SetFileTime function (fileapi.h) - Win32 apps | Microsoft Docs](https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-setfiletime) ?
-
Did you try the [SetFileTime function (fileapi.h) - Win32 apps | Microsoft Docs](https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-setfiletime) ?
Thank you for the reply, Victor. But that function doesn't set the timestamp of the digital signature, only the file attributes.
The difficult we do right away... ...the impossible takes slightly longer.