gpt4 book ai didi

dynamics-crm - 无法删除邮箱

转载 作者:行者123 更新时间:2023-12-02 04:50:48 25 4
gpt4 key购买 nike

我有一个我想删除的邮箱。但是我收到的错误消息如下。

The mailbox associated to a user or a queue cannot be deleted.

但是,我看不到可能锁定它的用户/队列。我唯一能想到的是 Regarding 查找,但它被禁用并且不能设置为任何其他...

我们的团队有一个新人,我告诉他们要疯了,但他们创造的那些疯子很奇怪,因为我看不出如何补救(如果问题与有关 完全...)

我试过激活/停用、重新发送测试邮件、添加/删除服务器配置文件等。或多或少,我能做的任何事情……我发现的唯一有值(value)的(这是夸张的)是some guy's vague suggestions ...

enter image description here

最佳答案

这个问题的最佳答案是邮箱依赖于队列和用户记录,但您不能删除它们。但是还有另一种方法可以执行此操作,但 Microsoft 不推荐此操作。解决方案是您可以使用 SQL 查询,实际上您可以更新用户和队列并清除邮箱字段,然后可以删除邮箱记录。

//First Check Your Primary User Table to See The Records You Want To Delete and Backup from that

select s.DefaultMailbox
from SystemUserBase s

//Like Past Step See This Records And Back it up
select s.DefaultMailbox
from SystemUserBase s

//This Is Primary View For CRM User Like Other Step BackUp Records
select sv.DefaultMailbox, sv.DefaultMailboxName
from SystemUser sv

//And This Is Last Table You Want For This Action This Is queue Table
select q.DefaultMailbox
from QueueBase q

//Then Update This Columns In Tables
update QueueBase
set DefaultMailbox = null

update SystemUser
set DefaultMailbox = null , DefaultMailboxName = null

update SystemUserBase
set DefaultMailbox = null

在这个查询之后你现在可以删除邮箱希望对你有帮助

关于dynamics-crm - 无法删除邮箱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28724116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com