Showing results for Windows PowerShell - Scripting Blog [archived]

Oct 28, 2016
Post comments count0
Post likes count2

PowerShell regex crash course – Part 5 of 5

Doctor Scripto
Doctor Scripto

Summary: Thomas Rayner, Microsoft Cloud and Datacenter Management MVP, shows the basics of working with regular expressions in PowerShell. Hello! I’m Thomas Rayner, a proud Cloud and Datacenter Management Microsoft MVP, filling in for The Scripting Guy! this week. You can find me on Twitter (@MrThomasRayner), or posting on my blog, workingsysadmin...

Windows PowerShellguest bloggerThomas Rayner
Oct 25, 2016
Post comments count0
Post likes count0

Join the PowerShell tenth birthday celebration

I_am_mr_ed
I_am_mr_ed

SUMMARY: Microsoft Scripting Guy Ed Wilson announces November 14, 2016 as date for PowerShell 10th anniversary celebration Can you believe that PowerShell is nearly 10 years old (that is a long time in 'internet time')? On November 14, 2016 we will celebrate the occasion with a day-long event that will run from 8 in the morning until 4 in the afte...

communityPowerShellHey Scripting Guy
Oct 21, 2016
Post comments count0
Post likes count0

PowerTip: How to use regular expressions to split a string without losing the character you split on

Doctor Scripto
Doctor Scripto

Summary: Cloud and Datacenter Management MVP, Thomas Rayner, shows how to split a string without losing the character you split on. I’m splitting this file name some file.txt into its name and extension by going “some file.txt” –split “.”. It’s giving me some file and txt, but I want to keep the dot and get .txt instead. How can I do this? You c...

Windows PowerShellPowerTipguest blogger
Oct 21, 2016
Post comments count0
Post likes count2

PowerShell regex crash course – Part 4 of 5

Doctor Scripto
Doctor Scripto

Summary: Thomas Rayner, Microsoft Cloud and Datacenter Management MVP, shows the basics of working with regular expressions in PowerShell. Hello! I’m Thomas Rayner, a proud Cloud & Datacenter Management Microsoft MVP, filling in for The Scripting Guy! this week. You can find me on Twitter (@MrThomasRayner), or posting on my blog, workingsysadm...

Windows PowerShellguest bloggerThomas Rayner
Oct 17, 2016
Post comments count0
Post likes count0

Speed up remote PowerShell connection to Exchange

Doctor Scripto
Doctor Scripto

Summary: Speed up the connection to Exchange by importing only the cmdlets that you need. Is there a way to speed up the initial PowerShell connection to Exchange? Yes, of course! With a little modification to Import-PSSession, we can speed up the connection. Normally, you would connect to Exchange 2010/2013/2016 like this: $session = New-PS...

Scripting Guy!Windows PowerShellguest blogger