Showing results for getting started - Scripting Blog [archived]

Oct 19, 2015
0
0

Easy Parsing of Messages with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about parsing event message strings with Windows PowerShell.  Hey, Scripting Guy! I have seen people using different tools to find stuff in strings in Windows PowerShell, but it always looks complicated. Why is that? I thought Windows PowerShell was supposed to make things easier, but this loo...

Scripting Guy!Windows PowerShellgetting started
Sep 24, 2015
0
0

The Death of PowerShell Scripting

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about the reduced need to use Windows PowerShell scripting. Microsoft Scripting Guy, Ed Wilson, is here. If you follow me on Twitter or Facebook, you already know that my new book, Windows PowerShell Step by Step, third edition, is on its way to the printers. I am not going to talk about that today...

Scripting Guy!Windows PowerShellscripting techniques
Sep 14, 2015
0
0

Backwards Compatibility in PowerShell

Doctor Scripto
Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about backwards compatibility in Windows PowerShell. Hey, Scripting Guy! I wrote a script on a system with Windows PowerShell 4.0 installed. Is there an easy way to find out the earliest version of Windows PowerShell on which it will run?—DH Hello DH,Microsoft Scripting Guy, Ed...

Scripting Guy!Windows PowerShellscripting techniques
Aug 31, 2015
0
0

PowerTip: Float PowerShell Help

Doctor Scripto
Doctor Scripto

Summary: Learn how to display your Windows PowerShell Help in a new window.  How can I keep my Windows PowerShell Help open so I can look at it while I am trying my new code?  Use the ShowWindow parameter. It will open a new window that contains your Help and allow you to move            it around o...

Scripting Guy!Windows PowerShellPowerTip
Aug 30, 2015
0
0

PowerTip: Retrieve Last Token with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to retrieve the last token and avoid retyping. I used Get-Process to view a process I launched, and later I wanted to stop the process. How can I do this without            doing a lot of typing or creating new variables? The $$ automatic variab...

Scripting Guy!Windows PowerShellPowerTip