Domanda

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?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top