home *** CD-ROM | disk | FTP | other *** search
/ Chip 2009 November / Chip_2009.11_CD.iso / I386 / NETUPNPH.IN_ / netupnph.inf
Encoding:
Text (UTF-16)  |  2008-04-14  |  6.3 KB  |  120 lines

  1. ; -- upnphost.inf --
  2. ;
  3. ; Universal Plug & Play Device Host Support
  4. ;
  5. ; Copyright (c) 1993-1997, Microsoft Corporation
  6.  
  7. [version]
  8. signature="$Windows NT$"
  9. LayoutFile=layout.inf
  10. Provider=%Msft%
  11. DriverVer=07/01/2001,5.1.2600.5512
  12.  
  13. ;
  14. ; Installed by hivesys.inx
  15. ;
  16. [DefaultInstall]
  17. CopyFiles               = CpyFiles_Sys
  18. Uninstall               = upnphost.Remove
  19. StartServices           = SSDPSRV, HTTP
  20. RegisterDlls            = upnphost.Register
  21.  
  22. [upnphost.Remove]
  23. UnregisterDlls          = upnphost.Unregister
  24.  
  25. ;
  26. ; Services Sections
  27. ;
  28. [DefaultInstall.Services]
  29. ; 0x10 = SPSVCINST_NOCLOBBER_STARTTYPE
  30. AddService = upnphost, 0x410,     upnphost_Service_Inst
  31. AddService = SSDPSRV, 0x410,     UPNP_Service_Inst,  UPNP_Evt
  32.  
  33. [DefaultInstall.Remove.Services]
  34. DelService = upnphost
  35. DelService = SSDPSRV
  36.  
  37. ;
  38. ; COM Object registration/Perf counters
  39. ;
  40. [upnphost.Register]
  41. 11,, upnp.dll, 1
  42. 11,, upnphost.dll, 1
  43. 11,, upnpcont.exe,,,"/regserver"
  44.  
  45. [UPNP.Unregister]
  46. 11,, upnp.dll, 1
  47. 11,, upnphost.dll, 1
  48. 11,, upnpcont.exe,,,"/unregserver"
  49.  
  50. [DestinationDirs]
  51. CpyFiles_Sys        = 11                ;System32
  52.  
  53. ;
  54. ; Copy Files sections
  55. ;
  56.  
  57. [CpyFiles_Sys]
  58. ssdpsrv.dll,,,2
  59. ssdpapi.dll,,,2
  60. upnp.dll,,,2
  61. upnphost.dll,,,2
  62. upnpcont.exe,,,2
  63. udhisapi.dll,,,2
  64.  
  65. [CpyFiles_Sys.Security]
  66. "D:P(A;;GRGX;;;BU)(A;;GA;;;BA)(A;;GA;;;SY)(A;;GRGX;;;WD)"
  67.  
  68. ;
  69. ; Service Install Sections
  70. ;
  71.  
  72. [upnphost_Service_Inst]
  73.  
  74. Description     = %UPNPHOST_Desc%
  75. DisplayName     = %UPNPHOST_Display%
  76. ServiceType     = 0x20 ;SERVICE_WIN32_SHARE_PROCESS
  77. StartType       = 3
  78. ErrorControl    = 1
  79. StartName       = "NT AUTHORITY"\LocalService
  80. ServiceBinary   = %11%\svchost.exe -k LocalService
  81. AddReg          = upnphost.AddReg.Secure, upnphost.AddReg 
  82. Dependencies    = SSDPSRV, HTTP
  83. Security        = "D:(A;;GA;;;SY)(A;;GA;;;BA)(A;;GRGX;;;PU)(A;;GA;;;SO)(A;;GRRP;;;AU)(A;;CCDCLCSWLOCRRC;;;LS)"
  84.  
  85.  
  86. [upnphost.AddReg]
  87. HKR, Parameters, ServiceDll, 0x20000, "%%SystemRoot%%\System32\upnphost.dll"
  88. HKLM, "Software\Microsoft\UPnP Device Host\HTTP Server", "MaxConnections", 0x00010001, 0x00000050
  89. HKLM, "Software\Microsoft\UPnP Device Host\HTTP Server\VROOTS",,0x0010
  90.  
  91. [upnphost.AddReg.Secure]
  92. HKLM, "Software\Microsoft\UPnP Device Host",    ,               0x10  ;FLG_ADDREG_KEYONLY
  93.  
  94. [upnphost.AddReg.Secure.Security]
  95. "D:PAR(A;CI;KA;;;BA)(A;CIIO;KA;;;CO)(A;CI;KA;;;LS)(A;CI;KA;;;SY)(A;CI;KR;;;BU)"
  96.  
  97. [UPNP_Service_Inst]
  98. Description     = %UPNP_Desc%
  99. DisplayName     = %UPNP_Display%
  100. ServiceType     = 0x20 ;SERVICE_WIN32_SHARE_PROCESS
  101. StartType       = 3
  102. StartName       = "NT AUTHORITY"\LocalService
  103. ErrorControl    = 1
  104. ServiceBinary   = %11%\svchost.exe -k LocalService
  105. Security        = "D:(A;;GA;;;SY)(A;;GA;;;BA)(A;;GRGX;;;PU)(A;;GA;;;SO)(A;;GRRP;;;AU)(A;;RPWPDTRC;;;LS)"
  106. AddReg          = UPNP.AddReg
  107. Dependencies    = HTTP
  108.  
  109. [UPNP.AddReg]
  110. HKR, Parameters, ServiceDll, 0x20000, "%%SystemRoot%%\System32\ssdpsrv.dll"
  111.  
  112. [Strings]
  113. Msft = "Microsoft"
  114.  
  115. UPNPHOST_Display = "Узел универсальных PnP-устройств"
  116. UPNPHOST_Desc = "Поддерживает универсальные PnP-устройства узла."
  117.  
  118. UPNP_Display = "Служба обнаружения SSDP"
  119. UPNP_Desc = "Включить обнаружение UPnP-устройств в домашней сети."
  120.