home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / inf / ts_generic.inf < prev    next >
Encoding:
Text (UTF-16)  |  2008-01-19  |  4.1 KB  |  86 lines

  1. ;
  2. ; ts_generic.inf:
  3. ; a simple catch all inf for redirected devices
  4. ; Copyright (c) Microsoft Corporation.
  5. ;
  6.  
  7. [Version]
  8. Signature="$WINDOWS NT$"
  9. Class=Sample
  10. ClassGuid={88A1C342-4539-11d3-B88D-00C04FAD5171}
  11. Provider=%Msft%
  12. LayoutFile=layout.inf
  13. DriverVer=06/21/2006,6.0.6001.18000
  14.  
  15. [Manufacturer]
  16. %MSFTTS%=Generic,NTx86
  17.  
  18. [Generic.NTx86]
  19. %TSDeviceDescription%=TS_Generic_Install,TS_GENERIC_PNP_DEVICE
  20. %TSPOSDeviceDescription%=TS_Generic_Install,TS_POS_DEVICE
  21.  
  22. [ClassInstall32]
  23. AddReg=WDF_RegistryAdd
  24.  
  25. [WDF_RegistryAdd]
  26. HKR,,,,%TSClassName%
  27. HKR,,Icon,,"-10"
  28.  
  29. ; =================== WUDF ts_generic Driver ==================================
  30.  
  31. [TS_Generic_Install]
  32. SubClass=StillImage
  33.  
  34. [TS_Generic_Install.hw]
  35. AddReg=Device_AddReg
  36.  
  37. [TS_Generic_Install.Services]
  38. AddService=WUDFRd,0x000001fa,WUDFRD_ServiceInstall
  39.  
  40. [TS_Generic_Install.CoInstallers]
  41. AddReg = TS_Generic_Install.CoInstallers_AddReg
  42.  
  43. [TS_Generic_Install.Wdf]
  44. Needs = TS_Generic_Install_WdfBasic
  45. UmdfServiceOrder=UsbDr
  46. ; HID devices use METHOD_NEITHER
  47. ; in order to make them work, we need following line.
  48. UmdfMethodNeitherAction=Copy
  49.  
  50. [TS_Generic_Install_WdfBasic]
  51. UmdfService=UsbDr, UsbDr_Install
  52. UmdfImpersonationLevel=impersonation
  53.  
  54.  
  55. [TS_Generic_Install.CoInstallers_AddReg]
  56. HKR,,CoInstallers32,0x00010008,"WUDFCoinstaller.dll"
  57.  
  58.  
  59. [Root_AddReg.security]
  60. "D:P(A;OICI;GA;;;SY)(A;OICI;GA;;;BA)(A;OICI;GR;;;LS)"
  61.  
  62. [Device_AddReg]
  63. HKR,"WUDF"
  64. HKR,"WUDF","DriverList",0x00010000,"UsbDr"
  65. HKR,"WUDF","DeviceGroupId",0x00000000, "TSRedirectedDevices"
  66.  
  67. [WUDFRD_ServiceInstall]
  68. ServiceType=1
  69. StartType=3
  70. ErrorControl=1
  71. ServiceBinary=%12%\WUDFRd.sys
  72.  
  73. [UsbDr_Install]
  74. UmdfLibraryVersion=1.0.0
  75. ServiceBinary=%12%\UMDF\UsbDr.dll
  76. DriverCLSID="{1b7cf8de-e34b-40d0-8466-ca06a10b0d22}"
  77.  
  78.  
  79. [Strings]
  80. ;; Non Localizable Strings
  81. MSFTTS="Microsoft Internal (Terminal Services)"
  82. TSClassName="TS generic Device Class"
  83. TSDeviceDescription="Terminal Server Generic PNP Redirected Device"
  84. TSPOSDeviceDescription="Terminal Server POS Redirected Device"
  85. Msft="Microsoft"
  86.