Difference between terminating and closing process?

Started by riley, May 16, 2024, 07:10:15 PM

Previous topic - Next topic

riley

Difference between terminating and closing process?

Jeremy Collake

Closing first sends a message signaling the process to end, allowing it a chance to gracefully close. Termination forcibly ends the process.
Software Engineer. Bitsum LLC.

riley

Quote from: Jeremy Collake on May 17, 2024, 06:49:18 AMClosing first sends a message signaling the process to end, allowing it a chance to gracefully close. Termination forcibly ends the process.
Thank you. Is there a way to make an application not run when processlasso is running(all the time for me) or to make it terminate it on startup?

Jeremy Collake

Quote from: riley on June 17, 2024, 02:58:43 AMThank you. Is there a way to make an application not run when processlasso is running(all the time for me) or to make it terminate it on startup?

Yes, that is the Disallowed Processes feature. See https://bitsum.com/processlasso-docs/#auto_terminate
Software Engineer. Bitsum LLC.

dianereese

Quote from: Jeremy Collake on June 17, 2024, 08:38:06 AMYes, that is the Disallowed Processes feature. See https://bitsum.com/processlasso-docs/#auto_terminate driving directions
You can create a script that runs at system startup to ensure the application is terminated if it starts.

blazertreadmill

While closing a process usually refers to the user-initiated action of shutting down an application in a controlled manner, terminating a process is a larger concept that entails ending the execution of a program and releasing associated resources. Closing a process frequently results in the underlying process ending as well.