简体   繁体   中英

Calling powershell cmdlets in powershell script

How do i use powershell cmdlets in a ps script?? I need to use Get-MailboxStatistics cmdlet to retrieve mailbox statistics from Exchange server 2013 using a ps script

how can i invoke the cmdlet?

I suggest using PowerShell's own help with:

Get-Help Get-MailboxStatistics -Full

Then you can investigate parameters such as -Server -Identity.

The -Full parameter will give you examples.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM