Showing results for December 2013 - Page 13 of 14 - Scripting Blog [archived]

Dec 3, 2013
0
0

PowerTip: Use PowerShell to Write Process Information to Text File

Doctor Scripto
Doctor Scripto

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

Scripting Guy!Windows PowerShellPowerTip
Dec 3, 2013
0
0

Getting Started with PowerShell: Text Files

Doctor Scripto
Doctor Scripto

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. One of the easiest methods to store data is in a text fi...

Scripting Guy!Windows PowerShellscripting techniques
Dec 2, 2013
0
0

PowerTip: Use PowerShell to Group Processes in Windows

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to group the numbers of processes in Windows.    How can I use Windows PowerShell to determine the number of processes that are running—          for example, if I notice that there are multiple copies of the same processes running? Use the Get-Process cmdlet, g...

Scripting Guy!Windows PowerShellPowerTip
Dec 2, 2013
0
0

Getting Started with PowerShell: The Pipeline

Doctor Scripto
Doctor Scripto

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. The Windows PowerShell pipeline takes the output from one com...

Scripting Guy!Windows PowerShellscripting techniques
Dec 1, 2013
0
0

PowerTip: Find User Name for a Process

Doctor Scripto
Doctor Scripto

Summary:  Use Windows PowerShell to find the user who owns a process.  How can I use Windows PowerShell 4.0 in Windows 8.1 to determine who owns a process?  Use the –IncludeUserName switch with the Get-Process cmdlet: Get-Process -IncludeUserName

Scripting Guy!Windows PowerShellPowerTip