whisht

    十年

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2012年10月27日

摘要: 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 阅读全文
posted @ 2012-10-27 22:53 WHISHT 阅读(901) 评论(0) 推荐(0) 编辑

摘要: 使用NET USE映射和删除网络驱动器映射网络驱动器命令net use 驱动器盘符: \\192.168.1.100\文件夹 密码 /user:用户名删除驱动器如果占用该盘符的话会有提示:添加参数即可,命令如下:net use w: /delete /yes 阅读全文
posted @ 2012-10-27 21:54 WHISHT 阅读(277) 评论(0) 推荐(0) 编辑