1

Possible Duplicate:
How to make SUBST mapping persistent across reboots?

I type the following command in order to create link between the Z: directory to the C:\DIR1\DIR2\DIR3\final_dir directory

  Subst  Z: C:\DIR1\DIR2\DIR3\final_dir

The problem is that after reboot the Z: directory is deleted.

My question is: how do I fix that to get the Z: link directory to persist after a reboot?

1 Answers1

1

Z: is a drive, not a directory.

To answer your question, subst drives are inherently transient.
You need to run that command every time you reboot.

You can do that by putting it in a .bat fil in the Startup directory.

SLaks
  • 8,024