Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.4 KiB

  1. ; Copyright (c) 2000 Microsoft corporation
  2. ;
  3. ; Installation file for Snapshot SDK binaries
  4. ; Target system: Windows 2000 2195
  5. ;
  6. ; Installation:
  7. ; - From Explorer: right click on this file and choose Install
  8. ; - From command line:
  9. ; %systemroot%\System32\rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 .\vssvc.inf
  10. ;
  11. ; Uninstall:
  12. ; - From command line:
  13. ; %systemroot%\System32\rundll32.exe setupapi,InstallHinfSection DefaultUninstall 132 .\vssvc.inf
  14. ;
  15. [Version]
  16. Signature = "$Windows NT$"
  17. Provider = %MSFT%
  18. ; -------------- Table of contents -------------
  19. [DefaultInstall]
  20. CopyFiles = VSS_CopyFiles
  21. [DefaultUninstall]
  22. DelFiles = VSS_DelFiles
  23. [DestinationDirs]
  24. DefaultDestDir = 11 ; system32 directory
  25. [VSS_CopyFiles]
  26. vssvc.exe
  27. [VSS_DelFiles]
  28. vssvc.exe
  29. ; -------------- SCM based installation ---------
  30. [DefaultInstall.Services]
  31. AddService = VSS,,VSS_service_install
  32. [DefaultUninstall.Services]
  33. DelService = VSS
  34. [VSS_service_install]
  35. DisplayName = %VSS_DISPLAY_NAME%
  36. Description = %VSS_DESCRIPTION%
  37. ServiceType = 0x10
  38. StartType = 0x03
  39. ErrorControl = 0x01
  40. ServiceBinary = %11%\vssvc.exe
  41. Dependencies = RPCSS
  42. ; -------------- Misc ---------------------------
  43. [Strings]
  44. MSFT = "Microsoft"
  45. VSS_DESCRIPTION = "Volume Snapshot COM server"
  46. VSS_DISPLAY_NAME = "Volume Snapshot Service"