Zitat
taskkill /IM explorer.exe /F
pause
start explorer.exe
Zitat
While 1
If ProcessExists("age2_x1.exe") And ProcessExists("explorer.exe") Then
Run("taskkill /IM explorer.exe /F")
EndIf
If Not ProcessExists("age2_x1.exe") And Not ProcessExists("explorer.exe") Then
Run("explorer.exe")
EndIf
Sleep(5000)
WEnd