How to end multiple process using the bat fil
Solved/Closed
Ooi Heap Sheng
Ooi Heap Sheng - Apr 22, 2010 at 08:10 PM
- Posts
- 8
- Registration date
- Thursday December 10, 2009
- Status
- Member
- Last seen
- January 13, 2010
Ooi Heap Sheng - Apr 22, 2010 at 08:10 PM
Related:
- How to end multiple process using the bat fil
- Sorry, this feature isn't available right now: an error occurred while processing this request. please try again later. ✓ - Forum - Facebook
- If cell contains (multiple text criteria) then return (corresponding text criteria) ✓ - Forum - Excel
- We can keep multiple version of a word document in a single file by using dash feature - Guide
- Chrome allow multiple downloads - Guide
- How to select multiple things in photoshop - Guide
2 replies
hello guy its so simple
open a notepad
put these line
taskkill /im notepad.exe
taskkill /im calc.exe
taskkill /im Iexplorer.exe
and save it as name.bat
and run it
u can add more application here
open a notepad
put these line
taskkill /im notepad.exe
taskkill /im calc.exe
taskkill /im Iexplorer.exe
and save it as name.bat
and run it
u can add more application here
Hi, well i am the topic starter. now i have an answer for my own answer.
But i still have to thank nishant for giving me a clue for my discovering of the answer.
If you want to end a process using the file name, use this:
taskkill /f /im *.exe
example:
taskkill /f /im iexplore.exe
If you want to end a process using the window title, ust this:
taskkill /fi "Windowtitle eq *" >nul
example:
taskkill /fi "Windowtitle eq how to end multiple process using the bat file - Windows internet explorer provided by yahoo!" >nul
Thanks, hope this will help for the other.
But i still have to thank nishant for giving me a clue for my discovering of the answer.
If you want to end a process using the file name, use this:
taskkill /f /im *.exe
example:
taskkill /f /im iexplore.exe
If you want to end a process using the window title, ust this:
taskkill /fi "Windowtitle eq *" >nul
example:
taskkill /fi "Windowtitle eq how to end multiple process using the bat file - Windows internet explorer provided by yahoo!" >nul
Thanks, hope this will help for the other.