"net use" on domains

  • Thread starter Thread starter Adrian Marsh (NNTP)
  • Start date Start date
A

Adrian Marsh (NNTP)

Is it possible, when using the "net use" command to specify a domain,
eg: "net use \\my-domainname /user:my-domainname\admin"

So that whenever I access a machine on that is part of 'my-domainname'
it uses the admin credentials?

A.
 
Adrian said:
Is it possible, when using the "net use" command to specify a domain,
eg: "net use \\my-domainname /user:my-domainname\admin"

So that whenever I access a machine on that is part of 'my-domainname'
it uses the admin credentials?

A.

Net use needs to specify a server & a share. However, if you pass the
credentials along for a share on a server, it should use the same cached
credentials for the next drive mapping/connection on that server.

net use x: \\server\share /user:domain\user password
net use y: \\server\share
etc.
 
thought so.
Net use needs to specify a server & a share. However, if you pass the
credentials along for a share on a server, it should use the same cached
credentials for the next drive mapping/connection on that server.

net use x: \\server\share /user:domain\user password
net use y: \\server\share
etc.
 
Back
Top