• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Auto killing a task

RoHaN-OTs

RoHaN-OTs.com
Joined
Jul 28, 2010
Messages
1,594
Reaction score
82
Location
Sweden
Hello,

I'm using this .bat file (auto restarter) for my serv:

Code:
@echo off
:a
H.P.O.exe
goto a

I need something to add to it, or a new .bat file or so that would KILL H.P.O each 61 minutes.

Thanks in advance,

Rohan
 
I know its an very old topic (1 year) but i might aswell post an answer ;)
Code:
@echo off
title H.P.O Killer
:a
start H.P.O.exe
echo This will keep loading for 61 minutes
ping localhost -n 3660 >nul
cls 
echo Killing H.P.O.exe
taskkill H.P.O.exe
goto:a
exit
 
Back
Top