gpt4 book ai didi

Powershell 脚本仅返回来自和交换 2003 邮箱的 totalitems

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

我正在编写一个 Powershell 脚本,该脚本将仅返回 Exchange 2003 邮箱中的所有项目。到目前为止,我有这个:

get-wmiobject -computername exchange01 -namespace root\microsoftexchangev2 -class exchange_mailbox -filter "mailboxdisplayname='Journal Mail'" | select-object totalitems | write-host



然而,这给出了结果:

@{totalitems=939}



我只希望返回该数字,因为我们有一个外部程序可以读取该数字并在它超过预定数字时发送通知。

我很难找到从结果中去除所有不必要信息的方法。欢迎对我如何实现这一目标提出任何建议。

最佳答案

Select-Object 返回一个具有一个属性的对象,将结果分配给一个变量并引用属性名称:

$mbx = get-wmiobject -computername exchange01 -namespace root\microsoftexchangev2 -class exchange_mailbox -filter "mailboxdisplayname='Journal Mail'" 
$mbx.totalitems

关于Powershell 脚本仅返回来自和交换 2003 邮箱的 totalitems,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13033100/

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