![]() |
Windows 10 X64 may update 2004 - Printable Version +- AutoProfessionals (https://www.autoprofessionals.org) +-- Forum: Auto-Professionals Cars Forums (https://www.autoprofessionals.org/forumdisplay.php?fid=9) +--- Forum: Car Automotive Software - Automotive Workshop Manuals - Catalogue - General - Others (https://www.autoprofessionals.org/forumdisplay.php?fid=43) +---- Forum: Porsche (https://www.autoprofessionals.org/forumdisplay.php?fid=66) +---- Thread: Windows 10 X64 may update 2004 (/showthread.php?tid=10049) |
Windows 10 X64 may update 2004 - Waylander - 18-08-2020 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 |