- 帖子
- 107
- 积分
- 126
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2011-2-7
|
2楼
发表于 2016-1-27 17:01
| 只看该作者
本帖最后由 winsfly 于 2016-1-27 17:22 编辑
回复 1# winsfly
哎,没人来,只有自己抛砖引玉了
@echo off
mode con cols=14 lines=1
start "" "C:\Program Files\Internet Explorer\iexplore.exe" "http://www.baidu.com/"
:a
tasklist /nh|find /i "iexplore.exe"
if ERRORLEVEL 1 (goto b) else (goto a)
:b
start "" "C:\Program Files\Internet Explorer\iexplore.exe" "http://www.hao123.com/"
tasklist /nh|find /i "iexplore.exe"
if ERRORLEVEL 1 (goto c) else (goto a)
:c
start "" "C:\Program Files\Internet Explorer\iexplore.exe" "http://www.163.com/"
tasklist /nh|find /i "iexplore.exe"
if ERRORLEVEL 1 (goto d) else (goto a) |
|