win7下如何更改映射驱动器路径?
现在已映射到 \\192.168.248.128
,如何更改为\\192.168.66.2
改为?
Now it's mapped to \\192.168.248.128
,how to change it to \\192.168.66.2
instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想使用命令行,请查看下面的下一个答案!
但您也可以编辑 Windows 注册表中的设置:“
HKEY_CURRENT_USER\Network\[驱动器盘符]
”当您现在打开一个新的“我的电脑”窗口时(在更改注册表中的目标之后),您可能会看到旧的设置,但这只是一个视觉问题。尝试打开该条目,它应该可以工作!
看看下面 Chris Budy 的有趣评论,它显然解决了视觉问题。
If you want to use the command line have a look to the next answer below!
But you can also edit the settings in Windows Registry: '
HKEY_CURRENT_USER\Network\[Drive letter]
'When you now open a new 'My Computer' window - after changing the target in registry - you will likely see the old settings, but that is only a visual problem. Try to open the entry, and it should work!
Have a look to Chris Budys interesting comment below, that fixes obviously the visual problem.
net use
可以就地修改驱动器,而无需删除和重新创建。您只需执行该命令,就像映射一个新驱动器一样,它会替换它。命令语法为:示例:
net use
can modify a drive in place without deleting and recreating. You simply execute the command as if you're mapping a new drive, and it replaces it instead. The command syntax is:Example:
您可以创建另一个映射网络驱动器:
如果您需要 Windows API,可以使用 WNetAddConnection2。
如果您想要 BAT(命令行),您可以尝试 net use 命令行选项。
You can create another mapped network drive:
If you want Windows API you can use WNetAddConnection2.
If you want a BAT (command line) you can try net use command line option.