
Announcements
Hi everyone,
I was running a test on schedule flow, while I changed its name. Now the flow is consistently running and I don't know how to stop it. Any idea how to kill it? Is there a way to stop all the flows, maybe?
Thanks for your support
Luca
Answer taken from
https://365hq.net/cancelling-all-running-flows-in-power-automate/
//Include jquery (you may need to paste this following twice)
var jq = document.createElement('script');
jq.src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
jQuery.noConflict()// Cancel all running flows ( This part you only paste once)
confirm = function () {return true;};
setInterval(function () {
$(".fl-StatusInCell:contains('Running')").parent().parent().find('.ms-DetailsRow-cell').first().click();
$(".fl-StatusInCell:contains('Running')").parent().parent().find('.ms-DetailsRow-cell').last().click();
$(".fl-StatusInCell:contains('Running')").parent().parent().find('.ms-DetailsRow-cell').first().click();
$('button[name="Cancel"]').click();
},3000);
Cheers !