HOWTO Sign the Epilog Mini Driver: Difference between revisions

From Pumping Station One
asdf
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Getting the tools ==


* Download and install the Windows 8.1 SDK http://msdn.microsoft.com/en-us/windows/desktop/bg162891.aspx
* Download and install the Windows 8.1 SDK http://msdn.microsoft.com/en-us/windows/desktop/bg162891.aspx
* Download and install the Windows Driver kit 8.0 http://go.microsoft.com/fwlink/p/?LinkID=324284
* Download, do '''NOT''' install http://www.epiloglaser.com/assets/downloads/drivers/mini/driver_808.exe
*  Download and install the Windows Driver kit 8.1 http://www.microsoft.com/en-us/download/details.aspx?id=42273
** unzip driver_808.exe


== Creating and Installing a Driver Signing Cert ==


The 2 wdk's may not be required at all.
run cmd as administrator


run cmd as administrator
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\makecert.exe" -r -pe -ss PrivateCertStore -n "CN=PumpingStationOne" PumpingStationOne.cer
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\certmgr.exe" /add "PumpingStationOne.cer" /s /r localMachine root
 
== Fixup the inf File ==


    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\makecert.exe" -r -pe -ss PrivateCertStore -n "CN=PumpingStationOne(TEST)" PumpingStationone(TEST).cer
Add the line <code>CatalogFile = EpilogWinX64W8.cat</code> to the <code>[Version]</code> section of the EpilogWinX64.inf file
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\certmgr.exe" /add "PumpingStationone(TEST).cer" /s /r localMachine root CertMgr Succeeded


== inf2cat ==


Locations of EpilogWinX64.dll nad EpilogWinX64UI.DLL
inf2cat is going to generate a cataloge file (EpilogWinX64W8.cat). Before doing this it will report errors in the inf. Fix the errors. I ran into 2 types: Missing files from the 32bit driver, I just removed the entries, and the date needs to be moved up.


* C:\Windows\System32\DriverStore\FileRepository\epilogwinx64.inf_amd64_3e79bed7bd5f652f
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x86\inf2cat.exe" /driver:EpilogWinX64_8.08 /os:8_X64
* C:\Windows\System32\spool\drivers\x64\3


Only the first command is working.
== Signing the cat file ==


    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\SignTool.exe" sign /v /s PrivateCertStore /n PumpingStationOne /t http://timestamp.verisign.com/scripts/timstamp.dll EpilogWinX64W8.cat


== Installing ==


    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\SignTool.exe" sign /v /s PrivateCertStore /n PumpingStationone(TEST) /t http://timestamp.verisign.com/scripts/timstamp.dll C:\Windows\System32\spool\drivers\x64\3\EpilogWinX64.DLL
Right click the EpilogWinX64.inf file >> install.
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\SignTool.exe" sign /v /s PrivateCertStore /n PumpingStationone(TEST) /t http://timestamp.verisign.com/scripts/timstamp.dll C:\Windows\System32\spool\drivers\x64\3\EpilogWinX64UI.DLL
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\SignTool.exe" sign /v /s PrivateCertStore /n PumpingStationone(TEST) /t http://timestamp.verisign.com/scripts/timstamp.dll C:\Windows\System32\DriverStore\FileRepository\epilogwinx64.inf_amd64_3e79bed7bd5f652f\EpilogWinX64.dll
    "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\SignTool.exe" sign /v /s PrivateCertStore /n PumpingStationone(TEST) /t http://timestamp.verisign.com/scripts/timstamp.dll C:\Windows\System32\DriverStore\FileRepository\epilogwinx64.inf_amd64_3e79bed7bd5f652f\EpilogWinX64.dll

Latest revision as of 18:34, 2 August 2014

Getting the tools

Creating and Installing a Driver Signing Cert

run cmd as administrator

   "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\makecert.exe" -r -pe -ss PrivateCertStore -n "CN=PumpingStationOne" PumpingStationOne.cer
   "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\certmgr.exe" /add "PumpingStationOne.cer" /s /r localMachine root

Fixup the inf File

Add the line CatalogFile = EpilogWinX64W8.cat to the [Version] section of the EpilogWinX64.inf file

inf2cat

inf2cat is going to generate a cataloge file (EpilogWinX64W8.cat). Before doing this it will report errors in the inf. Fix the errors. I ran into 2 types: Missing files from the 32bit driver, I just removed the entries, and the date needs to be moved up.

   "C:\Program Files (x86)\Windows Kits\8.1\bin\x86\inf2cat.exe" /driver:EpilogWinX64_8.08 /os:8_X64

Signing the cat file

   "C:\Program Files (x86)\Windows Kits\8.1\bin\x64\SignTool.exe" sign /v /s PrivateCertStore /n PumpingStationOne /t http://timestamp.verisign.com/scripts/timstamp.dll EpilogWinX64W8.cat

Installing

Right click the EpilogWinX64.inf file >> install.