Sidebar

How to add credentials to a network share in windows?

0 votes
18.3K views
asked Jan 27, 2016 by rich-c-2789 (16,180 points)
My channel uses a File reciever and I need to add credentials but there is no place to add them on the configurations tab.

1 Answer

0 votes

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:

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?

 

answered Jan 27, 2016 by rich-c-2789 (16,180 points)
...