Looking for "On Break" event

I dont know if this exists or not, but im looking for an event that tells me when script execution has halted.

The intended functionality is based on cleaning up a script, should a user stop code exection (ctrl+c). If there is an event that serves this in any capacity, I havent found it yet.

Has anyone have any information around this?

Nope. PowerShell’s not really that event-driven in that way. There’s some intercepting a compiled cmdlet (not a function) can do in certain pipeline situations, but that’s all.

Thanks Don!

I will go back and take a second look at my approach. Appreciate the info.