-
Notifications
You must be signed in to change notification settings - Fork 0
Windows Authenticode Code Signing
Eliminate Windows SmartScreen "Unknown Publisher" warnings by signing your desktop executables with local PFX certificates or Hardware EV Tokens.
When users download and launch an unsigned .exe on modern Windows 10 and 11, Windows Defender SmartScreen displays a prominent blue barrier:
┌───────────────────────────────────────────────────────────┐
│ Windows protected your PC │
│ Microsoft Defender SmartScreen prevented an unrecognized │
│ app from starting. Running this app might put your PC │
│ at risk. │
│ │
│ App: MyApplication.exe │
│ Publisher: Unknown publisher │
│ │
│ [ Don't run ] │
└───────────────────────────────────────────────────────────┘
Signing your executable with a valid Authenticode Digital Certificate attaches cryptographic proof of your identity, builds positive SmartScreen reputation, and displays your verified company or developer name.
WebToApp Studio Pro provides a unified code signing workbench supporting both Standard (OV) and Extended Validation (EV) certificates:
-
Certificate Path: Select your
.pfxor.p12certificate file. - Password Vault: Enter your private key password.
-
Encrypted Project Storage: Passwords saved in
.wtpproject configuration files are encrypted using AES-256 with Windows DPAPI machine keys, preventing plaintext credential leaks into version control.
Modern Extended Validation (EV) certificates are stored on hardware security modules (HSM tokens like SafeNet eToken or YubiKey FIPS) and cannot be exported to PFX files.
- Target via SHA-1 Thumbprint: Enter your certificate's 40-character SHA-1 thumbprint (hexadecimal).
- Automatic Hardware Pin Prompt: WebToApp Studio links with the Windows Certificate Store; Windows prompts for your physical token PIN when signing begins.
Always keep timestamping enabled. This ensures your signature remains cryptographically valid even after your certificate expires!
-
Default Timestamp URL:
http://timestamp.digicert.com(or Sectigo:http://timestamp.sectigo.com). -
Digest Algorithm:
SHA-256(SHA-1 is deprecated by Microsoft and rejected by modern Windows).
If an initial build finishes with an invalid password, disconnected USB token, or temporary timestamp server network timeout:
- A non-blocking amber warning appears in the post-build modal.
- Click "Retry Signing": Re-enter your password or reconnect your token.
- Re-signs the exported executable in-place in under 2 seconds without requiring a complete project re-export!
To verify that an exported binary is properly signed and timestamped:
Get-AuthenticodeSignature -FilePath "dist/MyApplication.exe" | Format-ListExpected output:
SignerCertificate : [CN=Your Company / Developer Name]
TimeStamperCertificate : [CN=DigiCert Trusted G4 RSA4096 SHA256 TimeStamping CA]
Status : Valid
StatusMessage : Signature verified.
© 2026 Wildcat Studio. WebToApp Studio Pro — Official Developer Documentation & Technical Wiki.
Portal • Web Docs • Releases • Issues • ☕ Buy Me a Coffee
- 03. Windows Executable (.exe)
- 04. Web Frameworks & APIs
- 05. HTML5 Games & Audio
- 06. Icons & Icon Studio
- 07. Splash & Day/Night Mode
- 08. SQLite Database Bridge
- 09. Native OS Notifications
- 10. WordPress Companion
- 11. Deep-Linking (myapp://)
- 12. Inno Setup Wizards (.iss)
- 13. Microsoft Store (MSIX)
- 14. Android & Google Play
- 15. Ubuntu Linux Debian (.deb)
- 16. Integrated PWA Studio
- 17. Multi-Platform Build
- 18. Enterprise Security
- 19. Authenticode Code Signing
- 20. 1-Click Auto-Updater
- 21. Release Protocol & Gateway