Share via

how to remove throttling policy?

Kurt Stichelmans 676 Reputation points
2021-09-22T06:50:01.06+00:00

I did something wrong. I created a throttle policy (exchange 2016) but was distracted and the name is something totally wrong.

So when I now ask get-throttlingpolicy I get
134232-throttle.png

So I thought I could remove it with this:
get-throttlingpolicy "-Name "sec-throttling-policy" -RCAMAXConcurrency: 100" | remove-throttlingpolicy

But that does not find the throttling policy.

What can I use to "activate" that policy to remove it?

Thanks.
Kurt

Exchange Online
Exchange Online

A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.

Exchange | Exchange Server | Management
Exchange | Exchange Server | Management

The administration and maintenance of Microsoft Exchange Server to ensure secure, reliable, and efficient email and collaboration services across an organization.

0 comments No comments

Answer accepted by question author

Kurt Stichelmans 676 Reputation points
2021-09-22T07:22:32.623+00:00

I got it:

get-throttlingpolicy | where {$_.id -like "rca"} | ft id, name
to be sure and then

get-throttlingpolicy | where {$_.id -like "rca"} | remove-throttlingpolicy
to remove.

case closed.

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.