win7下如何更改映射驱动器路径?

发布于 2024-11-01 19:57:33 字数 149 浏览 0 评论 0原文

在此处输入图像描述

现在已映射到 \\192.168.248.128,如何更改为\\192.168.66.2 改为?

enter image description here

Now it's mapped to \\192.168.248.128,how to change it to \\192.168.66.2 instead?

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

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

发布评论

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

评论(3

傲影 2024-11-08 19:57:33

如果您想使用命令行,请查看下面的下一个答案

但您也可以编辑 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.

几味少女 2024-11-08 19:57:33

net use 可以就地修改驱动器,而无需删除和重新创建。您只需执行该命令,就像映射一个新驱动器一样,它会替换它。命令语法为:

net use [Drive name] [UNC path]

示例:

C:\> net use U: \\192.168.66.2
U: has a remembered connection to \\192.168.248.128. Do you
want to overwrite the remembered connection? (Y/N) [Y]: y
The command completed successfully.

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:

net use [Drive name] [UNC path]

Example:

C:\> net use U: \\192.168.66.2
U: has a remembered connection to \\192.168.248.128. Do you
want to overwrite the remembered connection? (Y/N) [Y]: y
The command completed successfully.
梦与时光遇 2024-11-08 19:57:33

您可以创建另一个映射网络驱动器:

  • 右键单击当前驱动器并单击“断开连接”
  • 右键单击“计算机”并选择映射网络驱动器
  • 配置新驱动器

如果您需要 Windows API,可以使用 WNetAddConnection2

如果您想要 BAT(命令行),您可以尝试 net use 命令行选项。

You can create another mapped network drive:

  • right-click the current drive and click "Disconnect"
  • right-click "Computer" and select Map Network Drive
  • configure the new 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.

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