mapping a drive letter to a local folder ?

  • Thread starter Thread starter proteanthread
  • Start date Start date
P

proteanthread

is it possible to map a drive letter to a local folder without mapping
it as a network drive and so that it stays this drive letter even when
shutting down / rebooting (permanently or until i remove the drive letter) ?
 
proteanthread said:
is it possible to map a drive letter to a local folder without mapping
it as a network drive and so that it stays this drive letter even when
shutting down / rebooting (permanently or until i remove the drive letter)
?

It certainly is! Just map it to

\\%ComputerName%\c$\SomeFolder
or
\\127.0.0.1\c$\SomeFolder

%ComputerName% is the NetBIOS name of your PC.
 
?

It certainly is! Just map it to

\\%ComputerName%\c$\SomeFolder
or
\\127.0.0.1\c$\SomeFolder

%ComputerName% is the NetBIOS name of your PC.

without mapping it as a network drive ?
 
proteanthread said:
without mapping it as a network drive ?

Put this command into your startup script:
subst P: "c:\SomeFolder"

The effect is the same as with a network drive.
 
map a drive letter to a local folder without mapping







Put this command into your startup script:
subst P: "c:\SomeFolder"

The effect is the same as with a network drive.- Hide quoted text -

- Show quoted text -


thanks, it worked.
 
Back
Top