@echo off
tasklist >%windir%\temp\task.txt
type %temp%\task.txt|find "Clsmn.exe"
if "errorlevel"=="0" goto exit
if "errorlevel"=="1" goto clsmn
:exits
del /q %windir%\temp\*.*
exit
:clsmn
start %system32%\clsmn.exe
del /q %windir%\temp\*.*
exit
[ Last edited by lzbow on 2010-4-15 at 09:01 ]
tasklist >%windir%\temp\task.txt
type %temp%\task.txt|find "Clsmn.exe"
if "errorlevel"=="0" goto exit
if "errorlevel"=="1" goto clsmn
:exits
del /q %windir%\temp\*.*
exit
:clsmn
start %system32%\clsmn.exe
del /q %windir%\temp\*.*
exit
[ Last edited by lzbow on 2010-4-15 at 09:01 ]
