⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 regsample.inf

📁 本程序是一个关于内存操作的驱动程序。希望对大家有所帮助。
💻 INF
字号:
;; RegSample.inf

;; *********  PLEASE READ ***********
;; The wizard cannot create exact INF files for all buses and device types.
;; You may have to make changes to this file in order to get your device to
;; install. In particular, hardware IDs and logical configurations require
;; intervention.
;;
;; The Win2K DDK documentation contains an excellent INF reference.

;--------- Version Section ---------------------------------------------------

[Version]
Signature="$Windows 95$"
Provider=%ProviderName%

; If device fits one of the standard classes, use the name and GUID here,
; otherwise create your own device class and GUID as this example shows.

Class=WAHBOOK
ClassGUID={ff646f80-8def-11d2-9449-00105a075f6b}

;--------- SourceDiskNames and SourceDiskFiles Section -----------------------

; These sections identify source disks and files for installation.  They are
; shown here as an example, but commented out.

;[SourceDisksNames]
;1 = "Install Disk",Disk1,,

;[SourceDisksFiles]
;RegSample.sys = 1,,

;--------- ClassInstall/ClassInstall32 Section -------------------------------

; Not necessary if using a standard class

; 9X Style
[ClassInstall]
Addreg=Class_AddReg

; NT Style
[ClassInstall32]
Addreg=Class_AddReg

[Class_AddReg]
HKR,,,,%DeviceClassName%
HKR,,Icon,,"-18"

;--------- DestinationDirs Section -------------------------------------------

[DestinationDirs]
RegSample_Files_Driver = 10,System32\Drivers

;--------- Manufacturer and Models Sections ----------------------------------

[Manufacturer]
%MfgName%=Mfg0

[Mfg0]
%DeviceDesc%=RegSample_DDI, *RegSample

;---------- DDInstall Sections -----------------------------------------------
; --------- Windows 9X -----------------

; Experimentation has shown that DDInstall root names greater than 19 characters
; cause problems in Windows 98

[RegSample_DDI]
CopyFiles=RegSample_Files_Driver
AddReg=RegSample_9X_AddReg

[RegSample_9X_AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,RegSample.sys
HKR, "Parameters", "RegDword", 0x00010001, 0x123456
HKR, "Parameters", "RegString", 0x00000000, "WDM"
HKR, "Parameters", "RegBoolean", 0x00010001, 1

; --------- Windows NT -----------------

[RegSample_DDI.NT]
CopyFiles=RegSample_Files_Driver
AddReg=RegSample_NT_AddReg

[RegSample_DDI.NT.Services]
Addservice = RegSample, 0x00000002, RegSample_AddService

[RegSample_AddService]
DisplayName    = %SvcDesc%
ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
StartType      = 3                  ; SERVICE_DEMAND_START
ErrorControl   = 1                  ; SERVICE_ERROR_NORMAL
ServiceBinary  = %10%\System32\Drivers\RegSample.sys

[RegSample_NT_AddReg]
HKLM, "System\CurrentControlSet\Services\RegSample\Parameters",\
	"RegDword", 0x00010001, 0x123456
HKLM, "System\CurrentControlSet\Services\RegSample\Parameters",\
	"RegString", 0x00000000, "WDM"
HKLM, "System\CurrentControlSet\Services\RegSample\Parameters",\
	"RegBoolean", 0x00010001, 1

HKR, "Parameters","RegDword_Pdo", 0x00010001, 0x200212
HKR, "Parameters","RegString_Pdo", 0x00000000, "WAH"
HKR, "Parameters","RegBoolean_Pdo", 0x00010001, 1


; --------- Files (common) -------------

[RegSample_Files_Driver]
RegSample.sys

;--------- Strings Section ---------------------------------------------------

[Strings]
ProviderName="武安河"
MfgName="武安河"
DeviceDesc="RegSample Driver"
DeviceClassName="WDM范例"
SvcDesc="Driver for RegSample WDM Sample"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -