Get number of most common Microsoft Exchange resources using PowerShell.
SCRIPT:
# get number of resources and save it into variables
$Mailboxes = (Get-Mailbox -ResultSize Unlimited).count
$UserMailboxes = (Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails UserMailbox).count
$RoomMailboxes = (Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails RoomMailbox).count
$SharedMailboxes = (Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails SharedMailbox).count
$Contacts = (Get-Contact -ResultSize Unlimited).count
Wednesday, August 29, 2018
Friday, August 10, 2018
Project Natick - Microsoft sinks a Data Center off the Scottish sea
Microsoft has placed a data center in the Scottish sea to determine the feasibility of subsea datacenters powered by offshore renewable energy.
Labels:
Microsoft
Monday, August 6, 2018
Learn PowerShell Core 6.0
Folks,
a new book about PowerShell Core 6.0 released. If you are interested in PS, you should check it out...
https://www.packtpub.com/networking-and-servers/learn-powershell-core-60#
What You Will Learn:
– Get to grips with Powershell Core 6.0
– Explore basic and advanced PowerShell scripting techniques
– Get to grips with Windows PowerShell Security
– Work with centralization and DevOps with PowerShell
– Implement PowerShell in your organization through real-life examples
– Learn to create GUIs and use DSC in production
BR
Tim
a new book about PowerShell Core 6.0 released. If you are interested in PS, you should check it out...
https://www.packtpub.com/networking-and-servers/learn-powershell-core-60#
What You Will Learn:
– Get to grips with Powershell Core 6.0
– Explore basic and advanced PowerShell scripting techniques
– Get to grips with Windows PowerShell Security
– Work with centralization and DevOps with PowerShell
– Implement PowerShell in your organization through real-life examples
– Learn to create GUIs and use DSC in production
BR
Tim
Labels:
Powershell
Subscribe to:
Posts (Atom)