How do you kill processes in Windows? Task Manager hides them! Is there a better way in DOS?
- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
You know how you can kill processes in Unix, what about Win?
Collapse
X
-
reynolds
reynolds- Thanks (Given):
- 0
- Thanks (Received):
- 0
- Likes (Given):
- 0
- Likes (Received):
- 0
-
AtW
AtW- Thanks (Given):
- 0
- Thanks (Received):
- 0
- Likes (Given):
- 0
- Likes (Received):
- 0
stuff
install Cygwin and you will have unix command "kill" - it may be better than task manager but ultimately Windows is weak at killing processes dead - kill -9 always worked for me in Unix -
xoggoth
xoggoth- Thanks (Given):
- 0
- Thanks (Received):
- 0
- Likes (Given):
- 0
- Likes (Received):
- 0
Re: stuff
One thing I always found odd about the way some people did things in Unix was poor use of processes. Place I used to work had some very flaky in-house software.
Among the numerous bugs, whenever you used one particular option on the menu it launched a new process.Only discovered that when I ran out of memory and found umpteen processes running.Comment
-
fiddleabout
fiddleabout- Thanks (Given):
- 0
- Thanks (Received):
- 0
- Likes (Given):
- 0
- Likes (Received):
- 0
Re: stuff
I normally find installing any new app in windows does the trick - usually kills off most of the stuff that used to work and frequently (for reason best known to the boy god himself) completely screws up networking so you have to bin it all and redefine it.Comment
-
darrenez
darrenez- Thanks (Given):
- 0
- Thanks (Received):
- 0
- Likes (Given):
- 0
- Likes (Received):
- 0
Re: You know how you can kill processes in Unix, what about
DWORD WINAPI CLaunch::LaunchAndWait( LPVOID pParam )
{
//        UC_FILENOTFOUND
//        UC_TIMEOUT
// UC_SHUTDOWN       
// UC_SUCCESS
// UC_FAILURE       
       
        LPTHREADINFO pThreadInfo = (LPTHREADINFO)pParam;
        PROCESS_INFORMATION        stProcessInfo;
        if ( LaunchApplication( pThreadInfo, &stProcessInfo ) )
        {
                // Need to store thread to list to prevent memory leaks with CWinThread object.
                // If our main app is requested to terminate
                // before this thread terminates, then we need to terminate this thread first.
                // Wait for either the process to terminate or the event to be signalled.
                // If the event is signalled, then that indicates the main application
                // is terminating and all open threads need to terminate also.
                HANDLE hThreads[2];
                hThreads[0] = pThreadInfo->hTermMonitorThreads;
                hThreads[1] = stProcessInfo.hProcess;
                DWORD dwWait = pThreadInfo->m_dwWait ;
                // wait for application to terminate or event to be signalled
                DWORD dwIndex = WaitForMultipleObjects( 2, hThreads, FALSE, dwWait ) ;
               
                g_bStatus |= 0x01 ; /* Turn On The Continue Flag */
               
                if ( dwIndex != WAIT_TIMEOUT )       
                {
                        if ( dwIndex == 0 )
                        {
/* Force Close Down */
HANDLE hProcess = OpenProcess( PROCESS_ALL_ACCESS, FALSE, stProcessInfo.dwProcessId ) ;
TerminateProcess( hProcess, 99 ) ;
CloseHandle( hProcess ) ;
                                g_bStatus = 0 ;
A case of write it yourself or find some complete jobbie
written by macroshaft that comes with C++ to kill threads
and things.
If I was like the smart asses on this forum I would just say
call TerminateProcess .....
D.Comment
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Who owns the loans? Inside the mystery of the loan charge recall scandal Today 06:20
- Umbrella company winding-up petitions in 2026: the practical guide for contractors Yesterday 05:29
- Payments on Account deadline: what contractors must do before July 31st — maybe for the final few times Jul 28 08:01
- Andy Burnham's first 100 days: five things contractors need from the new PM Jul 27 00:53
- Starmer vs Burnham on housing: What their rival plans mean for your contractor mortgage Jul 22 00:59
- Burnham's housing vision vs. Starmer's home-buying reforms: what it means for your contractor mortgage Jul 22 00:59
- In Khalil v Innovate Transport, a limited company contractor wasn’t a worker and was on £2.30 — not £230 Jul 21 07:58
- Andy Burnham is PM: 5 new IT policies set to shape UK tech and its contractors Jul 20 06:29
- Taxed on money I haven't earned yet? Bold move, HMRC Jul 17 08:36
- The Fair Work Agency has got zero hours in its sights. Do you? Jul 16 08:44

Comment