문제

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top