In PowerShell, even if you know if the drive is a network drive: see in PowerShell, how to determine if the current drive is a network drive or not?
When I try to get the "root" of the disk, I return the drive letter.
Setting: "Network Usage of MS-Dos" shows that H: really is a mapped network drive:
New connections will be remembered. Status Local Remote Network
Get-PSDrive tells us that Root has a value of H:
PS:24 H:\temp >get-psdrive h Name Provider Root CurrentLocation ---- -------- ---- --------------- H FileSystem H:\ temp
and using system.io.driveinfo does not give us the full answer:
PS:13 H:\ >$x = new-object system.io.driveinfo("h:\") PS:14 H:\ >$x.DriveType Network PS:15 H:\ >$x.RootDirectory Mode LastWriteTime Length Name ---- ------------- ------ ---- d---- 29/09/2008 16:45 h:\
Any idea on how to get this information?
thanks
powershell networking mapped-drive
Jarava
source share