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.

29 lines
1.1 KiB

  1. [Version]
  2. Signature="$Windows NT$"
  3. [Paths]
  4. ;
  5. ; Path exclusions are used to exclude directories from enumeration. You can specify a full
  6. ; path, a partial path, or a single directory. Any part of the path can contain * and ?
  7. ; wildcards, where the * wildcard represents zero or more characters and may be embedded
  8. ; in a string (a*e for instance), and the ? wildcard represents any single character.
  9. ;
  10. ; Exclusions need to be in quotes only if they end in a backslash, but it is recommended
  11. ; that you use them throughout the INF.
  12. ;
  13. "a:\"
  14. "win*\system*"
  15. [Files]
  16. ;
  17. ; File exclusions are used to exclude specific files from enumeration. Though you can use
  18. ; file exclusions to exclude all files in a path, it is more efficient to use the
  19. ; path exclusions instead. File exclusions are used when you need to exclude a specific
  20. ; file (such as a swap file). You may specify the file name only, a partial path to
  21. ; the file, or a complete file spec. All parts of the file spec can contain the * and ?
  22. ; wildcards as described in path exclusions.
  23. ;
  24. "c:\boot*"
  25. "*.tmp"
  26. "win*\*.par"