码迷,mamicode.com
首页 > 其他好文 > 详细

C段常用的批处理有哪些?

时间:2014-05-07 12:39:37      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:blog   class   ext   http   c   使用   

检测管理员上线就注销自已:

1
2
3
4
5
@echo off
:check
choice /C YN /T 10 /D Y
quser find "#16"   && del xx.bat logoff
goto check

 

每次运行这个 bat 的时候先quser 一下,看当前的会话id 是多少,然后加1 每连接一次就会加1。以上适应使用管理员帐号时。

下面适应使用拥有管理员权限的其他帐号:

1
2
3
@echo off
logoff 1
del log.bat

logoff后面的1改成自己登陆的ID号,用query user查看

还有一个是防止嗅探过程中把服务器挂掉:

1
2
3
4
5
6
7
8
9
10
11
@rem pinggw.bat Createdby Icerain
@echo off
echo ping...
:ping
ping 127.0.0.1 -n 20>nul
ping -n 1 192.168.1.1 |find "Reply"
if %ERRORLEVEL%==0 goto :ping
else goto :taskkill
:taskkill
taskkill /f /im Cain.exe
end

手动观察丢包率防止当机:

1
2
3
4
5
6
7
:ping
choice /C YN /T 120 /D Y
ping g.cn
IF ERRORLEVEL 1 GOTO reboot
IF ERRORLEVEL 0 GOTO ping
:reboot
shutdown /r /t 0

Popularity: 5% [?]

C段常用的批处理有哪些?,布布扣,bubuko.com

C段常用的批处理有哪些?

标签:blog   class   ext   http   c   使用   

原文地址:http://www.cnblogs.com/Hkadmin/p/3712881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!