DeleteContents from mailbox with no confirmation (exchange 2010 and powershell)
我使用以下命令删除邮箱的内容,但它仍然提示我确认。有没有办法不提示我。
1 | Search-Mailbox -id"UserName" -DeleteContent -Confirm:$false |
停止提示的方法是使用
将
简单的事情就是通过
似乎有一个语法错误
1 | Search-Mailbox -id"UserName" -DeleteContent |