How to check if a file has a digital signature
The important missing part of the answer mentioning signtool is: Yes, with the well known signtool.exe you can also find out, if a file is signed. No need to download another tool! E.g. with the simple line: signtool verify /pa myfile.exe if %ERRORLEVEL% GEQ 1 echo This file is not signed. (For verbose output, add … Read more