不使用映射驱动器浏览目录

发布于 2024-07-06 08:27:34 字数 125 浏览 6 评论 0原文

是否有应用程序或方法可以在不使用映射驱动器的情况下浏览需要不同登录凭据的目录?

该问题是由于一种登录凭据而引起的,Windows 资源管理器只允许您将其映射到一个驱动器,而不允许使用相同的登录凭据映射到不同的驱动器。

Is there an app or way to browse a directory that requires different login credentials without using a mapped drive?

The issue is given one login credential Windows Explorer only allows you to map it to one drive and disallows using the same login credential to map to a different drive.

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

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

发布评论

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

评论(2

请止步禁区 2024-07-13 08:27:34

这根本不是真的……您可以使用相同的登录凭据对多个服务器进行身份验证。 你不能做的是:

  • 自动通过第二台服务器的身份验证
  • 使用不同的凭据连接到同一台服务器

我的理解是,这两个问题的原因是 Windows 按服务器名称存储凭据

That's simply not true...you can authenticate with the same login credentials to multiple servers. What you can't do is:

  • Be automatically authenticated to the 2nd server
  • Connect to the same server with different credentials

My understanding is that the reason for both problems is that Windows stores the credentials by server name.

痴情换悲伤 2024-07-13 08:27:34

据我所知,您无法将一个驱动器映射到同一服务器上具有一个用户名/密码的共享文件夹,而另一个映射驱动器具有不同的用户名和密码。

如果您以编程方式执行此操作,则可以将多个凭据添加到凭据缓存中,这将允许您使用多个权限集向自己授权。

我始终能够使用相同的用户名和密码将驱动器映射到两个不同的服务器。

例如,

net use x: \\server1\shareFolder /user:domain\username
net use y: \\server2\shareFolder /user:domain\username

如果您希望将网络共享映射为当前用户,则可以省略 /user 部分。

只要有足够的驱动器号,您就可以在不同的计算机上拥有任意多个网络驱动器。

或者,您可以使用 unc 路径 \server1\share1 和 \server2\share1,如果您当前未登录,因为没有访问权限,Windows 将提示您输入用户名和密码。

As far as I know, you cant map a drive to a shared folder with one username/password on the same server as another mapped drive with a different username and password.

If you are doing it programmatically you can add multiple credentials to the credential cache, that would allow you to authorise yourself with multiple permission sets.

I've always been able to map drives using the same username and password to two different servers.

For example

net use x: \\server1\shareFolder /user:domain\username
net use y: \\server2\shareFolder /user:domain\username

You can omit the /user section if you want the network share to be mapped as the current user.

You can have as many network drives as you want on different machines as long as you have enough drive letters.

alternatively you can use the unc path \server1\share1 and \server2\share1, if your username and password which you are not currently logged in as do not have access windows will prompt you for a username and password.

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