gogo 通过本文主要向大家介绍了c#如何执行dos命令,c#执行dos命令,c#调用dos命令,c#调用dos,c#dos等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
本文实例讲述了C#实现的调用DOS命令操作类。分享给大家供大家参考。具体如下:
/***********************************
* All Rights Reserved , Copyright (C) 2012 , EricHu.
* 作 者: EricHu
* 创建时间: 2012-5-4 15:29:35
***********************************/
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace PlatForm.Utilities
{
/// <summary>
///
/// DosHelper
/// Dos常用操作类
///
/// </summary>
public class DosHelper
{
//引入API函数
[DllImportAttribute("user32.dll")]
private static extern int FindWindow(string ClassName, string WindowName);
[DllImport("user32.dll")]
private static extern int ShowWindow(int handle, int cmdShow);
[DllImport("winmm.dll", EntryPoint = "mciSendString", CharSet = CharSet.Auto)]
private static extern int mciSendString(string lpstrCommand,string lpstrReturnstring,int uReturnLength,int hwndCallback);
private const int SW_HIDE = 0;//API参数表示隐藏窗口
private const int SW_SHOW = 5;//API参数表示用当前的大小和位置显示窗口
public void 弹出光驱()
{
mciSendString("set CDAudio door open", null, 127, 0);
}
public void 关闭光驱()
{
mciSendString("set CDAudio door closed", null, 127, 0);
}
public void 打开C盘()
{
Process.Start("c:\");
}
public void 打开D盘()
{
Process.Start("d:\");
}
public void 打开E盘()
{
Process.Start("e:\");
}
public void 打开F盘()
{
Process.Start("f:\");
}
public void 打开指定盘(string hardpath)
{
Process.Start(hardpath);
}
public void 打开Word()
{
Process.Start(@"C:Program FilesMicrosoft OfficeOFFICE11winword.exe");
}
public void 打开Excel()
{
Process.Start(@"C:Program FilesMicrosoft OfficeOFFICE11excel.exe");
}
public void 打开Access()
{
Process.Start(@"C:Program FilesMicrosoft OfficeOFFICE11msaccess.exe");
}
public void 打开PowerPoint()
{
Process.Start(@"C:Program FilesMicrosoft OfficeOFFICE11powerpnt.exe");
}
public void 打开OutLook()
{
Process.Start(@"C:Program FilesMicrosoft OfficeOFFICE11outlook.exe");
}
public void 打开记事本()
{
Process.Start("notepad.exe");
}
public void 打开计算器()
{
Process.Start("calc.exe");
}
public void 打开DOS命令窗口()
{
Process.Start("cmd.exe");
}
public void 打开注册表()
{
Process.Start("regedit.exe");
}
public void 打开画图板()
{
Process.Start("mspaint.exe");
}
public void 打开写字板()
{
Process.Start("write.exe");
}
public void 打开播放器()
{
Process.Start("mplayer2.exe");
}
public void 打开资源管理器()
{
Process.Start("explorer.exe");
}
public void 打开任务管理器()
{
Process.Start("taskmgr.exe");
}
public void 打开事件查看器()
{
Process.Start("eventvwr.exe");
}
public void 打开系统信息()
{
Process.Start("winmsd.exe");
}
public void 打开备份还原()
{
Process.Start("ntbackup.exe");
}
public void 打开Windows版本()
{
Process.Start("winver.exe");
}
public void 打开控制面板()
{
Process.Start("rundll32.exe", "shell32.dll,Control_RunDLL");
}
public void 打开控制面板辅助选项键盘()
{
Process.Start("rundll32.exe", "shell32.dll,Control_RunDLL access.cpl,,1");
}
public void 打开控制面板辅助选项声音()
{
Process.Start("rundll32.exe", "shell32.dll,Control_RunDLL access.cpl,,2");
}
public void 打开控制面板辅助选项显示()
{
Process.Start("rundll32.exe", "shell32.dll,Control_RunDLL access.cpl,,3");
}
public void 打开控制面板辅助选项鼠标()
{
Process.Start("rundll32.exe", "shell32.dll,Control_RunDLL access.cpl,,4");
}
public void 打开控制面板辅助选项常规()
{
Process.Start("rundll32.exe", "shell32.dll,Control_RunDLL access.cpl,,5");
}
public void 打开控制面板添加新硬件向导()
{
Process.Start("rundll32.exe", "shell32.dll,Control_RunDLL sysdm.cpl @1");
}
public void 打开控制面板添加新打印机向导()
{
Process.Start("rundll32.exe", "shell32.dll,SHHelpShortcuts_RunDLL AddPrinter");
}
public void 打开控制面板添加删除程序安装卸载面板()
{
Process.Start("rundll32.exe", "shell32.dll,shell32.dll,Control_RunDLL appwiz.cpl,,1");
}
public void 打开控制面板添加删除程序安装Windows面板()
{
Process.Start("rundll32.exe", "shell32.dll,shell32.dll,Control_RunDLL appwiz.cpl,,2");
}
public void 打开控制面板添加删除程序启动盘面板()
{
Process.Start("rundll32.exe", "shell32.dll,shell32.dll,Control_RunDLL appwiz.cpl,,3");
}
public void 打开建立快捷方式对话框()
{
Process.Start("rundll32.exe", " appwiz.cpl,NewLinkHere %1");
}
public void 打开日期时间选项()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL timedate.cpl,,0");
}
public void 打开时区选项()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL timedate.cpl,,1");
}
public void 建立公文包()
{
Process.Start("rundll32.exe", " syncui.dll,Briefcase_Create");
}
public void 打开复制软碟窗口()
{
Process.Start("rundll32.exe", " diskcopy.dll,DiskCopyRunDll");
}
public void 打开新建拨号连接()
{
Process.Start("rundll32.exe", " rnaui.dll,RnaWizard");
}
public void 打开显示属性背景()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL desk.cpl,,0");
}
public void 打开显示属性屏幕保护()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL desk.cpl,,1");
}
public void 打开显示属性外观()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL desk.cpl,,2");
}
public void 打开显示属性属性()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL desk.cpl,,3");
}
public void 打开格式化对话框()
{
Process.Start("rundll32.exe", " shell32.dll,SHFormatDrive");
}
public void 打开控制面板游戏控制器一般()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL joy.cpl,,0");
}
public void 打开控制面板游戏控制器进阶()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL joy.cpl,,1");
}
public void 打开控制面板键盘属性速度()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @1");
}
public void 打开控制面板键盘属性语言()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @1,,1");
}
public void 打开Windows打印机档案夹()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @2");
}
public void 打开Windows字体档案夹()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @3");
}
public void 打开控制面板输入法属性()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @4");
}
public void 打开添加新调制解调器向导()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL modem.cpl,,add");
}
public void 打开控制面板多媒体属性音频()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,0");
}
public void 打开控制面板多媒体属性视频()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,1");
}
public void 打开控制面板多媒体属性MIDI()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,2");
}
public void 打开控制面板多媒体属性CD音乐()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,3");
}
public void 打开控制面板多媒体属性设备()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,4");
}
public void 打开控制面板声音()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl @1");
}
public void 打开控制面板网络()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL netcpl.cpl");
}
public void 打开控制面板密码()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL pa

