-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBlueScreenOnce.inf
60 lines (49 loc) · 1.35 KB
/
BlueScreenOnce.inf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
;
; BlueScreenOnce
;
[Version]
Signature = "$WINDOWS NT$"
Class = System
ClassGuid = {4d36e97d-e325-11ce-bfc1-08002be10318}
Provider = %ProviderString%
CatalogFile = BlueScreenOnce.cat
DriverVer = 07/21/2024,12.8.52.827
PnpLockdown = 1
[DestinationDirs]
DefaultDestDir = 12;
; Default install sections
[DefaultInstall.NTamd64]
OptionDesc = %ServiceDescription%
CopyFiles = BlueScreenOnce.DriverFiles1
[DefaultInstall.NTamd64.Services]
AddService = %ServiceName%,,BlueScreenOnce.Service
; Default uninstall sections
[DefaultUninstall.NTamd64]
LegacyUninstall = 1
DelFiles = BlueScreenOnce.DriverFiles2
[DefaultUninstall.NTamd64.Services]
DelService = %ServiceName%,0x200
; Services Section
[BlueScreenOnce.Service]
DisplayName = %ServiceDescription%
Description = %ServiceDescription%
ServiceBinary = %12%\%DriverName%.sys
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 0 ; SERVICE_ERROR_IGNORE
; Copy Files
[BlueScreenOnce.DriverFiles1]
%DriverName%.sys
[BlueScreenOnce.DriverFiles2]
%DriverName%.sys
[SourceDisksFiles]
BlueScreenOnce.sys = 1,,
[SourceDisksNames]
1 = %DiskId1%,,,
; String Section
[Strings]
ProviderString = "Olli Janatuinen"
ServiceDescription = "Blue Screen Once driver"
ServiceName = "BlueScreenOnce"
DriverName = "BlueScreenOnce"
DiskId1 = "BlueScreenOnce Device Installation Disk"