- Joined
- Dec 8, 2020
- Messages
- 2,993 (2.10/day)
- Location
- United Kingdom
For those interested in making their own drivers, for any reason, and would like to sign it, allowing them to share it with others.
----
Step 1:
You can create a self-signed Code Signing certificate without using third-party tools by using the PowerShell 5.0 cmdlet – New-SelfSifgnedCertificate:
$Cert = New-SelfSignedCertificate -Subject "SIGNERNAME” -Type CodeSigningCert -CertStoreLocation cert:\LocalMachine\My
Then you need to export this certificate to the pfx file with the password:
$CertPassword = ConvertTo-SecureString -String “P@ssw0rd” -Force –AsPlainText
Export-PfxCertificate -Cert $Cert -FilePath C:\DriverCert\NAME.pfx -Password $CertPassword
----
Step 2:
Download WoSignCode, and its operation manual (its very easy to use), you only need the 'Code Signing' and 'CAB/CAT' options, and internet.
You will need to make a basic powershell and command prompt batch file, and modded shortcut (example here).
Note: The tool requires internet connect for timestamps and file virus scanning.
Now .7z .zip, .rar your signed worked and share!
----
Step 1:
You can create a self-signed Code Signing certificate without using third-party tools by using the PowerShell 5.0 cmdlet – New-SelfSifgnedCertificate:
$Cert = New-SelfSignedCertificate -Subject "SIGNERNAME” -Type CodeSigningCert -CertStoreLocation cert:\LocalMachine\My
Then you need to export this certificate to the pfx file with the password:
$CertPassword = ConvertTo-SecureString -String “P@ssw0rd” -Force –AsPlainText
Export-PfxCertificate -Cert $Cert -FilePath C:\DriverCert\NAME.pfx -Password $CertPassword
----
Step 2:
Download WoSignCode, and its operation manual (its very easy to use), you only need the 'Code Signing' and 'CAB/CAT' options, and internet.
You will need to make a basic powershell and command prompt batch file, and modded shortcut (example here).
Note: The tool requires internet connect for timestamps and file virus scanning.
Now .7z .zip, .rar your signed worked and share!