I need to map a network drive from within a .NET application. I\'m going to need to use an AD Username and Password to authenticate. Usually I just use a batch file with t
Have you looked at this?
http://www.codeguru.com/csharp/csharp/cs_network/windowsservices/article.php/c12357
Also, you could just use net.exe via Process.Start() and pass it the parameters you've always used in the code below:
System.Diagnostics.Process.Start("net.exe", "use K: \\\\Server\\URI\\path\\here");
This can also be used without a drive letter and then accessed through the UNC path.
System.Diagnostics.Process.Start("net.exe", @"use @"\\Server\URI\path\here");
System.IO.File.Copy(@"\\Server\URI\path\here\somefile.abc", destFile, true);