|
声明在前:这两个脚本有恶意循环 和 病毒 特点,如果用于不正当途径,后果自负。
这里只用来研究。
监测 系统是否运行 notepad 如果运行了,就启动explorer.exe然后退出脚本。
cmd 脚本内容:
-------------------------------
@echo off
color 0a
title 进程检测
set task1=notepad
set task2="explorer.exe"
set t=10
set n=0
:loop
set /a n=%n%+1
echo 正在检测%task1%是否运行,如果运行就启动%task2%,每%t%秒钟检测一次.%n%
tasklist|find /i "%task1%"
if not errorlevel 1 goto end
ping -n %t% 127.0.0.1 >nul 2>nul
echo %task1% 没有运行
goto loop
:end
echo %task1% 已经运行,启动 %task2%
start "" %task2%
---------------------------------------
监测notepad 是否不在进程列表中,如果不在就启动explorer,然后退出脚本
cmd 脚本如下:
----------------------------------
@echo off
color 0a
title 进程检测
set task1=notepad
set task2="explorer.exe"
set t=10
set n=0
:loop
set /a n=%n%+1
echo echo 正在检测%task1%是否运行,如果没运行就启动%task2%,每%t%秒钟检测一次.%n%
tasklist|find /i "%task1%"
if errorlevel 1 goto end
ping -n %t% 127.0.0.1 >nul 2>nul
echo %task1% 仍然运行
goto loop
:end
echo %task1% 已经停止,启动 %task2%
start "" %task2%
---------------------------------------------
[ 本帖最后由 dos时代菜鸟 于 2010-3-22 11:37 编辑 ] |
|