@Echo off
tasklist | find "firefox.exe" /C /i > nul
if Not ERRORLEVEL 1 goto checkwow
"C:\Program Files\Mozilla Firefox\firefox.exe"
goto patience
:patience
set/a delay = delay + 1
if %delay% == 5000 goto :checkwow
goto patience
@Echo off
tasklist | find "firefox.exe" /C /i > nul
if not ERRORLEVEL 1 goto checkwow
start C:\Program Files\Mozilla Firefox\firefox.exe
goto patience
:patience
set/a delay = delay + 1
if %delay% == 5000 goto :checkwow
goto patience
:checkwow
tasklist | find "NOM_DU_PROCESS_WOW.exe" /C /i > nul
if Not ERRORLEVEL 1 goto close
start C:\UsersPublic\Games\World of Warcraft\Launcher.exe
Exit
:close
Exit
J'ai oublié de dire que j'ai enlevé "@Echo off" pour voir ou ca bloquait
j'ai l'impression qu'il n'y a pas de solution:S
@Echo off
tasklist | find "firefox.exe" /C /i > nul
if not ERRORLEVEL 1 goto checkwow
start "" "C:\Program Files\Mozilla Firefox\Firefox.exe"
goto patience
:patience
set/a delay = delay + 1
if %delay% == 5000 goto :checkwow
goto patience
:checkwow
tasklist | find "Wow.exe" /C /i > nul
if Not ERRORLEVEL 1 goto close
start "" "C:\UsersPublic\Games\World of Warcraft\Launcher.exe"
Exit
:close
Exit
Quand tu as le temps, pense à mettre un petit [Résolu] dans le titre de ton premier message. Ça aidera sans doute plus tard.