Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Windows Small Business Server > Remove multi process at once

Reply
Thread Tools Display Modes

Remove multi process at once

 
 
yuvalbra
Guest
Posts: n/a

 
      02-06-2011
Welcome to the group members,
I use many of the server scheduling programs
There are cases where an application can not be closed as a result
there are some processes that are opened one by one
I'm looking for the option to cancel all processes in one command
 
Reply With Quote
 
 
 
 
Brian Cryer
Guest
Posts: n/a

 
      02-07-2011
"yuvalbra" <> wrote in message
news:2eaeff0a-592a-4f3c-a672-...
> Welcome to the group members,
> I use many of the server scheduling programs
> There are cases where an application can not be closed as a result
> there are some processes that are opened one by one
> I'm looking for the option to cancel all processes in one command


If you want to kill processes then options include:
1. Use task manager to kill individual ones.
2. Download pstools
(http://technet.microsoft.com/en-us/s...rnals/bb896649), this gives you a
number of command line tools for working with processes, whilst its been a
while since I last used it I think this includes tools to list and kill
processes. So you might be able to put a batch file together which would do
what you wanted.

Just be sure you are sure about what processes you want to kill.

Hope this helps.
--
Brian Cryer
http://www.cryer.co.uk/brian

 
Reply With Quote
 
Steve Foster
Guest
Posts: n/a

 
      02-07-2011
Brian Cryer wrote:

> "yuvalbra" <> wrote in message
> news:2eaeff0a-592a-4f3c-a672-
> ...
> > Welcome to the group members,
> > I use many of the server scheduling programs
> > There are cases where an application can not be closed as a result
> > there are some processes that are opened one by one
> > I'm looking for the option to cancel all processes in one command

>
> If you want to kill processes then options include:
> 1. Use task manager to kill individual ones.


Task Manager can also kill an entire process tree (ie if you can
identify the parent, you can "End Process Tree" the parent, and the
children will be splattered too).

> 2. Download pstools
> (http://technet.microsoft.com/en-us/s...rnals/bb896649), this
> gives you a number of command line tools for working with processes,
> whilst its been a while since I last used it I think this includes
> tools to list and kill processes. So you might be able to put a batch
> file together which would do what you wanted.


Natively, there's also the command-line "TaskKill.exe" [yes, two k's],
which has a number of options for killing processes (including a "kill
children processes too" option like Task Manager).

--
Steve Foster
For SSL Certificates, Domains, etc, visit.:
https://netshop.virtual-isp.net
 
Reply With Quote
 
Charlie Russel-MVP
Guest
Posts: n/a

 
      02-07-2011
PowerShell makes this trivial.

Get-Process "Name" | stop-process

Or even simply:
stop-process -name Notepad


--
Charlie.
http://msmvps.com/blogs/Russel


"Steve Foster" <> wrote in message
news:...
> Brian Cryer wrote:
>
>> "yuvalbra" <> wrote in message
>> news:2eaeff0a-592a-4f3c-a672-
>> ...
>> > Welcome to the group members,
>> > I use many of the server scheduling programs
>> > There are cases where an application can not be closed as a result
>> > there are some processes that are opened one by one
>> > I'm looking for the option to cancel all processes in one command

>>
>> If you want to kill processes then options include:
>> 1. Use task manager to kill individual ones.

>
> Task Manager can also kill an entire process tree (ie if you can
> identify the parent, you can "End Process Tree" the parent, and the
> children will be splattered too).
>
>> 2. Download pstools
>> (http://technet.microsoft.com/en-us/s...rnals/bb896649), this
>> gives you a number of command line tools for working with processes,
>> whilst its been a while since I last used it I think this includes
>> tools to list and kill processes. So you might be able to put a batch
>> file together which would do what you wanted.

>
> Natively, there's also the command-line "TaskKill.exe" [yes, two k's],
> which has a number of options for killing processes (including a "kill
> children processes too" option like Task Manager).
>
> --
> Steve Foster
> For SSL Certificates, Domains, etc, visit.:
> https://netshop.virtual-isp.net


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Window 2003 Remove FrontPage Extensions Ray DeBiase Server Setup 0 08-31-2010 04:18 PM
Re: Synchronizing between driver and user process Scott Noone Windows Vista Drivers 0 04-01-2010 07:11 PM
Automatically ending a process shortly after logging on Nathan Sokalski Windows 64 Bit 0 02-13-2010 11:15 PM
Vista Can't End Process Shawn H Windows Vista Performance 8 06-29-2008 10:47 PM
Vista Can't End Process Shawn H Windows Vista Performance 2 12-31-2007 04:06 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59