Jump to content

Mapped Network Shared drives using variable username & password


ds10025
 Share

Recommended Posts

DriveMapAdd("D:","\\servername",0,$username,$password) ?

Thanks for the reply spammer.

But, I would like to set the username to be the shared folder.

Eg \\servername\%username%

I know this is possible using net use. Just wonder if it is possible using drivemapadd.

Link to comment
Share on other sites

Ohh, i see, he also needs to provide the username and password for the connection..

If you need to supply alternate credentials for the purpose of mapping the drive, but want the drive to map for the currently logged in user:

$Username = "Username"
$Password = "Password"
DriveMapAdd("D:","\\servername"&@UserName,0,$username,$password)

this will map the drive letter D: to the Currently logged in user, using the Username and Password provided by setting the two variables at the top of the script.

Link to comment
Share on other sites

Ohh, i see, he also needs to provide the username and password for the connection..

If you need to supply alternate credentials for the purpose of mapping the drive, but want the drive to map for the currently logged in user:

$Username = "Username"
$Password = "Password"
DriveMapAdd("D:","\\servername"&@UserName,0,$username,$password)

this will map the drive letter D: to the Currently logged in user, using the Username and Password provided by setting the two variables at the top of the script.

Thanks again this might work.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...