MsW2kFlt.inf Driver File Contents (4d.zip)

; MsW2kFlt.inf
;
; Installation inf for the Device that needs flitering adapter.
;
; (c) Copyright 2001
;

[Version]
Signature="$Windows NT$"
Provider=%Mfg%
ClassGUID={4D36E96F-E325-11CE-BFC1-08002BE10318}
Class=Mouse
;CatalogFile=MsW2kFlt.cat
DriverVer=11/18/2000,1.2
	
[DestinationDirs]
DefaultDestDir   = 12

;
; Driver information
;

[Manufacturer]
%Mfg%   = WMouse.Mfg

[WMouse.Mfg]
; ps2 port mouse
%WMouse.DeviceDescPS21% = MouseCmnPS2,*PNP0F12
%WMouse.DeviceDescPS22% = MouseCmnPS2,*PNP0F13
%WMouse.DeviceDescPS23% = MouseCmnPS2,*PNP0F03
%WMouse.DeviceDescPS24% = MouseCmnPS2,*PNP0F0B
; serial mouse
%WMouse.DeviceDescSER1% = MouseCmnSer, SERENUM\MOUSE
%WMouse.DeviceDescSER2% = MouseCmnSer, *PNP0F01
%WMouse.DeviceDescSER3% = MouseCmnSer, SERENUM\MGE0003
%WMouse.DeviceDescSER4% = MouseCmnSer, SERENUM\MGE0001
; usb port mouse
%HID\VID_056E&PID_0006.DeviceDesc%= MouseCmnUSB, HID\VID_056E&PID_0006
%HID\VID_05C7&PID_2000.DeviceDesc%= MouseCmnUSB, HID\VID_05C7&PID_2000
%HID\VID_05E3&PID_000B.DeviceDesc%= MouseCmnUSB, HID\VID_05E3&PID_000B
%HID\VID_05E3&PID_1205.DeviceDesc%= MouseCmnUSB, HID\VID_05E3&PID_1205
%HID\VID_05FE&PID_0003.DeviceDesc%= MouseCmnUSB, HID\VID_05FE&PID_0003
%HID\VID_0663&PID_9804.DeviceDesc%= MouseCmnUSB, HID\VID_0663&PID_9804
%HID\VID_0680&PID_0002.DeviceDesc%= MouseCmnUSB, HID\VID_0680&PID_0002
%HID\VID_06A2&PID_0001.DeviceDesc%= MouseCmnUSB, HID\VID_06A2&PID_0001
%HID\VID_06A2&PID_0033.DeviceDesc%= MouseCmnUSB, HID\VID_06A2&PID_0033
%HID\VID_0AB0&PID_0001.DeviceDesc%= MouseCmnUSB, HID\VID_0AB0&PID_0001

; 
; do not display to end user when install in control pannel
;
[ControlFlags]
ExcludeFromSelect = *PNP0F0B, \
					SERENUM\MOUSE, \
					*PNP0F01, \
					SERENUM\MGE0003, \
					SERENUM\MGE0001, \
					HID\VID_056E&PID_0006, \
					HID\VID_05C7&PID_2000, \
					HID\VID_05E3&PID_000B, \
					HID\VID_05E3&PID_1205, \
					HID\VID_05FE&PID_0003, \
					HID\VID_0663&PID_9804, \
					HID\VID_0680&PID_0002, \
					HID\VID_06A2&PID_0001, \
					HID\VID_06A2&PID_0033, \
					HID\VID_0AB0&PID_0001

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; installation section for USB only
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[MouseCmnUSB]
; Copy the driver over
CopyFiles=MouseCmn.CopyFiles

;
; Service Installation
;

[MouseCmnUSB.Services]
AddService = MouseCmn,  , MouseCmn_Service_Inst

[MouseCmnUSB.HW]
; Add the device upper filter
AddReg = MouseCmnUSB.HW.AddReg

[MouseCmnUSB.HW.AddReg]
HKR,,"UpperFilters",0x00010000,"MouseCmn"

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; installation section for Serial only
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[MouseCmnSer]
; Copy the driver over
CopyFiles=MouseCmn.CopyFiles

;
; Service Installation
;

[MouseCmnSer.Services]
AddService = MouseCmn,  , MouseCmn_Service_Inst

[MouseCmnSer.HW]
; Add the device upper filter
AddReg = MouseCmnSer.HW.AddReg

[MouseCmnSer.HW.AddReg]
HKR,,"UpperFilters",0x00010000,"MouseCmn"

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; installation section for PS2 only
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[MouseCmnPS2]
; perform port related actions from msmouse.inf
Include=msmouse.inf
Needs=PS2_Inst

; Copy the driver over
CopyFiles=MouseCmn.CopyFiles

;
; Service Installation
;

[MouseCmnPS2.Services]
AddService = MouseCmn,  , MouseCmn_Service_Inst
; Install the port driver and mouclass from msmouse.inf
Include=msmouse.inf
Needs=PS2_Inst.Services

[MouseCmnPS2.HW]
; Add the device upper filter
AddReg = MouseCmnPS2.HW.AddReg
delReg = MouseCmnPS2.HW.DelReg

; run the directives need by the port driver
Include=msmouse.inf
Needs=PS2_Inst.HW

[MouseCmnPS2.HW.DelReg]
HKR,,"DisableInitializePolledUI",0x00000004,

[MouseCmnPS2.HW.AddReg]
HKR,,"UpperFilters",0x00010000,"MouseCmn"
HKR,,"MouseInitializePolled",0x00010001,0
HKR,,"EnableWheelDetection",0X0010001,2

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
;common setction for PS2 and USB
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

[MouseCmn_Service_Inst]
DisplayName    = %MouseCmn.SvcDesc%
ServiceType    = 1                  ; SERVICE_KERNEL_DRIVER
StartType      = 3                  ; SERVICE_DEMAND_START
ErrorControl   = 0                  ; SERVICE_ERROR_IGNORE
LoadOrderGroup = Pointer Port
ServiceBinary  = %12%\Ms2KFlt.sys

[MouseCmn.CopyFiles]
Ms2KFlt.sys

[SourceDisksNames]
1 = %DiskId1%,,,

[SourceDisksFiles]
Ms2KFlt.sys = 1,,


[Strings]
SPSVCINST_ASSOCSERVICE = 0x00000002

;for uninstallation
HorngTech_InfID = "Mouse Software" 

; ps2 port mouse
WMouse.DeviceDescPS21 = "Mouse"
WMouse.DeviceDescPS22 = "Mouse"
WMouse.DeviceDescPS23 = "Mouse"
WMouse.DeviceDescPS24 = "Mouse"
; serial port mouse 
WMouse.DeviceDescSER1 = "Mouse (Serial)"
WMouse.DeviceDescSER2 = "Mouse (Serial)"
WMouse.DeviceDescSER3 = "Mouse (Serial)"
WMouse.DeviceDescSER4 = "Mouse (Serial)"
; usb port mouse
HID\VID_056E&PID_0006.DeviceDesc= "USB Mouse"
HID\VID_05C7&PID_2000.DeviceDesc= "USB Mouse"
HID\VID_05E3&PID_000B.DeviceDesc= "USB Mouse"
HID\VID_05E3&PID_1205.DeviceDesc= "USB Mouse"
HID\VID_05FE&PID_0003.DeviceDesc= "USB Mouse"
HID\VID_0663&PID_9804.DeviceDesc= "USB Mouse"
HID\VID_0680&PID_0002.DeviceDesc= "USB Mouse"
HID\VID_06A2&PID_0001.DeviceDesc= "USB Mouse"
HID\VID_06A2&PID_0033.DeviceDesc= "USB Mouse"
HID\VID_0AB0&PID_0001.DeviceDesc= "USB Mouse"

MouseCmn.SvcDesc = "Mouse Driver"
DiskId1 = "Mouse Driver Installation(W2K) Disk"
Mfg = ""
Download Driver Pack

How To Update Drivers Manually

After your driver has been downloaded, follow these simple steps to install it.

  • Expand the archive file (if the download file is in zip or rar format).

  • If the expanded file has an .exe extension, double click it and follow the installation instructions.

  • Otherwise, open Device Manager by right-clicking the Start menu and selecting Device Manager.

  • Find the device and model you want to update in the device list.

  • Double-click on it to open the Properties dialog box.

  • From the Properties dialog box, select the Driver tab.

  • Click the Update Driver button, then follow the instructions.

Very important: You must reboot your system to ensure that any driver updates have taken effect.

For more help, visit our Driver Support section for step-by-step videos on how to install drivers for every file type.

server: ftp, load: 2.31