Link to home
Start Free TrialLog in
Avatar of vhaperbaugub
vhaperbaugub

asked on

Removing Mailbox Access using Exchange PowerShell

How do I modify this script to remove my access after I'm done with the list of mailboxes:

Import-CSV "mailboxsizes\test1.csv" | ForEach{Add-MailboxPermission –ID $_.name –AccessRights FullAccess –User vhaperbaugub}
ASKER CERTIFIED SOLUTION
Avatar of J P
J P
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of vhaperbaugub
vhaperbaugub

ASKER

Thanks....That worked.