gpt4 book ai didi

powershell - 抑制 Import-PSSession 的输出

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

执行 Import-PSSession 时如何避免所有不需要的控制台输出?我正在编写一个脚本来监控 Exchange 中的一些东西,它需要进入我们的监控系统并且只产生非常具体的输出,但是每当我导入我的 Exchange session 时,它就会产生

WARNING: Some imported command names include unapproved verbs which might make them less discoverable. Use the Verbose parameter for more detail or type Get-Verb to see the list of approved verbs.



我试过了:
$Session=(Import-PSSession(New-PSSession -ConfigurationName Microsoft.Exchange \
-ConnectionUri http://CasServer/PowerShell/ -Authentication Kerberos \
-Credential $Cred -AllowClobber -WarningAction:SilentlyContinue)

它仍然显示不需要的文本。我也试过 -ErrorAction:SilentlyContinue ;不起作用。

最佳答案

如果指定要使用的所有 cmdlet 不可行,您可以使用以下开关来取消警告:

-DisableNameChecking

例子:
Import-PSSession $session -DisableNameChecking

关于powershell - 抑制 Import-PSSession 的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11159984/

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