1.2k questions
1.4k answers
361 comments
339 users
There are a few ways to do this.
1. Use the "NET USE" command at a command prompt. For example:
net use \\richserver\sharedfolder /user:rich password
To avoid typing the password in plain text use an *. It will then prompt for the password whithout echoing it on the screen.
net use \\richserver\sharedfolder /user:rich * Type the password for \\richserver\sharedfolder:
net use \\richserver\sharedfolder /user:rich *
Type the password for \\richserver\sharedfolder:
To restore credentials at next login use the "persistent" parameter
net use \\richserver\sharedfolder /user:rich * /persistent:yes
2. Open windows explorer and type the path to the remote share. windows should prompt you with a dialog like this:
Enter the credentials and select the "Remember my credentials" check box.
3. Add it via Windows Credentials Manager. Goto:
then
finally enter the path and credentials in this dialog:
Also see there related questions:
How can I connect to a shared folder?
How can I archive to a shared folder on another domain?
How to add credentials to a network share in windows?
How to connect to a remote share in a mapping node with credentials?