84 lines
2.2 KiB
INI
Executable file
84 lines
2.2 KiB
INI
Executable file
;/*++
|
|
;
|
|
;
|
|
;Copyright (c) 2009-2012 Intel Corporation
|
|
;
|
|
;Module Name:
|
|
; IntelBatteryManagement.inf
|
|
;
|
|
;Abstract:
|
|
; INF file for installing the Battery Management driver
|
|
;
|
|
;--*/
|
|
|
|
[Version]
|
|
Signature="$WINDOWS NT$"
|
|
Class = System
|
|
ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318} ;
|
|
Provider=%ManufacturerName%
|
|
CatalogFile=IntelBatteryManagement.cat
|
|
DriverVer=08/14/2014,12.41.30.101
|
|
|
|
|
|
|
|
;*****************************************
|
|
; Install Section
|
|
;*****************************************
|
|
|
|
[Manufacturer]
|
|
%ManufacturerName%=Standard,NTamd64,NTx86
|
|
|
|
[Standard.NTamd64]
|
|
%IntelBatteryManagement.DeviceDesc%=IntelBatteryManagement_Device, ACPI\INT33FE
|
|
[Standard.NTx86]
|
|
%IntelBatteryManagement.DeviceDesc%=IntelBatteryManagement_Device, ACPI\INT33FE
|
|
|
|
[IntelBatteryManagement_Device.NT]
|
|
CopyFiles=Drivers_Dir
|
|
Reboot
|
|
|
|
[Drivers_Dir]
|
|
IntelBatteryManagement.sys
|
|
|
|
;-------------- Service installation
|
|
[IntelBatteryManagement_Device.NT.Services]
|
|
AddService = IntelBatteryManagement,%SPSVCINST_ASSOCSERVICE%, IntelBatteryManagement_Service_Inst
|
|
|
|
; -------------- IntelBatteryManagement driver install sections
|
|
[IntelBatteryManagement_Service_Inst]
|
|
DisplayName = %IntelBatteryManagement.SVCDESC%
|
|
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
|
|
StartType = 3 ; SERVICE_DEMAND_START
|
|
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
|
|
ServiceBinary = %12%\IntelBatteryManagement.sys
|
|
LoadOrderGroup = Boot Bus Extender
|
|
AddReg = IntelBatteryManagement.AddReg
|
|
|
|
|
|
|
|
|
|
[IntelBatteryManagement.AddReg]
|
|
HKR,,,0,%ClassName%
|
|
HKR,,Icon,,-5
|
|
|
|
[SourceDisksNames]
|
|
1 = %DiskName%,,,""
|
|
|
|
[SourceDisksFiles]
|
|
IntelBatteryManagement.sys = 1,,
|
|
|
|
[DestinationDirs]
|
|
DefaultDestDir = 12
|
|
|
|
;----------------------------------------------------------------------
|
|
; Strings
|
|
;----------------------------------------------------------------------
|
|
|
|
[Strings]
|
|
SPSVCINST_ASSOCSERVICE= 0x00000002
|
|
MINTEL = "Intel Corporation"
|
|
ManufacturerName="Intel Corporation" ;
|
|
ClassName="Battery Management" ;
|
|
DiskName = "IntelBatteryManagement Installation Disk"
|
|
IntelBatteryManagement.DeviceDesc = "Intel(R) Battery Management Device"
|
|
IntelBatteryManagement.SVCDESC = "Intel(R) Battery Management Service"
|