如何从批处理文件中获取驱动器列表?
我正在尝试获取用于系统升级的所有映射驱动器的列表,并希望通过批处理文件获取此信息。 我怎样才能做到这一点?
对于奖励积分: 如何编写新服务器上这些驱动器映射的脚本?
I'm trying to get a list of all my mapped drives for a system upgrade and would like to get this info via a batch file. How can I do this?
For Bonus points:
How can I script the mapping of these drives on the new server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当前映射的列表将由以下方式返回
传输将像这样工作(为了有趣1,让我们在批处理脚本而不是 VBScript 中执行此操作):
输出如下所示:
只需存储该内容在批处理文件中,您就可以开始了。
1 事实上,“有趣”这个词用在这里并不恰当。 ;-)
The list of current mappings will be returned by
The transfer would work like this (for the fun1 of it, lets do that in batch script instead of VBScript):
output goes something like this:
Just store that in a batch file and you are good to go.
1 Actually, "fun" is not the right word here. ;-)
列出映射的驱动器
映射新驱动器
To list the mapped drives
To map a new drive
您可以使用 vbscript 来完成此操作
并且可以使用以下命令映射网络驱动器
You can do this using vbscript
And you can map network drives with