Click here to Skip to main content
15,881,172 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

 
Questionservice account Pin
Member 133950392-May-19 6:20
Member 133950392-May-19 6:20 
QuestionIt returns 53 error even I am using the write path Pin
Member 1386298819-Jun-18 5:31
Member 1386298819-Jun-18 5:31 
Questiongetting Error Last Error = 1219 Pin
mcdee22-Mar-18 3:27
mcdee22-Mar-18 3:27 
SuggestionDisconnect path and parents before connecting Pin
CardinalJo3-Jul-17 23:34
CardinalJo3-Jul-17 23:34 
QuestionThank You Pin
shauncollege17-Mar-17 7:08
shauncollege17-Mar-17 7:08 
QuestionConnect to a UNC Path with Credentials Pin
Vir261028-Jan-16 3:01
Vir261028-Jan-16 3:01 
QuestionHow to save in windows memory Pin
Member 358069413-Dec-15 23:21
Member 358069413-Dec-15 23:21 
AnswerRe: How to save in windows memory Pin
hayes.adrian2-Jan-16 9:35
hayes.adrian2-Jan-16 9:35 
QuestionError 87 Pin
sarizvi11-Aug-15 4:18
sarizvi11-Aug-15 4:18 
i am getting error code 87 i.e. invalid parameter,
i am passing everything correctly,
what could be the issue?
AnswerRe: Error 87 Pin
phoenicyan8-Oct-15 10:14
phoenicyan8-Oct-15 10:14 
GeneralRe: Error 87 Pin
Member 1357569514-Dec-17 3:52
Member 1357569514-Dec-17 3:52 
GeneralGreat one works very much. Pin
Anmol.Gupta15-Apr-15 20:35
Anmol.Gupta15-Apr-15 20:35 
QuestionHow run it from windows service Pin
kalatjosef3-Mar-15 5:40
kalatjosef3-Mar-15 5:40 
QuestionVery helpful Pin
Derrick Roach30-Jan-15 6:02
Derrick Roach30-Jan-15 6:02 
QuestionBeautiful Pin
Nicolai Kjaersgaard3-Dec-14 13:48
Nicolai Kjaersgaard3-Dec-14 13:48 
GeneralWork Great! Much Thanks. Pin
Chuck Bevitt15-Oct-14 12:58
Chuck Bevitt15-Oct-14 12:58 
GeneralMy vote of 4 Pin
Frank Sandersen3-Sep-14 2:08
Frank Sandersen3-Sep-14 2:08 
GeneralMy vote of 3 Pin
Member 1097649828-Jul-14 10:28
Member 1097649828-Jul-14 10:28 
SuggestionWorked, however wasn't clear... Pin
Member 1097649828-Jul-14 10:25
Member 1097649828-Jul-14 10:25 
BugOnly Deletes Last Attached Share Pin
Member 1091457430-Jun-14 5:56
Member 1091457430-Jun-14 5:56 
QuestionIs it possible to pass the credentials of the current user's security context? Pin
Member 46054763-Feb-14 4:26
Member 46054763-Feb-14 4:26 
AnswerRe: Is it possible to pass the credentials of the current user's security context? Pin
hayes.adrian9-Apr-14 14:24
hayes.adrian9-Apr-14 14:24 
GeneralMy vote of 4 Pin
hamzemirhosseini31-Jul-13 23:08
hamzemirhosseini31-Jul-13 23:08 
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 

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.