Powershell get default calendar name
Hi, I am working on a script for monitoring the permissions of mailbox calendar folders, the problem is we have a Multilanguage exchange environment. Some of the mailbox folder names are in EN and some are in Dutch.
So I thought in the first place I can get the language setting of the mailbox and based on that I can decide if its a Dutch or EN folder (Calendar or Agenda). But now I found out that some mailboxes got Dutch language but EN folder names
and vice versa.
I am searching for a way to get the name of the default calendar folder without checking the regional or language properties.
Do you guys have some ideas?
Bye,
Pouyan
May 25th, 2012 5:34am
Hi,
Try this and see if that suites your needs:
Get-mailbox | Get-MailboxFolderStatistics -FolderScope calendar | sort-object Name |ft Identity,NameMartina Miskovic
Free Windows Admin Tool Kit Click here and download it now
May 25th, 2012 6:03am
Hi,
Try this and see if that suites your needs:
Get-mailbox | Get-MailboxFolderStatistics -FolderScope calendar | sort-object Name |ft Identity,NameMartina Miskovic
May 25th, 2012 6:12am
Hi Pouyan
Did you try the command above?
CheersZi Feng
TechNet Community Support
Free Windows Admin Tool Kit Click here and download it now
May 28th, 2012 2:56am
Hi Martina,
Thnx, this is exactly where I was searching for.. I have tested it and it works great.
June 4th, 2012 4:43am
Hi Zi,
Sorry for the late reaction, but I have tested the script and it works great.. exactly what I wanted.
Cheers
Free Windows Admin Tool Kit Click here and download it now
June 4th, 2012 4:44am