Changeset 106321 in vbox for trunk/src/VBox/Additions/WINNT/Mouse/NT5
- Timestamp:
- Oct 15, 2024 1:06:30 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Mouse/NT5/VBoxMouse.inf
r106061 r106321 34 34 ;edit-DriverVer=08/26/2008,2.00.0000 35 35 ;cat CatalogFile=VBoxMouse.cat 36 ;PnpLockdown=1 36 37 37 38 [SourceDisksNames] 38 1 = %VBoxMouse .MediaDesc%39 1 = %VBoxMouse_DiskDesc%,,, 39 40 40 41 [SourceDisksFiles] … … 44 45 DefaultDestDir = 12 ; DIRID_DRIVERS 45 46 46 ; Disabled install via [Manufacturer], not working. See [DefaultInstall]. 47 ;[Manufacturer] 48 ;%ORACLE%=VBoxMouse@COMMA-NT-ARCH@ 49 ; 50 ;[VBoxMouse@DOT-NT-ARCH@] 51 ;%VBoxMouse.SvcDesc%=VBoxMouse_Install 52 ; 53 ;[VBoxMouse_Install] 54 ;CopyFiles = @VBoxMouse.sys 55 ; 56 ;[VBoxMouse_Install.Services] 57 ;AddService = VBoxMouse,,VBoxMouse.Service 47 ; Do *not* add a [Manufacturer] section, as this is a so-called "primitive driver". 48 ; Adding such a section will make InfVerif.exe fail. 58 49 59 50 [DefaultInstall@DOT-NT-ARCH@] 60 CopyFiles = @VBoxMouse.sys 51 %ORACLE%=VBoxMouse@COMMA-NT-ARCH@ 52 CopyFiles = VBoxMouse_CopyFiles 61 53 62 54 [DefaultInstall@[email protected]] 63 AddService = VBoxMouse, ,VBoxMouse.Service55 AddService = VBoxMouse,0x00000002,VBoxMouse_Service 64 56 65 [VBoxMouse.AddRegistry] 57 [DefaultUninstall@DOT-NT-ARCH@] 58 [email protected] 59 LegacyUninstall=1 60 61 [DefaultUninstall@[email protected]] 62 DelService = VBoxMouse,0x00000200 63 LegacyUninstall = 1 64 65 [VBoxMouse_AddReg] 66 66 HKLM, System\CurrentControlSet\Control\Class\{4D36E96F-E325-11CE-BFC1-08002BE10318}, UpperFilters, 0x00010000, "VBoxMouse", "mouclass" 67 67 68 [VBoxMouse.Service] 69 DisplayName = %VBoxMouse.SvcDesc% 68 [VBoxMouse_CopyFiles] 69 VBoxMouse.sys 70 71 [VBoxMouse_Service] 72 DisplayName = %VBoxMouse_SvcDesc% 70 73 ServiceType = %SERVICE_KERNEL_DRIVER% 71 74 StartType = %SERVICE_DEMAND_START% 72 75 ErrorControl = %SERVICE_ERROR_IGNORE% 73 76 ServiceBinary = %12%\VBoxMouse.sys 74 AddReg = VBoxMouse .AddRegistry77 AddReg = VBoxMouse_AddReg 75 78 76 79 [Strings] 77 VBoxMouse.SvcDesc = "VirtualBox Guest Mouse Service" 78 VBoxMouse.MediaDesc = "VirtualBox Guest Mouse Driver Installation Media" 79 ORACLE = "Oracle Corporation" 80 ORACLE = "Oracle Corporation" 81 VBoxMouse_SvcDesc ="VirtualBox Guest Mouse Service" 82 VBoxMouse_DrvDesc ="VirtualBox Guest Mouse Driver" 83 VBoxMouse_DiskDesc ="VBoxMouse Installation Disk" 80 84 81 85 ; Useful constants … … 83 87 SERVICE_DEMAND_START = 3 84 88 SERVICE_ERROR_IGNORE = 0 89 SERVICE_ERROR_NORMAL = 1 90
Note:
See TracChangeset
for help on using the changeset viewer.