Powershell Try/catch - 获取用户

问题描述 投票:0回答:2

我正在学习

posh
。我试图理解为什么这个脚本没有捕获警告。

try{
    get-user aaaa -WarningAction Stop
}
catch
{
    Write-Host "hi"
}

这是错误:

get-user : The operation couldn't be performed because object 'aaaa' couldn't be found on
'iDC01.contoso.com'. At C:\Users\Gra***\Desktop\test.ps1:2 char:5
+     get-user aaaa -WarningAction Stop
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Get-User], ManagementObjectNotFoundException
    + FullyQualifiedErrorId : [Server=ME1,RequestId=ebcde0d2-9222-443b-b25a-ef7279fd168e,
      TimeStamp=20.06.2017 13:51:35] [FailureCategory=Cmdlet-ManagementObjectNotFoundException]
      FE0D594D,Microsoft.Exchange.Management.RecipientTasks.GetUser

我尝试过

-WarningActions Stop
-ErrorAction Stop
但没有结果。

总的来说,我已经了解了

try/catch
的基础知识,并且以下脚本可以正常工作。

try{
Get-Process -name xyz -ErrorAction Stop
}
catch{
Write-Host "oops"
}

我正在使用

powershell_ise 5.1
。你知道
get-user
出了什么问题吗? 另外,我无法使用
Get-ADuser

windows powershell try-catch exchange-server powershell-ise
2个回答
2
投票

调用函数时可以捕获两种情况,错误或警告。您可以在脚本中使用

$WarningPreference
$ErrorActionPreference
全局设置这些,也可以使用 -ea 或 -wa 参数单独设置。在您的示例中,我将使用以下内容来确定:

Try {
    Get-User aaaa -wa Stop -ea Stop
} Catch {
    Write-Output "hi"
    Write "[$($_.Exception.GetType().FullName)] - $($_.Exception.Message)"
}

关于_首选项_变量


0
投票

聚会迟到了,但这对我有用

尝试{ $test = (query user /server:$PCname | findstr -i -v 'sessionname' | -ErrorAction Stop)}catch{ } #填写此部分

© www.soinside.com 2019 - 2024. All rights reserved.