home *** CD-ROM | disk | FTP | other *** search
/ Steganos Hacker Tools / SHT151.iso / programme / scanner / nmapNTsp1 / Win_2000.exe / Packet_2k.inf < prev    next >
Encoding:
Windows Setup INFormation  |  2000-03-22  |  3.0 KB  |  92 lines

  1. ;-------------------------------------------------------------------------
  2. ; PACKET.INF -- Sample Protocol Driver
  3. ;
  4. ; Copyright (c) 1993-1999, Microsoft Corporation
  5. ;-------------------------------------------------------------------------
  6. [version]
  7. Signature   = "$Windows NT$"
  8. Class       = NetTrans
  9. ClassGUID   = {4d36e975-e325-11ce-bfc1-08002be10318}
  10. Provider    = %Msft%
  11. DriverVer   = 06/16/1999,5.00.2064
  12.  
  13. [Manufacturer]
  14. %Msft%=MSFT
  15.  
  16. [MSFT]
  17. %PACKET_Desc%=Install, MS_PACKET
  18.  
  19. ;-------------------------------------------------------------------------
  20. ; Installation Section
  21. ;-------------------------------------------------------------------------
  22. [Install]
  23. AddReg=Inst_Ndi
  24. Characteristics=0 ; Has no characterstic
  25. CopyFiles=CpyFiles_Sys,CpyFiles_dll
  26.  
  27. ;-------------------------------------------------------------------------
  28. ; Ndi installation support
  29. ;-------------------------------------------------------------------------
  30. [Inst_Ndi]
  31. HKR,Ndi,Service,,"Packet"
  32. HKR,Ndi,HelpText,,%PACKET_HelpText%
  33. HKR, Ndi\Interfaces, UpperRange,, noupper
  34. HKR,"Ndi\Interfaces","LowerRange",,"ndis5,ndis4"
  35.  
  36. ;-------------------------------------------------------------------------
  37. ; Service installation support
  38. ;-------------------------------------------------------------------------
  39. [Install.Services]
  40. AddService=Packet,,PACKET_Service_Inst
  41.  
  42. [Packet_Service_Inst]
  43. DisplayName     = %PACKET_Desc%
  44. ServiceType     = 1 ;SERVICE_KERNEL_DRIVER
  45. StartType       = 2 ;SERVICE_AUTO_START
  46. ErrorControl    = 1 ;SERVICE_ERROR_NORMAL
  47. ServiceBinary   = %12%\packet.sys
  48. LoadOrderGroup  = "PNP_TDI"
  49. AddReg          = AddReg_PACKET_Service_Inst
  50. Description     = %PACKET_Desc%
  51.  
  52. [AddReg_PACKET_Service_Inst]
  53. HKLM,"System\CurrentControlSet\Services\Packet","TextModeFlags",%REG_DWORD%,0x0001
  54. HKR,"Parameters","Test",,"Hello"
  55.  
  56. ;-------------------------------------------------------------------------
  57. ; Support for removal of static registry settings
  58. ;-------------------------------------------------------------------------
  59. [Install.Remove]
  60. DelReg=Del_Static_Reg
  61.  
  62. [Install.Remove.Services]
  63. DelService=Packet
  64.  
  65. [Del_Static_Reg]
  66. HKLM,"System\CurrentControlSet\Services\Packet","TextModeFlags"
  67.  
  68. ;-------------------------------------------------------------------------
  69. ; Declare Destination Directories for file copy/deletion
  70. ;-------------------------------------------------------------------------
  71. [DestinationDirs]
  72. CpyFiles_Sys    = 12    ; DIRID_DRIVERS
  73. CpyFiles_dll    = 11    ; system32
  74.  
  75. ;-------------------------------------------------------------------------
  76. ; Files to Copy/Delete - Referenced by Install and Remove sections above
  77. ;-------------------------------------------------------------------------
  78. [CpyFiles_Sys]
  79. packet.sys,,,2
  80.  
  81. [CpyFiles_dll]
  82. packet.dll,,,2
  83.  
  84. [Strings]
  85. Msft = "Politecnico di torino"
  86. PACKET_Desc = "Packet capture driver v2.02"
  87. PACKET_HelpText = "Packet capture driver by Netgroup of Politecnico di Torino. Version v2.02."
  88. REG_DWORD = 0x10001
  89.  
  90.  
  91.  
  92.