Click here to Skip to main content
15,881,938 members
Articles / Desktop Programming / Win32

Connect to a UNC Path with Credentials

Rate me:
Please Sign up or sign in to vote.
4.83/5 (47 votes)
16 Oct 2009CPOL2 min read 939.3K   23.4K   95   51
Use NetApi32 to establish and break connections to UNC paths using specified user credentials.

Connection.jpg

Introduction

This article demonstrates how you can connect to a remote resource via a UNC path and pass user credentials. It implements the IDisposable interface so you can use it within a using() block.

Background

I had an ASP.NET site where I wanted to access network resources, but did not have sufficient share permissions because the code ran under the ASP user. I also had a service that copied files every night between file shares in two different domains. I wanted a way to access remote resources without opening up security holes by changing permissions or running as a privileged user.

Using the code

The UNCAccessWithCredentials class implements the Win32 methods NetUseAdd() and NetUseDel() to create the remote connections. Connections added with NetUseAdd are not visible in Explorer. When active, they will show via the DOS Net Use command.

The class also implements the IDisposable interface so that we can use a using() block. Once the end of the block is reached, the class automatically disconnects the UNC connection in its Dispose() methods.

C#
using (UNCAccessWithCredentials unc = new UNCAccessWithCredentials())
{
    if (unc.NetUseWithCredentials(uncpath, user, domain, password))
    {
        // Insert your code that requires access to the UNC resource
    }
    else
    {
        // The connection has failed. Use the LastError to get the system error code
        MessageBox.Show("Failed to connect to " + tbUNCPath.Text + 
                        "\r\nLastError = " + unc.LastError.ToString(),
                        "Failed to connect",
                        MessageBoxButtons.OK,
                        MessageBoxIcon.Error);
    }
// When it reaches the end of the using block, the class deletes the connection.
}

If you require persistent connections, declare an instance of the class and use the NetUseWithCredentials() method to connect. Once connected, you can access the remote resource at need until disconnected. Do not forget to remove the connection when you are finished using the NetUseDelete() method..

Interpreting Errors

Error.jpg

If the methods fail, they return false. If this occurs, use the class' LastError property to obtain the Windows System Error Code. You can use the MSDN System Error Codes page to obtain a description of the error.

In the error above, Error 53 is ERROR_BAD_NETPATH - "The network path was not found". It looks like I specified the wrong server or share path.

Points of Interest

In researching how to do this task, I found many interesting hacks that got the job done but were not savory. Some used the LogonUser() method, which only works if your remote user has logon rights on the executing machine. I also found cases where the programmer ran a shell net use command.

Using the API NetUseAdd method, we can control the process within code, without having to hack permissions or resort to DOS commands.

I could not find a way to do this in managed code. If you know of one, please post your solution. I would love to see it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Systems Engineer ThomsonReuters Tax & Accounting
United States United States
I am a Senior System Administrator for a 400+ server ASP farm. With such a large farm and limited staff, our goal is to add as much automation as possible to the system. Most of my programming consists of intelligent slack: spending 2 hours to write a program that handles a reoccurring 10 minute manual job.

Comments and Discussions

 
QuestionExample of mydomain.local? Pin
hueikar25-Jul-13 22:46
hueikar25-Jul-13 22:46 
QuestionNice Pin
emces14-Feb-13 0:57
emces14-Feb-13 0:57 
GeneralMy vote of 5 Pin
kkkkkkkkkkkkkkkkkkkkkkkkk20-Sep-12 21:05
kkkkkkkkkkkkkkkkkkkkkkkkk20-Sep-12 21:05 
QuestionParallel Execution Pin
puromtec122-Aug-12 8:12
puromtec122-Aug-12 8:12 
AnswerRe: Parallel Execution Pin
hayes.adrian22-Aug-12 10:48
hayes.adrian22-Aug-12 10:48 
GeneralRe: Parallel Execution Pin
puromtec122-Aug-12 10:49
puromtec122-Aug-12 10:49 
AnswerRe: Parallel Execution Pin
puromtec122-Aug-12 10:48
puromtec122-Aug-12 10:48 
GeneralRe: Parallel Execution Pin
hayes.adrian23-Aug-12 6:27
hayes.adrian23-Aug-12 6:27 
You can use the NetUseWithCredentials() method without using the IDisposable interface. Just make sure you use the NetUseDelete() method when you no longer need the connection. This would probably be safer than removing it from the deconstructor.

I would put in a check in the RunWorkerCompleted event handler for each of the threads that checks if the others are still busy. If no threads are using the connection, delete it. When starting each thread, check if the resource exists using NetIsConnected() from my previous comment and add it if not.
AnswerRe: Parallel Execution Pin
Ronald Reynolds29-Apr-14 12:26
Ronald Reynolds29-Apr-14 12:26 
QuestionSimply Works Pin
jon-e1-Aug-12 4:23
jon-e1-Aug-12 4:23 
QuestionHow to give UNC path? Pin
DRKARTHIKRAJ18-Jun-12 0:00
DRKARTHIKRAJ18-Jun-12 0:00 
AnswerRe: How to give UNC path? Pin
hayes.adrian17-Jul-12 6:59
hayes.adrian17-Jul-12 6:59 
GeneralRe: How to give UNC path? Pin
DRKARTHIKRAJ1-Aug-12 1:49
DRKARTHIKRAJ1-Aug-12 1:49 
GeneralRe: How to give UNC path? Pin
hayes.adrian1-Aug-12 8:14
hayes.adrian1-Aug-12 8:14 
GeneralMy vote of 5 Pin
BobHoffman21-May-12 11:27
BobHoffman21-May-12 11:27 
QuestionExcellent Code Pin
The Burg17-Jan-12 7:00
The Burg17-Jan-12 7:00 
QuestionHow to run? Pin
daemon88141-Sep-11 6:04
daemon88141-Sep-11 6:04 
AnswerRe: How to run? Pin
Adrian Hayes26-Sep-11 11:31
Adrian Hayes26-Sep-11 11:31 
GeneralMy vote of 5 Pin
Mikael Fredriksson9-Dec-10 4:29
Mikael Fredriksson9-Dec-10 4:29 
GeneralBrother thank you very much! Pin
ClaudioTech7-Dec-10 7:27
ClaudioTech7-Dec-10 7:27 
GeneralMy vote of 5 Pin
fnoujaim7-Oct-10 6:41
fnoujaim7-Oct-10 6:41 
Generaldisconnect using NetUseDelete() method Pin
11202002yme*27-Apr-10 6:14
11202002yme*27-Apr-10 6:14 
Generallocal access Pin
Member 96698716-Nov-09 4:18
Member 96698716-Nov-09 4:18 
GeneralLooks good Pin
flipdoubt20-Oct-09 5:22
flipdoubt20-Oct-09 5:22 
GeneralRe: Looks good Pin
hayes.adrian21-Oct-09 11:39
hayes.adrian21-Oct-09 11:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.