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.

70 lines
1.5 KiB

  1. <%
  2. ' iiwiznew.inc
  3. 'Page 1 - Welcome
  4. 'Page 5 - FINISH
  5. Const FINISH = 5
  6. 'Page 2
  7. Const HOW = 2
  8. 'Page 3
  9. Const TEMPLATE = 3
  10. ' end
  11. 'Page 4
  12. 'Const ACL = 4
  13. 'Const L_ACL = "Windows NT Directory and File Permissions"
  14. 'Const L_ACL_DESC = "Windows NT directory and file permissions should match your site's web security settings."
  15. 'Const L_NOTONFAT = "If the site you are configuring maps to a FAT partition, directory and file permissions do not apply."
  16. 'Const L_RECOMMENDED = "The recommended Windows NT directory and file permissions for your site are:"
  17. 'Const L_NOCHANGEACLS = "You want your directory and file permissions unaltered."
  18. 'Const L_ADDACLS = "You want to leave your current directory and file permissionsintact, and add any additional permissions that are necessary for web access."
  19. 'Const L_REPLACEACLS = "You want to replace all directory and file permissions."
  20. 'Remove
  21. 'Const RECOMMENDEDACLS1 = "Everyone can Read files"
  22. 'Const RECOMMENDEDACLS2 = "Administrators can Read and Write files"
  23. 'Page 4
  24. Const SUMMARY = 4
  25. Const INDENT = "&nbsp;&nbsp;"
  26. Dim L_RETURN
  27. L_RETURN = chr(13)
  28. Dim LAST
  29. LAST = 4
  30. Const INHERITVALS = 0
  31. Const TEMPLATEVALS = 1
  32. Const REPALCEACLS = 0
  33. Const ADDACLS = 1
  34. Const NOACLS = 2
  35. CANRESTART = FALSE
  36. Const ADS_PROPERTY_CLEAR = 1
  37. ' Node types
  38. Const SITE = 0
  39. Const VDIR = 1
  40. Const DIR = 2
  41. Const SWEB = "Web"
  42. Const SFTP = "FTP"
  43. Const IIS = "IIs"
  44. Const SDIR = "Directory"
  45. Const SVDIR = "VirtualDir"
  46. Const SSITE = "Server"
  47. Const SCOMP = "Computer"
  48. Dim SERVICES
  49. SERVICES = Array(SWEB, SFTP)
  50. %>