hi,
way back i used to kill the w3wp from may task manager , but now i can not see them i am using .net core 5
yours sincerely
hi,
way back i used to kill the w3wp from may task manager , but now i can not see them i am using .net core 5
yours sincerely
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Tuhin PaulPosted Mar 11, 2024, 10:33 AM
For managing .NET Core processes, you'll typically look for processes named dotnet.exe in the Task Manager.
Identify the dotnet.exe Process: Look for processes named dotnet.exe in the Task Manager.
Kill the Process: If you need to stop a .NET Core application, you can terminate its corresponding dotnet.exe process in the Task Manager.
Use Command-Line Tools: Alternatively, you can also use command-line tools like
taskkillin Windows to terminate processes by name or other criteria.Tuhin PaulPosted Mar 11, 2024, 10:32 AM
the process model has changed from using the traditional w3wp.exe (for IIS) to a new process called dotnet.exe. This change was introduced to align with the cross-platform nature of .NET Core.
an example of how you might use
taskkillto terminate a .NET Core process:Replace
/IM dotnet.exewith the appropriate process name if needed.rajesh yadavPosted Mar 4, 2024, 4:42 AM
mr hobbs i know these details, we need it as a last resort.
so kindly answer the questing also
Sam HobbsPosted Mar 3, 2024, 3:10 PM
The term kill has multiple definitons. In Android it is normal to kill applications. In Windows it is considered undesirable to kill applications. Killing a Windows process should be done only when all other possibilities do not work. It should not be done instead of determining what is the normal way to end a process.
In this case,
w3wp.exeappears to be associated with IIS application pools. Therefore the normal way to end it would be to useInetMgr.exeto stop the application pool. Or perhaps you would want to stop the website (also usingInetMgr.exe) or perhaps both.