how to remove throttling policy?

Kurt Stichelmans 481 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

Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,211 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,369 questions
0 comments No comments
{count} votes

Accepted answer
  1. Kurt Stichelmans 481 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.

    0 comments No comments

0 additional answers

Sort by: Most helpful