在powershell脚本中调用powershell cmdlet

时间:2014-02-04 09:40:41

标签: powershell scripting cmdlets

如何在ps脚本中使用powershell cmdlet? 我需要使用Get-MailboxStatistics cmdlet使用ps脚本从Exchange Server 2013检索邮箱统计信息

我该如何调用cmdlet?

1 个答案:

答案 0 :(得分:0)

我建议使用PowerShell自己的帮助:

Get-Help Get-MailboxStatistics -Full

然后您可以调查参数,例如-Server -Identity。

-Full参数将为您提供示例。