Source code of Windows XP (NT5)
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.

72 lines
1.1 KiB

  1. <%
  2. ' iiwiznew.inc
  3. 'Page 1 - Welcome
  4. 'Page 7 - FINISH
  5. Const FINISH = 7
  6. 'Page 2
  7. Const SITETYPE = 2
  8. 'Page 3
  9. Const NODENAME = 3
  10. 'Page 4
  11. Const BINDINGS = 4
  12. Const WEBTCPDEFAULT = 80
  13. Const FTPTCPDEFAULT = 21
  14. Const SSLDEFAULT = 443
  15. 'Page 5
  16. Const PATHNAME = 5
  17. 'Page 6
  18. Const ACCESSPERMS = 6
  19. Dim LAST
  20. LAST = 6
  21. Const SITE = 0
  22. Const VDIR = 1
  23. Const DIR = 2
  24. Const WEB = 0
  25. Const FTP = 1
  26. Const SWEB = "Web"
  27. Const SFTP = "FTP"
  28. Const IIS = "IIs"
  29. Const SDIR = "Directory"
  30. Const SVDIR = "VirtualDir"
  31. Const SSITE = "Server"
  32. Const SCOMP = "Computer"
  33. Const SVC = "Service"
  34. Const W3SVC = "W3SVC"
  35. Const FTPSVC = "MSFTPSVC"
  36. Const COMP = "COMP"
  37. Const IISCOMPUTER = "IIsComputer"
  38. Const BASEPATH = "IIS://localhost/"
  39. Const ROOT = "/ROOT"
  40. 'This determines whether we set access perms or call the perm wizard...
  41. Const COMPLETE = True
  42. Const CANRESTART = False
  43. Dim NODETYPES
  44. NODETYPES = Array("server","vdir","dir")
  45. Dim SITETYPES
  46. SITETYPES = Array(SWEB, SFTP)
  47. ' The site type identifiers used by the cache are different from
  48. ' those used here. ICK!
  49. Dim CACHE_SITETYPES
  50. CACHE_SITETYPES = Array( "www", "ftp" )
  51. Dim SERVICES
  52. SERVICES = Array(W3SVC,FTPSVC)
  53. %>