在DOS或Powershell中获取网络共享的物理路径

发布于 2024-12-05 17:48:35 字数 302 浏览 0 评论 0原文

简单的问题,但我似乎找不到或弄清楚答案。

我有一个指示Windows网络共享的变量,例如

\\myBoxName\networkshare\shared

在DOS或powershell中(最好是前者,尽管这不是什么大问题),我需要获取另一个指示该网络共享的物理路径的变量值。所以我正在寻找的答案是这样的......

D:\Networkshare\shared

脚本正在共享所在的盒子上运行,如果有帮助的话。

干杯, 马特

Simple question but I can't seem to find or figure out the answer.

I have a variable which indicates a windows network share, e.g.

\\myBoxName\networkshare\shared

Within either DOS or powershell (preferably the former, although it's not a big deal) I need to get another variable value that indicates the physical path of that network share. So the answer I'm looking for is something like ...

D:\Networkshare\shared

The script is running on the box on which the share is located, if that helps.

Cheers,
Matt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

临走之时 2024-12-12 17:48:35

试试这个:

(Get-WmiObject Win32_Share -filter "Name LIKE 'shared'").path # return the path of the share named 'shared"

try this:

(Get-WmiObject Win32_Share -filter "Name LIKE 'shared'").path # return the path of the share named 'shared"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文