Enterprise Software Thread, Bulk Share Exchange Calender in Technical; Hi,
We are on Exchange 2010. I have a user account with a Calendar. I wish to share this with ...
-
2nd July 2012, 04:01 PM #1 Bulk Share Exchange Calender
Hi,
We are on Exchange 2010. I have a user account with a Calendar. I wish to share this with a bulk of people who live in one OU & they all in in there own group. Does anyone know any powershell code to do this please?
I do not wish to go down the public folders route please.
Thanks
Last edited by FN-GM; 2nd July 2012 at 04:12 PM.
-
-
IDG Tech News
-
2nd July 2012, 11:17 PM #2 surely it's just the same as sharing with one person, but with a (distribution) group instead
-
-
2nd July 2012, 11:34 PM #3 Is it possible to do it without logging in. And also possible to make it so the user at the other end cant reject the request please?
-
-
3rd July 2012, 09:40 AM #4
-
-
3rd July 2012, 09:50 AM #5 If they are already in a distribution group you could use this, alter it as necessary:
#Variables
$group = "dist group name" #distribution group containing members that need access
$target = "user.name" + ":\calendar" #user's folder to be granted permissions over
$rights = "reviewer" #permissions to be granted
#Code
$members = Get-distributiongroupMember $group
$members | ForEach-Object {add-MailboxFolderPermission -Identity $target -user $_.name -accessRights $rights}
or if they are all members of a security group change the code to this:
$members = Get-ADGroupMember $group
$members | ForEach-Object {add-MailboxFolderPermission -Identity $target -user $_.SAMAccountName -accessRights $rights}
Personally I'd add a group and add users to that instead of individual users to the calendar then it can be updated easily through AD when required
Last edited by old_n07; 3rd July 2012 at 10:06 AM.
-
-
3rd July 2012, 09:59 AM #6 With cloud Exchange 2K10 I just give the security group permission and it apparently works fine (no users have scwtheamed) e.g.
Add-MailboxFolderPermission -Identity SomeUser:\Calendar -User SomeGroup -AccessRights Reviewer
Members of SomeGroup now have Reviewer access to SomeUser's calendar.
-
SHARE: 
Similar Threads
-
By OutLawTorn in forum Windows
Replies: 0
Last Post: 18th December 2007, 01:40 AM
-
By crc-ict in forum Windows
Replies: 13
Last Post: 18th October 2007, 01:09 PM
-
By the.damon in forum Windows
Replies: 0
Last Post: 31st July 2007, 09:24 AM
-
By mitchell1981 in forum Windows
Replies: 4
Last Post: 11th July 2007, 12:33 PM
-
By pooley in forum Windows
Replies: 1
Last Post: 3rd October 2006, 10:01 AM
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules