1

When executing the command:

NET USE H: \\fully.qualified.name\dfs\path\to\folder /home,

Windows 10 will only map H: to \\full.unc.name\dfs

When adding the /home designation, the path gets truncated. Drop /home and the full path gets mapped.

Roger
  • 11

1 Answers1

0

How the documentation is written, it doesn't appear you can map network path to a drive letter AND make it home at the same time (in one command). You can just do it in two different commands/lines:

NET USE H: \\fully.qualified.name\dfs\path\to\folder
NET USE H: /home
gregg
  • 6,307