fmuecke / SignFiles

Powershell script to sign code - including timestamps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SignFiles

Powershell script to sign code - including timestamps

What problems does it solve?

  • simple to use
  • signs multiple files at once
  • signs files in subdirectories as well
  • does not overwrite existing signatures
  • (more) robust timestamping with different timeservers

I need a code signing certificate!

You need to buy one. Or you can create one with powershell (Windows 10) for testing purposes

New-SelfSignedCertificate -CertStoreLocation cert:\currentuser\my `
  -Subject "CN=Test Code Signing" `
  -KeyAlgorithm RSA `
  -KeyLength 2048 `
  -Provider "Microsoft Enhanced RSA and AES Cryptographic Provider" `
  -KeyExportPolicy Exportable `
  -KeyUsage DigitalSignature `
  -Type CodeSigningCert

see Stackoverflow Question

About

Powershell script to sign code - including timestamps

License:MIT License


Languages

Language:PowerShell 100.0%