我想引用从cmdlet中选择的属性,然后稍后在我的脚本中使用它们$mailboxarray.totalitemsize
和$mailboxarray.totalitemsize
这在我的脚本中稍后会打破,因为我认为它不像它的对象类型。我如何制作任何我在引用中引入字符串的内容?目前我正在获取"从对象类型System.Management.Automation.PsObject
到已知的托管提供商类型"不存在映射。我的代码目前:第一个命令运行正常,但是当有多个条目(如第二行)时,我无法使用expandproperty?
$recipienttype = Get-mailbox -identity $recordset.PrimarySmtpAddress | Select -expandproperty RecipientTypeDetails
$mailboxarray = Get-Mailbox -identity $recordset.PrimarySmtpAddress | Get-MailboxStatistics | Select-object totalitemsize, lastlogontime