摘要:using System.IO;using System.Diagnostics;ProcessStartInfo pro = new System.Diagnostics.ProcessStartInfo("cmd.exe");pro.UseShellExecute = false;pro.RedirectStandardOutput = true;pro.RedirectStandardError = true;pro.CreateNoWindow = true;pro.Arguments = "/K " + System.Environment.C
阅读全文
10 2012 档案
摘要:使用NET USE映射和删除网络驱动器映射网络驱动器命令net use 驱动器盘符: \\192.168.1.100\文件夹 密码 /user:用户名删除驱动器如果占用该盘符的话会有提示:添加参数即可,命令如下:net use w: /delete /yes
阅读全文