netip6.inf
上传用户:hldy006
上传日期:2015-05-15
资源大小:1189k
文件大小:3k
源码类别:

浏览器

开发平台:

Others

  1. ; NETIP6.INF -- TCP/IP version 6 Protocol
  2. ;
  3. ; IPv6 Installation file for Windows 2000
  4. ;
  5. ; Copyright (c) 1985-2000 Microsoft Corporation
  6. [Version]
  7.     Signature   = "$Windows NT$"
  8.     Class       = NetTrans
  9.     ClassGUID   = {4d36e975-e325-11ce-bfc1-08002be10318}
  10.     Provider    = %Msft%
  11. [Manufacturer]
  12.     %Msft% = Msft
  13. [Msft]
  14.     %MS_TCPIP6.DisplayName% = MS_TCPIP6.Install, MS_TCPIP6
  15. [MS_TCPIP6.Install]
  16.     Characteristics = 0x00
  17.     AddReg          = Registry.MS_TCPIP6.Install
  18. [Registry.MS_TCPIP6.Install]
  19. ; Class Information
  20.     HKR, Ndi, HelpText,   0, %MS_TCPIP6.HelpText%
  21.     HKR, Ndi, Service,    0, "Tcpip6"
  22.     HKR, Ndi, CoServices, %FLG_ADDREG_TYPE_MULTI_SZ%, "Tcpip6"
  23. ; Interfaces
  24.     HKR, NdiInterfaces, UpperRange, 0, "tdi"
  25.     HKR, NdiInterfaces, LowerRange, 0, "ndis5"
  26. ;=====================================
  27. ; Microsoft IPv6 Interface and Service Install
  28. ;=====================================
  29. ; Service install
  30. [MS_TCPIP6.Install.Services]
  31.     AddService      = Tcpip6,    0, Install.AddService.TCPIP6,    NetEventLog
  32. ; Install Tcpip6 service
  33. ;
  34. ; The Tcpip6 driver can be loaded without the Tcpip (IPv4) driver.
  35. ; But we don't test that configuration.
  36. ; Also there's a race - the Tcpip6 driver might start before
  37. ; the Tcpip driver has initialized, in which case
  38. ; the v6-v4 tunnel code will fail to initialize properly.
  39. ; So we create a dependency on Tcpip.
  40. [Install.AddService.TCPIP6]
  41.     DisplayName     = %MS_TCPIP6.TCPIP6.ServiceDescription%
  42.     ServiceType     = 1 ;SERVICE_KERNEL_DRIVER
  43.     StartType       = 1 ;SERVICE_SYSTEM_START
  44.     ErrorControl    = 1 ;SERVICE_ERROR_NORMAL
  45.     ServiceBinary   = %12%tcpip6.sys
  46.     LoadOrderGroup  = PNP_TDI
  47.     Dependencies    = Tcpip
  48.     AddReg          = Registry.Service.TCPIP6
  49.     Description     = %MS_TCPIP6.TCPIP6.ServiceDescription%
  50. ; Install Winsock dependency
  51. [MS_TCPIP6.Install.Winsock]
  52.     AddSock     = Install.Tcpip6Winsock
  53. [Install.Tcpip6Winsock]
  54.     TransportService    = Tcpip6
  55.     HelperDllName       = "%SystemRoot%System32wship6.dll"
  56.     MaxSockAddrLength   = 0x1c
  57.     MinSockAddrLength   = 0x1c
  58. [Registry.Service.TCPIP6]
  59.     HKR, , "TextModeFlags", 0x10001, 0x0001
  60. ;====================================
  61. ; TCP/IP6 Interface and Service Remove
  62. ;====================================
  63. [MS_TCPIP6.Install.Remove]
  64. ;nothing
  65. [MS_TCPIP6.Install.Remove.Services]
  66.     DelService = Tcpip6
  67. [MS_TCPIP6.Install.Remove.Winsock]
  68.     DelSock = Remove.Tcpip6Winsock
  69. [Remove.Tcpip6Winsock]
  70.     TransportService=Tcpip6
  71. ;****************************************************************************
  72. ; [Event Log] sections.
  73. ;****************************************************************************
  74. [NetEventLog]
  75. AddReg = NetEventLog.AddReg
  76. [NetEventLog.AddReg]
  77.     HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%System32netevent.dll"
  78.     HKR,,TypesSupported,0x00010001,7
  79. [Strings]
  80. Msft = "Microsoft"
  81. MS_TCPIP6.DisplayName = "Microsoft IPv6 Protocol"
  82. MS_TCPIP6.HelpText    = "TCP/IP version 6. The next-generation version of the internet protocol that provides communication across diverse interconnected networks."
  83. MS_TCPIP6.TCPIP6.ServiceDescription   = "Microsoft IPv6 Protocol Driver"
  84. ; AddReg flags
  85. FLG_ADDREG_TYPE_EXPAND_SZ   = 0x00020000
  86. FLG_ADDREG_TYPE_MULTI_SZ    = 0x00010000
  87. FLG_ADDREG_TYPE_DWORD       = 0x00010001
  88. FLG_ADDREG_KEYONLY          = 0x00000010