15

I have a registry key under [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run] The value of the key is

"c:\windows\system32\cmd.exe" /c subst t: e:\MyFolder

More often than not when I boot the computer the subst command appears to only half work. If I open a command prompt I can use t: fine. However if I look in windows explorer T: is not there and if I type it into the address bar I get an error message saying "Windows can't find 't:'. Check the spelling and try again."

This is on Windows 7 Enterprise 64 bit.

Any ideas?

Dan
  • 245

4 Answers4

22

This probably happens because the run command runs elevated (as administrator). If you run the subst command not elevated you will see it in Windows Explorer. You can test this running the subst on an elevated command prompt.

Gareth
  • 19,080
MarianoC
  • 229
17

This command creates a persistent Z: subst of C:\DirectoryName

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices" /v Z: /t REG_SZ /d "\??\C:\DirectoryName" /f
Hank
  • 186
1

Use PSubst 3 utility. It is a DOS batch file that maps a drive permanently. Works in every windows version after XP.

Github Repository

Download latest version Direct link

cyberponk
  • 221
1

https://github.com/ildar-shaimordanov/psubst

This is original repository of the psubst tool enabling SUBSTed drives be persistent between rebooting.

jsxt
  • 131