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.

65 lines
1.4 KiB

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