PowerShell 技能连载 - 解析映射驱动器

是否想知道网络驱动器背后的原始 URL?以下是一个简单的 PowerShell 方法:

1
2
3
4
5
6
7
8
9
# make sure the below drive is a mapped network drive
# on your computer
$mappedDrive = 'z'


$result = Get-PSDrive -Name $mappedDrive |
Select-Object -ExpandProperty DisplayRoot

"$mappedDrive -> $result"

PowerShell 技能连载 - 解析映射驱动器

http://blog.vichamp.com/2018/09/19/resolving-mapped-drive/

作者

吴波

发布于

2018-09-19

更新于

2022-07-06

许可协议

评论