Showing archive results for October 2015

Oct 17, 2015
Post comments count0
Post likes count0

Use PowerShell to Parse Network Trace Logs—The Video

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, presents a video to show how to use Windows PowerShell to parse network trace logs. Microsoft Scripting Guy, Ed Wilson, is here. Today I am presenting a video where I show how to use Windows PowerShell to parse network traces. The steps I show are common commands that will normally be run to set up and ...

Scripting Guy!Windows PowerShellWeekend Scripter
Oct 16, 2015
Post comments count0
Post likes count0

PowerTip: Find Information about Operations Management Suite

Doctor Scripto

Summary: Learn how to find information about Microsoft Operations Management Suite.  How can I easily find the latest and coolest blogs and information about Operations Management Suite?  On Twitter, create a filter for #MSOMS.

Scripting Guy!Windows PowerShellPowerTip
Oct 16, 2015
Post comments count0
Post likes count0

Use PowerShell to Collect Network Traces—The Video

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, presents a video that shows how to use Windows PowerShell to collect network traces.Microsoft Scripting Guy, Ed Wilson, is here. Today I'm present a video where I show how to use Windows PowerShell to collect network traces. The steps I show are common commands that will normally be run to set up and col...

Oct 15, 2015
Post comments count0
Post likes count0

Now Available! Windows PowerShell Step by Step, Third Edition

Doctor Scripto

We’re pleased to announce the availability of Windows PowerShell Step by Step, Third Edition (ISBN 9780735675117), by Ed Wilson. Purchase from these online retailers: Microsoft Press Store Amazon.com Barnes & Noble Independent booksellers – Shop local Your hands-on guide to Windows PowerShell scripting fundamentals Expand ...

Oct 15, 2015
Post comments count0
Post likes count0

PowerTip: Get Unique Numbers from Array

Doctor Scripto

Summary: Learn how to get unique numbers from an array.  How can I use Windows PowerShell to return only the numbers that are unique in an array?  Sort the array of numbers, then pipe the output to the Get-Unique cmdlet, for example: $a = 1,2,7,6,4,3,3,2,9 $a | sort | Get-Unique Note  Sort is an alias for the ...

Scripting Guy!Windows PowerShellPowerTip