Results 1 to 3 of 3

Thread: Terminate Programs Forcefully In Windows

  1. #1
    Join Date
    Feb 2008
    Location
    Islamabad, UK
    Posts
    88,948
    Mentioned
    1077 Post(s)
    Tagged
    10778 Thread(s)
    Rep Power
    21474941

    candel Terminate Programs Forcefully In Windows

    i - Terminate Programs Forcefully In Windows

    There are large number of programs which get started and running every time you start windows, but many of these programs are not actually useful, on the other hand these irrelevant programs uses some critical amount of memory and CPU usage which in turn makes other useful application respond slowly.

    So, Every time you start windows you need to terminate these useless programs through task manager which is quite pain full as you need to locate each program one by one to kill the specific process. This was happening with me from a long time until I thought of a simple hack to end all these useless process in single mouse click.

    taskmanagerwindows thumb - Terminate Programs Forcefully In Windows

    Firstly let me tell you what were all those process which were useless to me.

    1. mobsync.exe - It is a process for Internet Explorer which provide synchronization the offline pages with the matching online pages.

    2. ctfmon.exe – It keeps running in the background and monitors the active windows and provides text input service support for speech recognition, handwriting recognition, keyboard, translation etc.

    3.wmpnscfg.exe – It is used to alert users when a new media device is found on the network. This program is associated with windows media player and it gets started automatically on windows startup.

    and some other programs like yahoo messenger tray icon etc.

    Lets see how I automated the killing of these programs on windows startup.

    In windows you can instruct windows to forcefully kill an application through a command with syntax

    taskkill /f /im process-name.exe

    In the above command**

    /f - Stands for that process be forcefully terminated.

    /im - Stands for the image name of the process to be terminated

    In order to kill all these process I made a batch file which contains the forcefull termination command for all these programs and then I added the batch file in windows startup.

    1. open Notepad and paste the following commands one per each line by line

    taskkill /f /im wmpnscfg.exe
    taskkill /f /im ctfmon.exe
    taskkill /f /im mobsync.exe.exe

    forcekillprocess thumb - Terminate Programs Forcefully In Windows

    2. Save the file as terminate.bat or with any other name but with .bat extension.

    3. Now Drag and Drop terminate.bat file in All Programs >> StartUp

    4. Now, restart windows all these useless programs which you used to kill manually will be automatically terminated.

    Note: You can also place the terminate.bat file on desktop and run it manually and kill all the useless process.


  2. #2
    Join Date
    Feb 2008
    Location
    Karachi, Pakistan, Pakistan
    Posts
    126,450
    Mentioned
    898 Post(s)
    Tagged
    10965 Thread(s)
    Rep Power
    21474979

    Default Re: Terminate Programs Forcefully In Windows

    superb post

  3. #3
    Join Date
    Feb 2008
    Location
    Islamabad, UK
    Posts
    88,948
    Mentioned
    1077 Post(s)
    Tagged
    10778 Thread(s)
    Rep Power
    21474941

    Default Re: Terminate Programs Forcefully In Windows

    thanks naz

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •