mirror of
https://github.com/KelvinTegelaar/CIPP.git
synced 2026-04-25 16:26:09 +03:00
[GH-ISSUE #2549] [Feature Request]: Copy Calendar Permissions/Report on All Calendars a specific user has access to #1287
Labels
No labels
API
Feature
NotABug
NotABug
Planned
Sponsor Priority
Sponsor Priority
bug
documentation
duplicate
enhancement
needs more info
no-activity
no-priority
not-assigned
pull-request
react-conversion
react-conversion
roadmap
security
stale
unconfirmed-by-user
unconfirmed-by-user
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/CIPP#1287
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @EAG-ITO-Repo on GitHub (Jun 12, 2024).
Original GitHub issue: https://github.com/KelvinTegelaar/CIPP/issues/2549
Description of the new feature - must be an in-depth explanation of the feature you want, reasoning why, and the added benefits for MSPs as a whole.
When onboarding a new user we get asked to emulate calendar permissions from specific users, so we have to turn to powershell to find all calendars the source (to copy) user has access to, and also get the access rights details.
Sometimes we also get requests asking us to find and report on all calendars a specific user has access to across a whole org.
It would be helpful to have a report that gives us all the calendars a user has access to across a whole org, with access right details. And then an option to have a target user receive the same set of permissions on all the same calendars.
PowerShell commands you would normally use to achieve above request
Get-Mailbox | % { Get-MailboxFolderPermission (($_.PrimarySmtpAddress.ToString())+”:\Calendar”) -User "user" -ErrorAction SilentlyContinue} | select Identity,User,AccessRights