小BAT解决大麻烦_某卡教室控制软件

Posted on 2018-10-18 13:18  努力成长静待花开  阅读(295)  评论(0编辑  收藏  举报
1 @echo off
2 mode con cols=13 lines=1 
3 if "%1" == "h" goto begin 
4 mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit 
5 :begin
6 tasklist |findstr /i student>nul&&taskkill /f /im student.exe>nul
7 goto begin>nul

代码阐述:

mode con cols=13 lines=1 //设置命令行窗口的大小

3-4行为隐藏窗口的代码

5 行 //发现进程并结束 使用>nul 期间不显示输出

7行 //goto循环