Outlook 2007 / MS Exchange 2003 – 全局强制特定的一组文件夹

我们有150个客户端连接到Exchange 2003服务器。 我试图强制每个Outlook 2007客户端都有一组特定的文件夹,并且用户无法删除这些文件夹。

我试图find与此相关的任何组策略设置,但似乎没有关系。 Google在这个问题上什么都没有。

这是不可能的? 任何人有想法或经验呢?

它被称为托pipe文件夹,它在Exchange 2007中引入,不推荐使用Exchange 2010中的保留标记,虽然它仍然存在。 不确定关于2013/365/2016。

在Exchange 2003中没有本地选项。您可以find第三方工具,或者直接从10年前的平台升级。

您只能在Exchange 2003下使用CDO / MAPI。不存在很多示例,但请检查: 如何:使用CDO 1.21和ACL.dll设置文件夹级权限

它是否运作良好,没有想法(但是它来自微博的博客,由微软员工编写)

编辑:创build文件夹,一个CDO示例: https : //msdn.microsoft.com/en-us/library/ms878​​640(v= exchg.65).aspx

The following examples show how to create a folder in the Exchange store. The function in each example performs the following steps: The function attempts to create a folder at this URL. If an error occurs, the function fails. If the function is successful, it sets the new folder's contentclass Field to the value "urn:content-classes:folder". The function returns a reference to the Record object that is bound to the new folder. VBScript If WScript.Arguments.Count < 1 Then WScript.Echo "Usage: cscript createfolder.wsf URL [content class]" WScript.Quit End If Dim sUrl Dim sContentClass ' Note: It is recommended that all input parameters be validated when they are ' first obtained from the user or user interface. sUrl = WScript.Arguments(0) sContentClass = WScript.Arguments(1) Dim Rec Wscript.Echo "Creating folder at URL: " & sUrl Set Rec = CreateFolder(sUrl, sContentClass, Nothing) Wscript.Echo "Succeeded." Function CreateFolder( sUrl, sContentClass, Conn ) Dim Rec Set Rec = CreateObject("ADODB.Record") ' Did caller pass a Connection object reference? If Not ( VarType(Conn) = vbObject AND TypeName(Conn) = "Connection" ) Then Set Conn = CreateObject("ADODB.Connection") Conn.Provider = "ExOLEDB.DataSource" Conn.Open sUrl End If If sContentClass = "" Then sContentClass = "urn:content-classes:folder" ' The Default is urn:content-classes:folder. End If ' Try to create the folder Rec.Open sUrl, Conn, adModeReadWrite, adCreateCollection Rec.Fields("DAV:contentclass") = sContentClass Rec.Fields.Update Set CreateFolder = Rec End Function 

EWS可以更改文件夹ACL,但Exchange 2003不支持它。 您需要至lessExchange 2007。

Set-MailboxFolderPermission也可以,但是它在2003年不可用。

例如, 那里和那里