Friday, October 12, 2018

Start Windows PowerShell using Keyboard shortcuts

Start Windows PowerShell using Keyboard shortcuts


















Run as User:  WIN + x in the menu press i

Run as Admin: WIN + x in the menu press a

Friday, September 7, 2018

Start Azure VMs using PowerShell workflow

Today I provide you two scripts to start your Azure VMs in a specified Subscription. The first script will start some VMs and the second will start all VMs of your Subscription.

Wednesday, August 29, 2018

Get number of most common Microsoft Exchange resources using PowerShell

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

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.


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