home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 January / maximum-cd-2009-01.iso / DiscContents / VirtualBox-2.0.4-38406-Win_x86.msi / vboxguest / 32Bit / Windows / Drivers / VBoxGuest / VBoxMouse.inf < prev    next >
Encoding:
Windows Setup INFormation  |  2008-10-23  |  2.0 KB  |  70 lines

  1. ;
  2. ; INF file for installing the VirtualBox Guest Mouse
  3. ; (driver for Windows 2000 and later).
  4. ;
  5. ; Copyright (C) 2006-2007 Sun Microsystems, Inc.
  6. ;
  7. ; This file is part of VirtualBox Open Source Edition (OSE), as
  8. ; available from http://www.virtualbox.org. This file is free software;
  9. ; you can redistribute it and/or modify it under the terms of the GNU
  10. ; General Public License (GPL) as published by the Free Software
  11. ; Foundation, in version 2 as it comes in the "COPYING" file of the
  12. ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
  13. ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
  14. ;
  15. ; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
  16. ; Clara, CA 95054 USA or visit http://www.sun.com if you need
  17. ; additional information or have any questions.
  18. ;
  19.  
  20. [Version]
  21. Signature="$Windows NT$"
  22. Class=Mouse
  23. ClassGuid={4D36E96F-E325-11CE-BFC1-08002BE10318}
  24. DriverVer = 10/23/2008,2.0.4
  25. CatalogFile=VBoxMouse.cat
  26.  
  27. [SourceDisksNames]
  28. 1 = %VBoxMouse.MediaDesc%
  29.  
  30. [SourceDisksFiles]
  31. VBoxMouse.sys = 1
  32.  
  33. [DestinationDirs]
  34. DefaultDestDir = 12    ; DIRID_DRIVERS
  35.  
  36. [Manufacturer]
  37. %SUN%=VBoxMouse
  38.  
  39. [DefaultInstall]
  40. ;
  41. ; DefaultInstall section is used to install the class filter driver.
  42. ;
  43. CopyFiles = @VBoxMouse.sys
  44. AddReg = VBoxMouse_AddReg
  45.  
  46. [VBoxMouse_AddReg]
  47. HKLM, System\CurrentControlSet\Control\Class\{4D36E96F-E325-11CE-BFC1-08002BE10318}, UpperFilters, 0x00010000, "VBoxMouse", "mouclass"
  48.  
  49. [DefaultInstall.Services]
  50. AddService = VBoxMouse, , VBoxMouse_Service_Inst
  51.  
  52.  
  53. [VBoxMouse_Service_Inst]
  54. DisplayName    = %VBoxMouse.SvcDesc%
  55. ServiceType    = %SERVICE_KERNEL_DRIVER%
  56. StartType      = %SERVICE_DEMAND_START%
  57. ErrorControl   = %SERVICE_ERROR_IGNORE%
  58. ServiceBinary  = %12%\VBoxMouse.sys
  59.  
  60.  
  61. [Strings]
  62. VBoxMouse.SvcDesc       = "VirtualBox Guest Mouse Service"
  63. VBoxMouse.MediaDesc     = "VirtualBox Guest Mouse Driver Installation Media"
  64. SUN                     = "Sun Microsystems, Inc."
  65.  
  66. ; Useful constants
  67. SERVICE_KERNEL_DRIVER = 1
  68. SERVICE_DEMAND_START  = 3
  69. SERVICE_ERROR_IGNORE  = 0
  70.