cmd是 command的缩写.即 命令提示符(CMD),是在OS / 2 , Windows CE与Windows NT平台为基础的 *** 作系统(包括Windows 2000和XP中, Vista中,和Server 2003 )下的“MS-DOS 方式”。中文版Windows XP 中的命令提示符进一步提高了与DOS 下 *** 作命令的兼容性,用户可以在命令提示符直接毁伏厅输入中文调用文件。
asklist >a.txt<回车>type a.txt | find /i "%进程名%" &&goto b<回车>第一句是将当前进厅晌程保存到文件,第二句是检测进程是否运行,是否跳转到B处运行。
tasklist /nh>d:\1.txt find /i "QQ.exe" d:\1.txt if ERRORLEVEL 1 ("C:\software\Tencent\qq\QQQ.exe" ) else (exit) 意纤隐思是检测"QQ.EXE"有没有在进程里,大家都知道QQ打开后进程名是"QQ.EXE"如果有在进程里则执行"EXIT"退出,如果没有在进程里,说明QQ没有打开,则运行QQ程序"C:\software\Tencent\qq\QQQ.exe" 第二种写法 tasklist /nh|find /i "QQ.exe" if ERRORLEVEL 1 ("C:\software\Tencent\qq\QQQ.exe") else (exit)
判断代码如下:
string name = "进程名"
if (GetPidByProcessName(name) == 0)
{
MessageBox.Show("程序未运行")
return
}public static int GetPidByProcessName(string processName)
{
Process[] arrayProcess = Process.GetProcessesByName(processName)foreach (Process p in arrayProcess)
{
return p.Id
}
return 0
}
扩展资料:注意事项
/获取欲启动进程名
string strProcessName
strProcessName = System.Diagnostics.Process.GetCurrentProcess().ProcessName
//检查进程是否已经启动,已经启动则退出程序虚局。
if (System.Diagnostics.Process.GetProcessesByName(strProcessName).Length >扰伏 1)
{
Application.Exit()
缓誉携 return
}
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(false)
Application.Run(new frmMainPlatform())
cmd判皮缺数断程序是否运行方法:@echo off
title 云海环山abc进程检测
tasklist|find /燃首i "abc.exe"
if %errorlevel% == 0 (exit)
set all=
set /p all= 该进程不存在,现在启动吗?(Y/N)
if /i "%all%"=="扮虚y" goto yes
if /i "%all%"=="n" goto no
:yes
start c:\abc.exe
:no
exit
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)