Showing archive results for October 2015

Oct 15, 2015
Post comments count0
Post likes count0

Use PowerShell to Parse Network Trace Logs

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about using Windows PowerShell to analyze packet trace logs. Microsoft Scripting Guy, Ed Wilson, is here. Today I want to finish my discussion about analyzing a network trace log that was captured by using the cmdlets from the NetEventPacketCapture module.    Note  To start my n...

Scripting Guy!Windows PowerShellnetworking
Oct 14, 2015
Post comments count0
Post likes count0

PowerTip: Sort an Array of Numbers with PowerShell

Doctor Scripto

Summary: Learn how to sort an array of numbers with Windows PowerShell.  How can I use Windows PowerShell to easily sort an array of numbers?  Pipe the array to the Sort-Object (sort is an alias) cmdlet, for example: $a = 1,2,7,6,4,3,3,2,9 $a | sort

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

Packet Sniffing with PowerShell: Looking at Messages

Doctor Scripto

Summary: Microsoft Scripting Guy Ed Wilson talks about looking at the message field in a packet log with Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. Yesterday I begin analyzing a packet trace log. Note  For more information about setting up and making a packet trace, see Packet Sniffing with PowerShell: Getting Started. Fo...

Scripting Guy!Windows PowerShellnetworking
Oct 13, 2015
Post comments count0
Post likes count0

Use PowerShell to Parse Network Log

Doctor Scripto

Summary: Ed Wilson, Microsoft Scripting Guy, talks about using Windows PowerShell to parse a network trace log.Microsoft Scripting Guy, Ed Wilson, is here. Today I want to talk a little bit about using Windows PowerShell to parse a network trace log. In yesterday’s blog post, Packet Sniffing with PowerShell: Getting Started, I talked using Wi...

Scripting Guy!Windows PowerShellnetworking
Oct 13, 2015
Post comments count0
Post likes count0

PowerTip: Send Message to Information Stream in PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to send information for a command to a separate information stream.  How can I use Windows PowerShell to send information to a user via a separate information stream,            without changing the default information preference variable?  In Windows PowerShell 5.0, use the ne...

Scripting Guy!Windows PowerShellPowerTip