Tạo mã Code Signing trên Windows 10

Chạy đoạn mã dưới đây trên Powershell

New-SelfSignedCertificate -CertStoreLocation Cert:\CurrentUser\My `
>> -Subject "CN=<App Name>" `
>> -KeyAlgorithm RSA `
>> -KeyLength 2048 `
>> -Provider "Microsoft Enhanced RSA and AES Cryptographic Provider" `
>> -KeyExportPolicy Exportable `
>> -KeyUsage DigitalSignature `
>> -Type CodeSigningCert