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

时间:2022-06-11 11:29:32

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.

问题是一个登录凭据Windows资源管理器只允许您将其映射到一个驱动器,并禁止使用相同的登录凭据映射到其他驱动器。

2 个解决方案

#1


1  

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.

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

#2


1  

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.

如果希望将网络共享映射为当前用户,则可以省略/ 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.

或者您可以使用unc path \ server1 \ share1和\ server2 \ share1,如果您当前未登录的用户名和密码没有访问窗口,则会提示您输入用户名和密码。

#1


1  

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.

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

#2


1  

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.

如果希望将网络共享映射为当前用户,则可以省略/ 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.

或者您可以使用unc path \ server1 \ share1和\ server2 \ share1,如果您当前未登录的用户名和密码没有访问窗口,则会提示您输入用户名和密码。