mrasmussen
New Member
Other than task manager, which I get to by doing ctrl-alt-del or right-click the task bar in desktop mode, is there a quicker way? Maybe an app similar to the task killer apps in Android.
no, I want to close several at a time. If I leave a bunch running in the background, and I am about to play a game, pinball for example, I like to close a bunch of apps to get better framerates. Seems I have to go to task manager to do this. It would be nice to have a metro app...
@echo off
title Kill all running apps - Bharat Balegere (Modified by ZachBui)
cd c:\windows\System32
for /f "skip=3 tokens=1" %%i in ('TASKLIST /FI "USERNAME eq %userdomain%\%username%" /FI "STATUS eq running"') do (
if not "%%i"=="svchost.exe" (
if not "%%i"=="explorer.exe" (
if not "%%i"=="cmd.exe" (
if not "%%i"=="tasklist.exe" (
if not "%%i"=="iexplore.exe" ( REM : means that it won't end task these processes
echo.
taskkill /f /im "%%i"
echo.
)
)
)
)
)
)
pause