通过批处理查找网络使用情况

发布于 2024-10-31 07:52:44 字数 41 浏览 1 评论 0原文

您好,只是想知道是否可以创建一个列出所有网络使用路径的 txt 文件

Hi just wanted to know if its possible to create a txt file listing all net use path

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

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

发布评论

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

评论(2

┊风居住的梦幻卍 2024-11-07 07:52:44

您可以这样做

net use > c:\netusepaths.txt

,这将为您提供文本文件中的路径(只需选择您想要的文件名和位置)。

如果您只想要路径打开的行(而不是 net use 的整个输出),请尝试

net use | find "OK" > c:\netusepaths.txt

You can do

net use > c:\netusepaths.txt

and that will give you the paths in a text file (just pick the filename and location you want).

If you want just the lines with the paths on (rather than the whole output of net use) try

net use | find "OK" > c:\netusepaths.txt
泪痕残 2024-11-07 07:52:44

这是你需要的吗?

net use > c:\temp\test.txt

Is this what you need?

net use > c:\temp\test.txt
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文