nainai1 发表于 2018-9-1 12:32:54

powershell 输出信息过多,结尾显示省略号

  有时候我们通过powershell指令去查询某些信息时,因为输出结果过多,导致一部分重要信息被省略号代替,如下图

  面对这种情况无论是 |fl 还是out-file 亦或是 export-csv都无法显示全部信息
  解决办法:
  1、(Get-MailboxJunkEmailConfiguration 邮件地址).trustedsendersanddomains
  2、Get-MailboxJunkEmailConfiguration -Identity "邮件底子好" |Select-Object -ExpandProper
  ty trustedsendersanddomains

页: [1]
查看完整版本: powershell 输出信息过多,结尾显示省略号