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.

102 lines
3.7 KiB

  1. File organization for Ballgame Application (NCADMIN.EXE)
  2. Distribution Tree consists of the following directory hierarchy which can
  3. be "rooted" any where in the drive (i.e. does not need to be at the root
  4. dir of a particular volume).
  5. <Distribution Root Dir>
  6. |
  7. +-- ncadmin.inf (required file)
  8. |
  9. +-\NetUtils (Network Admin Utilities)
  10. | |
  11. | +- util1.exe
  12. | +- util2.exe
  13. | ...
  14. |
  15. +-\Client_1 (supported net client 1)
  16. | |
  17. | +-\otn (only required by the client used for OTN installs)
  18. | | |
  19. | | +-- setup.exe (or other uncomressed setup program)
  20. | | +-- uncompressed net setup files used on floppy
  21. | |
  22. | +-\netsetup (over the network setup files)
  23. | | |
  24. | | +-- setup.exe (or other uncomressed setup program)
  25. | | +-- net setup files (uncompressed?)
  26. | |
  27. | +-\disks (dir tree of supported installation floppys)
  28. | | (NOTE: Files on 1.44M & 1.2M disks are the same!)
  29. | |
  30. | +-\Disk1
  31. | | |
  32. | | +-- files that belong on disk1
  33. | |
  34. | +-\Disk2
  35. | | |
  36. | | +-- files that belong on disk2
  37. | |
  38. | +-\(etc.)
  39. | |
  40. | ...
  41. |
  42. +-\Client_2 (supported net client 2)
  43. | |
  44. | ... etc.
  45. |
  46. |
  47. ...
  48. The "NetUtils" dir contains the utilities that are available via the
  49. "Network Administration Utilities" option.
  50. Network clients that have a "disks" subdirectory will appear in the
  51. "Select Network Client" list box of the "Make Installation Disks" option.
  52. Network clients that have a "netsetup" subdirectory will appear in
  53. the "Install Network Client" list box of the "Make Over the Network
  54. Installation Disk" option.
  55. The "ncadmin.inf" file is required as that's the "signature" file used
  56. to identify the directory as a distribution tree as well as provides
  57. information on the network clients. The contents of the ncadmin.inf file
  58. are described here:
  59. [Dirs]
  60. the "dirs" section provides a descriptive name for each network
  61. client dir. If a client sub dir is not listed here, then the
  62. subdirectory name will be displayed in the list box as opposed to
  63. the more descriptive text. Normally there should be one entry
  64. for each sub directory under the distribution root dir.
  65. [DontShowDirs]
  66. directories under the "distribution" root that shouldn't be displayed
  67. in any net client list boxes. Directories listed here should not be in
  68. the [Dirs] section described above (or they won't be displayed).
  69. [Sizes]
  70. This section contains the size information of each network client
  71. subdirectory. The first entry to the right of the equals sign is the
  72. number of files in all the subdirectories of that client and the
  73. second entry is the sum total of all the file sizes. This information
  74. is used by the progress (i.e. % complete) indication during the
  75. file copy process.
  76. [OTN Install]
  77. this section is used to configure the over the net installation
  78. floppy. The client software to use is listed in the "Client" entry.
  79. The value should be the subdirectory relative to the distribution
  80. root that contains the setup, configuration and executable files
  81. for the OTN boot floppy. The "inf" entry contains the filename of the
  82. inf file that contains the netcard configuration. This is currently
  83. configured for the format used by the MS Network Clients for DOS (
  84. a.k.a. freeball) inf.
  85. [OTN Common Files]
  86. each entry in this section is the name of a file that is ALWAYS copied
  87. to the boot floppy regardless of the protocol. Protocol and Netcard
  88. specific files are extracted from the inf file referenced in the
  89. [OTN Install] section described above.
  90.