0

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?

1 Answers1

0

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.

Guy Thomas
  • 933
  • 4
  • 14
  • 31
  • Thankyou...but i was hoping to retrieve statistics from a remote server..i had found the way by implicit remoting..thanks anyway :) – user3270210 Feb 12 '14 at 11:16