blob: 177c5079cfa2959d33423a729638557c8d4a91d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
Notes on getting a signing key for driver signing
http://technet.microsoft.com/en-us/library/dd919238%28v=ws.10%29.aspx
# use MMC to add the certificates snap-in for ComputerAccount on Local computer
Run console as Administrator:
makecert -r -n "CN=AltusMetrum" -ss AltusMetrumCertStore -sr LocalMachine
# <path> contains the altusmetrum.inf file we ship. Make sure <path>
# is otherwise empty or inf2cat will get confused
inf2cat /driver:<path> /os:7_X86,7_X64,8_X86,8_X64
signtool sign /s AltusMetrumCertStore /n “AltusMetrum"
/t http://timestamp.verisign.com/scripts/timestamp.dll
altusmetrum.cat
pnputil -i -a altusmetrum.inf
|