Works for me at least:
> taskkill /f /im powershell.exe && echo worked || echo not worked
SUCCESS: The process "powershell.exe" with PID 3228 has been terminated.
worked
> taskkill /f /im powershell.exe && echo worked || echo not worked
ERROR: The process "powershell.exe" not found.
not worked
So taskkill
is returning a proper exit code. The redirect of its output has nothing to do with this. But the error level for failure is 128. You really should use the proper idiom for checking for errors.
Also it seems that taskkill
is printing to stderr
so you see its output still, when just redirecting stdout
. You may consider rewriting above code to:
taskkill /F /IM itunes.exe >nul 2>&1
if errorlevel 1 (echo iTunes not found.) else (echo iTunes is killed.)
The 2>&1
redirects the standard error output into the vast nothingness. if errorlevel 1
checks for errorlevel
being at least 1 which should work at this point:
ERRORLEVEL number Specifies a true condition if the last program run returned an exit code equal to or greater than the number specified. —help if
Generally checking errorlevel
with if %errorlevel%==
is a quite bad idea, unless you're comparing to 0. The semantics for exit codes are that anything
non-zero signals failure. Your assumption here just was that taskkill
would return 1
on failure.
Ans may I kindly ask why you are doing this in an endless loop? taskkill
already kills all instances of itunes.exe
. And you're running in a tight loop without any delays so your batch files probably consumes one CPU core while it's running.
ETA: Overlooked your edit: Why on earth curly braces? Blocks in batch files are delimieted by round parentheses.
why on eart curly braces
, well, i use them as long as i worked with them. I don't know; i just like it. It looks nicer i guess. – Lunate