Summary: Learn how to use Windows PowerShell to determine the network connection profile.
How can I use Windows PowerShell to determine the network connection profile my network adapter has picked up?
Use the Get-NetConnectionProfile cmdlet...
Summary: Ed Wilson, Microsoft Scripting Guy, presents a video to introduce Windows PowerShell 5 classes in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. It is a wonderful morning here in central Florida. The sun is already shining, and I am thinking about heading out to take some cool nature pictures. The land around here is quite ...
Summary: Use Windows PowerShell to delete temporary files.
How can I use Windows PowerShell to clean up a bunch of files that are stored in my temp directory?
Use the Get-ChildItem cmdlet (dir is an alias), point it to the $env:temp directory, and pipe the results to...
Summary: Ed Wilson, Microsoft Scripting Guy, talks about adding methods to a Windows PowerShell 5.0 class in Windows 10.
Microsoft Scripting Guy, Ed Wilson, is here. Having a bunch of properties, although cool, is in the end, rather unsatisfying. I remember trying to teach VBScript and WMI in the old days. Although it was possible to glean ...
Summary: Use Windows PowerShell to find Event Trace for Windows (ETW) providers.
How can I use Windows PowerShell 5.0 to see what Event Trace for Windows (ETW) providers are installed on my computer running Windows 10?
Open the Windows PowerShell console with Admin rights, and use the ...