ben said:
I would like to know how to create a whole batch of
folders on a shared drive all at once. At the moment I
only know only how to create one at a time.
Batch files are your friend.
First, create a file containing the dir names, one on each line.
E.g., run this at a command prompt:
for /L %n in (1,1,9) do @echo d%l >>dirs.txt
This creates a file containing
d1
d2
d3
...
d9
in it.
Next, run this line at the command prompt:
for /F %f in (dirs.txt) do @md %f
For each line in dirs.txt, create a directory by that name.
C.f., mk

MSITStore:C:\WINNT\Help\ntcmds.chm::/batch_cmds.htm
also accessible via Start-->Help, Index, batch commands,
overview.
HTH,
-Jeremy