Jun 24 2023 06:24 AM
Hello, I want to read the permissions of a mailbox with PowerShell. However, I would like to have read only the UPN. how do i get that?
Jun 24 2023 08:30 AM
Hi @luanoprz
I can't get your point if you want to get permission with powershell. just use Get-mailboxpermission
If I have answered your question, please mark your post as Solved If you like my response, please give it a Like Appreciate your Kudos! Proud to contribute! 🙂 |
Jun 24 2023 09:28 AM
Hi @Deleted
I just want to have the value from the User column (that's the UPN). I need these values in a variable to write them to a SharePoint list
Jun 25 2023 06:32 AM - edited Jun 25 2023 06:37 AM
Solutionuse Get-MailboxPermission -Identity abc@xyz |ft identity,user
by pipline the result you will get only what you need.
If I have answered your question, please mark your post as Solved If you like my response, please give it a Like Appreciate your Kudos! Proud to contribute! 🙂 |
Jun 25 2023 06:32 AM - edited Jun 25 2023 06:37 AM
Solutionuse Get-MailboxPermission -Identity abc@xyz |ft identity,user
by pipline the result you will get only what you need.
If I have answered your question, please mark your post as Solved If you like my response, please give it a Like Appreciate your Kudos! Proud to contribute! 🙂 |