Link to home
Start Free TrialLog in
Avatar of Fr. Vandecan
Fr. VandecanFlag for Belgium

asked on

PowerShell : Calendar in multiple language : how handle this easily and with efficiency ?

I'm working in Belgium. This is a small country. However, we have here 4 potentials different language and the users have therefore the possibility to have Calendar (EN), Kalendar(Dutch), Calendrier (French) and also the german version.I  would like to avoid to try each time each language for every mailbox calendar...

this is the current situation:
(French) Add-MailboxFolderPermission {$strEmail}:\Calendrier -User $strUserNPlusOne -AccessRights Reviewer
(English) Add-MailboxFolderPermission {$strEmail}:\Calendar   -User $strUserNPlusOne -AccessRights Reviewer
(Dutch) Add-MailboxFolderPermission {$strEmail}:\Kalendar   -User $strUserNPlusOne -AccessRights Reviewer
(German) yes also... :(

What's your proposed solution to handle this easily???
Avatar of Jason Crawford
Jason Crawford
Flag of United States of America image

Try this:

[string]$cal = Get-MailboxFolderStatistics <mailbox adding perms to> | Where-Object {$_.foldertype -eq 'Calendar'}
Add-MailboxFolderPermission $cal -User $strUserNPlusOne -AccessRights Reviewer

Open in new window

Avatar of Fr. Vandecan

ASKER

Hi  Jason Crawford ,

unfortunately the second part of the command does not work. (syntax issue)
I have tried this
            $cal = Get-MailboxFolderStatistics $strEmail | Where-Object {$_.foldertype -eq 'Calendar'}
            $strCalName = $cal.Name
            Add-MailboxFolderPermission {$strEmail}:\$strCalName -User $strUserNPlusOne -AccessRights Reviewer

but does not work either (also syntax issue)

any help ? tks.
ASKER CERTIFIED SOLUTION
Avatar of Jason Crawford
Jason Crawford
Flag of United States of America 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
No comment has been added to this question in more than 21 days, so it is now classified as abandoned.

I have recommended this question be closed as follows:

Accept: Jason Crawford (https:#a42416456)

If you feel this question should be closed differently, post an objection and the moderators will review all objections and close it as they feel fit. If no one objects, this question will be closed automatically the way described above.

Pber
Experts-Exchange Cleanup Volunteer