@echo off
tasklist | find "arp.exe"
if errorlevel==0 echo The arp.exe is running. && goto :eof
start "" "d:\arp\arp.exe"
[ Last edited by lxmxn on 2006-10-17 at 00:43 ]作者: benteng302 时间: 2006-10-17 02:41 哦,佩服太厉害了。什么时候我可以达到这种程度呢。作者: gududaoke 时间: 2006-10-18 03:49
Quote:
Originally posted by lxmxn at 2006-10-17 00:03:
[code]
@echo off
tasklist | find "arp.exe"
if errorlevel==0 echo The arp.exe is running. && goto :eof
start "" "d:\arp\arp.exe"
[/code ...
此代码,无法实现,不管arp.exe 启动了没有都显示,The arp.exe is running。