Summary: Microsoft Scripting Guy, Ed Wilson, shares an excerpt from his book, Windows PowerShell Best Practices that discusses scripting pitfalls.
Microsoft Scripting Guy, Ed Wilson, is here. Today I have an excerpt from my new book, PowerShell Best Practices, which is published by Microsoft Press. In the excerpt today, I talk about avoiding ...
Summary: Microsoft Scripting Guy, Ed Wilson, talks about finding all two-letter alias combinations by using Windows PowerShell.
Microsoft Scripting Guy, Ed Wilson, is here. Today I have an excerpt from my new book, PowerShell Best Practices, which is published by Microsoft Press.
The two-letter alias namespace is rather large, but how large ...
Summary: Microsoft Scripting Guy, Ed Wilson, provides an excerpt from his new book, Windows PowerShell Best Practices, about searching for strings.
Microsoft Scripting Guy, Ed Wilson, is here. Today I have an excerpt from my new book, PowerShell Best Practices , which is published by Microsoft Press.
When you are searching for a string...
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...
Summary: Use Windows PowerShell to determine the stability of your system.
How can I use Windows PowerShell 4.0 on my laptop running Windows 7 to find out how stable my system is?
Use the Get-CimInstance cmdlet to query the Win32_ReliabilityStabilityMetrics, and pipe the ...