From: "=?koi8-r?B?7cnIwcnMIPTPzMvPzsDL?=" Received: by mx.demos.su (CommuniGate Pro PIPE 5.0.14) with PIPE id 548905260; Wed, 25 Sep 2013 17:50:00 +0400 X-Spam-Status: No, hits=-0.8 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2-st1.demos X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 3.3.2-st1.demos (2011-06-06) X-Spam-Report: -0.8 points, 5.0 required; * -0.0 SPF_PASS SPF: sender matches SPF record * -0.3 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain * -0.5 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mail.cinimex.ru ([178.208.141.8] verified) by mx.demos.su (CommuniGate Pro SMTP 5.0.14) with ESMTP id 548905227 for CGatePro@mx.ru; Wed, 25 Sep 2013 17:49:56 +0400 Received: from [192.168.11.44] (account mtolkoniuk@cinimex.ru) by cinimex.ru (CommuniGate Pro WEBUSER 6.0.6) with HTTP id 5410641 for CGatePro@mx.ru; Wed, 25 Sep 2013 17:49:50 +0400 Subject: =?koi8-r?B?7sXEz9PU1dDO2SDPwt3JxQ==?= =?koi8-r?B?INDB0MvJIN7F0sXa?= API Outlook To: CGatePro@mx.ru X-Mailer: CommuniGate Pro WebUser v6.0.6 Date: Wed, 25 Sep 2013 17:49:50 +0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain;charset=koi8-r; format="flowed" Content-Transfer-Encoding: 8bit Подскажите, как получиь доступ к общим папкам других пользователей через API Outlook, если они не добавлены на закладке "Дополнительно" в свойствах MAPI Connector? С локальными папками всё работает замечательно, а вот при попытке обратиться к папке другого пользователя, у которой стоят все разрешения для anyone, выдаёт сообщение: Сбой операции. Объект не найден. Тестовый код (http://msdn.microsoft.com/en-us/library/office/ff869575%28v=office.14%29.aspx): Set Outlook = CreateObject("Outlook.Application") Set myNamespace = Outlook.GetNamespace("MAPI") Set myRecipient = myNamespace.CreateRecipient("public") myRecipient.Resolve If myRecipient.Resolved Then Set PublicFolder = _ myNamespace.GetSharedDefaultFolder(myRecipient, 6) WScript.Echo PublicFolder.Name End If