Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

PowerTip: Use PowerShell to Write Process Information to Text File

Summary: Use Windows PowerShell to write process information to a text file. (image)  How can I use Windows PowerShell to document information about currently running processes by writing the information to a text file? (image)  Use the Get-Process cmdlet and pipe the results to the Out-File cmdlet: Get-Process | ...

Getting Started with PowerShell: Text Files

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to work with text files. Microsoft Scripting Guy, Ed Wilson, is here. Good morning! Today I have an excerpt from my new book, Windows PowerShell 3.0 First Steps, which was recently published by Microsoft Press. (image) One of the easiest methods to store data is...

Getting Started with PowerShell: The Pipeline

Summary: Microsoft Scripting Guy, Ed Wilson, shares an excerpt from his new Windows PowerShell book. Microsoft Scripting Guy, Ed Wilson, is here. Today, I have an excerpt from my recently published book, Windows PowerShell 3.0 First Steps. This book is published by Microsoft Press. (image) The Windows PowerShell pipeline takes the output...