标签: powershell scripting cmdlets
如何在ps脚本中使用powershell cmdlet? 我需要使用Get-MailboxStatistics cmdlet使用ps脚本从Exchange Server 2013检索邮箱统计信息
我该如何调用cmdlet?
答案 0 :(得分:0)
我建议使用PowerShell自己的帮助:
Get-Help Get-MailboxStatistics -Full
然后您可以调查参数,例如-Server -Identity。
-Full参数将为您提供示例。