web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / How to stop renamed flow
Power Automate
Unanswered

How to stop renamed flow

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

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

Categories:
I have the same question (0)
  • Anonymous_Hippo Profile Picture
    1,247 Super User 2024 Season 1 on at

    Answer taken from

    https://365hq.net/cancelling-all-running-flows-in-power-automate/

     

    1. Navigate to the flow in question
    2. Click on “All runs”
    3. Filter the view to only show the running flows
    4. Open the console in the browser (hit F12 and the select console)
    5. Paste in the code below. For some reason I need to paste the jquery part twice before the actual action code, but it works like a charm. Depending on the number of flows you have running, this can take quite a while.

    Anonymous_Hippo_0-1651178436094.png

    //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 ! 

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Automate

#1
Haque Profile Picture

Haque 589

#2
Valantis Profile Picture

Valantis 328

#3
David_MA Profile Picture

David_MA 284 Super User 2026 Season 1

Last 30 days Overall leaderboard