Help Rights on all public folders by default
Hello, You know that the powershell command to assign admin rights on all public folders in public folders by default. Make every one go and not file by file. The system is Exchange 2007 SP1 Thank you in advance.
April 23rd, 2009 2:04pm
You have two options,
1. PFDavAdmin: You can propagate the PF permission from root folder (/) to all folders and sub folders.
2. In-build Powershell scripts: You can use PF inbuild scripts to add, remove or replaces the user and permission on all PF recursive. Name of scripts are below...
AddUsersToPFRecursive.ps1
ReplaceUserWithUserOnPFRecursive.ps1
ReplaceUserPermissionOnPFRecursive.ps1
RemoveUserFromPFRecursive.ps1
http://www.msexchange.org/articles_tutorials/exchange-server-2007/tools/using-exchange-sever-2007-built-in-scripts-part1.htmlAmit Tank | MVP - Exchange | MCITP:EMA MCSA:M | http://ExchangeShare.WordPress.com
Free Windows Admin Tool Kit Click here and download it now
April 23rd, 2009 3:49pm
Amits suggestion is already very solid, Ill just some supplements
If you want to do it via EMS, please refer to sample below:
Get-PublicFolder -Recurse | Add-PublicFolderAdministrativePermission -User xxx -AccessRights xxx whatIf
More resources:
Add-PublicFolderAdministrativePermission
Configuring Public Folder Permissions
Scripts for Managing Public Folders in the Exchange Management Shell
April 24th, 2009 1:22pm