gpt4 book ai didi

variables - 将警告保存到 powershell 中的变量

转载 作者:行者123 更新时间:2023-12-01 19:19:53 24 4
gpt4 key购买 nike

所以我想做的是这个

 $corruptAccounts = Get-Mailbox | select-string -pattern WARNING

目的是用来自 Get-Mailbox 的警告填充变量 $corruptAccounts。实际发生的情况是,它处理 Get-Mailbox 命令,显示警告,并且不向变量中添加任何内容。

我是 powershell 新手,所以我仍在尝试学习一些基础知识。

最佳答案

试试这个:

Get-MailBox -WarningVariable wv
$wv

-WarningVariable 是可用于所有高级函数和二进制 cmdlet 的通用参数。

这是一个通用示例:

Function TestWarning {
[CmdletBinding()]
param (

)

Write-Warning "This is a warning"
}

PS C:\> TestWarning -WarningVariable wv
WARNING: This is a warning

PS C:\> $wv
This is a warning

关于variables - 将警告保存到 powershell 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25182902/

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