If you have not done this yet and are running PET2, it will break it, you will not be able to use the hardlock until its digitally signed, even with driver signing / testmode on
you will have to sign the driver yourself,
heres how
you need to create certificates to self sign the multikey.sys driver
you will need to install windows SDK and Windows WDK
and then follow the instructions,
first is run bcdedit -SET testsigning on
use the multikey64 directory in your c drive
first generate a certificate
cd C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64
then run
makecert -r -sv C:\multikey64\myDrivers.pvk -n CN="WinOSHub" C:\multikey64\myDrivers.cer
you will be asked for a password 3 times, make it simple
thats the public cert, now the private key
cert2spc C:\multikey64\myDrivers.cer C:\multikey64\myDrivers.spc
now the two have to be combined
pvk2pfx -pvk C:\multikey64\myDrivers.pvk -pi "your Password" -spc C:\multikey64\myDrivers.spc -pfx C:\multikey64\myDrivers.pfx -po "your password"
now to create the catalogue file
cd C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x86
inf2cat.exe /driver:"C:\multikey64" /os:7_X64 /verbose
this should then create a new catalogue file.
if you then follow the install steps and run the install.cmd from the multikey64 directory it should now install the driver for hardlock
you will have to sign the driver yourself,
heres how
you need to create certificates to self sign the multikey.sys driver
you will need to install windows SDK and Windows WDK
and then follow the instructions,
first is run bcdedit -SET testsigning on
use the multikey64 directory in your c drive
first generate a certificate
cd C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64
then run
makecert -r -sv C:\multikey64\myDrivers.pvk -n CN="WinOSHub" C:\multikey64\myDrivers.cer
you will be asked for a password 3 times, make it simple
thats the public cert, now the private key
cert2spc C:\multikey64\myDrivers.cer C:\multikey64\myDrivers.spc
now the two have to be combined
pvk2pfx -pvk C:\multikey64\myDrivers.pvk -pi "your Password" -spc C:\multikey64\myDrivers.spc -pfx C:\multikey64\myDrivers.pfx -po "your password"
now to create the catalogue file
cd C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x86
inf2cat.exe /driver:"C:\multikey64" /os:7_X64 /verbose
this should then create a new catalogue file.
if you then follow the install steps and run the install.cmd from the multikey64 directory it should now install the driver for hardlock