If you see this enabled Certificate Icon then the program has been digitally signed with a certificate from a Trusted Authority. If the program has not been digitally signed then this icon is disabled. (Generally and for security reasons, you should prefer signed software application programs, especially in a business environment). Click the certificate icon to have Windows display the program's signature certificate dialog.
If you click the disabled Certificate Icon (i.e. the program is currently not signed) then a popup-menu is invoked with menu-items allowing you to sign the current program, if you have previously configured a signing menu in the Custom Tools Options page, for example:
[sign]{Default sign with signtool.exe}"C:\Program Files (x86)\Windows Kits\8.1\bin\x64\signtool.exe" sign /a "%1"
• The [sign] text adds the signing program to the signing menu
• The {Default sign with signtool.exe} text adds your castom caption to the menu item
• The "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\signtool.exe" text is the path to your sign program
• The parameters/switches sign /a must be separated by spaces
• The "%1" parameter variable will be resolved to the program to be signed
|