Access Network Folder using Different User Credential

Solution 1:

Map a network drive to that network path and choose the option to use a different username and password.

Solution 2:

from the CLI: net use * \\server\share password /user:domain\user

note the * will use the next available drive letter. If you prefer to use a specific driver letter, replace * with X:

Also note that you cannot simultaneously make two connections to a single server using two different user accounts. Type net use at the command prompt to see what connections are already open then net use \\server\share /delete to remove them before mapping the new drive.