8 lines
443 B
Plaintext
8 lines
443 B
Plaintext
cd codesign
|
|
New-SelfSignedCertificate -DnsName frank@zechert.net -Type CodeSigning -CertStoreLocation "Cert:\CurrentUser\My"
|
|
Export-Certificate -Cert (Get-ChildItem Cert:\CurrentUser\My -CodeSigningCert)[0] -FilePath code_signing_frank_zechert.crt
|
|
|
|
|
|
|
|
Import-Certificate -FilePath code_signing_frank_zechert.crt -Cert Cert:\CurrentUser\TrustedPublisher
|
|
Import-Certificate -FilePath code_signing_frank_zechert.crt -Cert Cert:\CurrentUser\Root |