Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Powershell - Removing User FullAccess Permissions from Their Own Mailb

Featured Replies

Hi All,

We had a little bug go through our Exchange Server that really hosed our permissions on all mailboxes. I have everything working now, but am looking for a way to systematically clean up permissions.

For instance: NT Authority\Self is allowed FullAccess on all mailboxes...this is good. This allows each user full access to their own mailbox. On top of this, each user is listed ALSO with FullAccess permissions on their own mailboxes. This is unnecessary due to the NT Authority\Self permission.

If I were to use the Exchange Management Console to remove each user from their mailbox, EMC would actually remove their access entirely by stipulating a DENY - not good.

What I am looking to do is use PowerShell to run a loop. So that you may better understand what I am trying to do:

1. Get-Mailbox2. Enumerate username associated with mailbox and assign $username variable3. Remove-MailboxPermission –user $username –AccessRight FullAccess

Once the entire command is piped:

Get-Mailbox | $username = user | Remove-MailboxPermission -user $username -AccessRight FullAccess 

Thus, it would remove the users' full-access permissions only from their own mailbox.

Can anyone help me accomplish this? I have searched and searched, but still come up empty.

Thanks!

Edited by Falcor

  • Author

So far what I've come up with on my own...which does NOT work is:

Get-Mailbox | Foreach-Object{    $username = Select-Object Alias    Remove-MailboxPermission -user $username -AccessRight FullAccess}

This is the error I get, which doesn't help me in the least:

Pipeline not executed because a pipeline is already executing. Pipelines cannot be executed concurrently.    + CategoryInfo          : OperationStopped: (Microsoft.Power...tHelperRunspace:ExecutionCmdletHelperRunspace) [],   PSInvalidOperationException    + FullyQualifiedErrorId : RemotePipelineExecutionFailedCannot bind argument to parameter 'User' because it is null.    + CategoryInfo          : InvalidData: ( [Remove-MailboxPermission], ParameterBindingValidationException    + FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Remove-MailboxPermission

Any ideas?

  • 2 months later...
  • 1 month later...

get-mail | gm

get the property of users

then

 

$p = (get-mail).user_property

 

foreach ($pp in $p) { remove-MailboxPermission -user $pp -AccessRight FullAccess }

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.