gpt4 book ai didi

powershell - Powershell脚本给出错误但仍返回 “Successfully”

转载 作者:行者123 更新时间:2023-12-03 08:14:29 26 4
gpt4 key购买 nike

我正在编写一个程序来创建一个AD帐户并启用Exchange邮箱,并且从中得到一些奇怪的行为。

首先,尽管它成功创建了AD用户,但由于“找不到MyPath/先生示例”,因此无法启用邮箱。我认为这是由于AD服务器和Exchange服务器之间的时间差(代码在Exchange服务器上运行)造成的。虽然插休眠眠时间似乎可以解决此问题,但还有其他可能会丢失的可能性吗?

其次,我在Powershell使用的“红色错误文本”中收到此错误消息。看来我的try/catch语句使错误漏了,这导致我的脚本错误地通知我任务已成功完成。如何强制将错误捕获在脚本中而不是在控制台上显示? (我在测试过程中以点源方式运行它,这就是我注意到这一点的方式。)

我在下面包括了相关部分。任何帮助表示赞赏!谢谢=)

Import-Module ActiveDirectory
Add-PSSnapin Microsoft.Exchange.Management.Powershell.Admin
$errorLog = @()
$masterLog = @()
$time = Get-Date

New-ADUser -SamAccountName "example" -Name "Mr. Example" -Path "DC=MyPath" -Enabled 1 -Server ADServer

try{
Enable-Mailbox -Identity "MyPath/Mr. Example" -Alias "example" -Database "DatabaseName"
}
catch{
$myError = $Error[0]
$errorLog = $errorLog + "[$time] Error enabling mailbox for $fullName`: $myError"
}

if($errorLog.length -eq 0){
echo "An Active Directory account and Exchange mailbox for Mr. Example has been successfully created!"
}
else{
foreach($event in $errorLog){
$masterLog = $masterLog + $event
}
}

最佳答案

PowerShell中存在终止和非终止错误。 try..catch仅捕获前者。您可以通过设置强制终止错误

... -ErrorAction Stop

用于特定命令,或
$ErrorActionPreference = Stop

整个脚本。请参阅Scripting Guy博客以获取 more information

关于powershell - Powershell脚本给出错误但仍返回 “Successfully”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16991045/

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