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
-
reynoldsreynolds
- Thanks (Given):
- 0
- Thanks (Received):
- 0
- Likes (Given):
- 0
- Likes (Received):
- 0
-
AtWAtW
- 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 -
xoggothxoggoth
- 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
-
fiddleaboutfiddleabout
- 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
-
darrenezdarrenez
- 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
- How to answer at interview, ‘What’s your greatest weakness?’ Nov 14 09:59
- Business Asset Disposal Relief changes in April 2025: Q&A Nov 13 09:37
- How debt transfer rules will hit umbrella companies in 2026 Nov 12 09:28
- IT contractor demand floundering despite Autumn Budget 2024 Nov 11 09:30
- An IR35 bill of £19m for National Resources Wales may be just the tip of its iceberg Nov 7 09:20
- Micro-entity accounts: Overview, and how to file with HMRC Nov 6 09:27
- Will HMRC’s 9% interest rate bully you into submission? Nov 5 09:10
- Business Account with ANNA Money Nov 1 15:51
- Autumn Budget 2024: Reeves raids contractor take-home pay Oct 31 14:11
- How Autumn Budget 2024 affects homes, property and mortgages Oct 31 09:23
Comment