Windows Paylaşım mapping silmek

Windows işletim sisteminde açık kalan paylaşımı silmek için cmd üzerinde şu komutu çalıştırabilirsiniz

/c net use * /delete /y
view raw gistfile1.txt hosted with ❤ by GitHub

C# üzerinden bu işlemi yaptırmak istersek de şöyle bir şey yapabiliriz

try
{
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = string.format("/c net use * /delete /y");
process.StartInfo = startInfo;
process.Start();
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
view raw gistfile1.txt hosted with ❤ by GitHub