PowerShell 5: Create Simple Class
Summary: Ed Wilson, Microsoft Scripting Guy, talks about creating a simple class in Windows PowerShell 5.0 in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. The good news is that so far the...
View ArticlePowerTip: Verify Default Output Encoding in PowerShell
Summary: Learn how to verify your default output encoding in Windows PowerShell. How can I use Windows PowerShell to verify my default output encoding? Check the value of the $OutputEncoding automatic...
View ArticleAdding Enums to PowerShell 5 Classes
Summary: Ed Wilson, Microsoft Scripting Guy, talks about adding enums to Windows PowerShell 5.0 classes in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. It is my birthday week...almost. It is...
View ArticlePowerTip: Use PowerShell to View Appx Log
Summary: Use Windows PowerShell to view the Appx log for deployment messages. How can I use Windows PowerShell 5.0 in Windows 10 to examine the Appx log for deployment messages? Use the Get-AppxLog...
View ArticleCreating Instances of PowerShell 5 Classes
Summary: Ed Wilson, Microsoft Scripting Guy, talks about creating instances of Windows PowerShell 5.0 classes in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. Today I am up early. I have the...
View ArticlePowerTip: Use PowerShell to Find ETW Providers
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...
View ArticleAdding Methods to a PowerShell 5 Class
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,...
View ArticlePowerTip: Use PowerShell to Clean Up Temp Files
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...
View ArticleWeekend Scripter: Introduction to PowerShell 5 classes—The Video
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...
View ArticlePowerTip: Use PowerShell to Determine Network Connection Profile
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...
View ArticleWeekend Scripter: Create a Simple PowerShell 5 Class—The Video
Summary: Ed Wilson, Microsoft Scripting Guy, presents a video about adding members to Windows PowerShell 5.0 classes in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. Today I want to present a...
View ArticlePowerTip: Set Network Connection Profile with PowerShell
Summary: Use Windows PowerShell to configure the network connection profile. How can I use Windows PowerShell to set the network connection profile for my network adapter? Use the Get-NetAdapter cmdlet...
View ArticleCreate PowerShell 5 Classes with Enums—The Video
Summary: Microsoft Scripting Guy, Ed Wilson, presents a video about creating Windows PowerShell 5.0 classes by using enums in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. Today, I continue...
View ArticlePowerTip: Use PowerShell to Check Volume for Errors
Summary: Learn how to use Windows PowerShell to check a volume for errors. How can I use Windows PowerShell 5.0 to check a volume for errors on my Windows 10 computer? Use the Repair-Volume cmdlet, and...
View ArticleAdding Methods to PowerShell 5 classes—The Video
Summary: Microsoft Scripting Guy, Ed Wilson, presents a video about adding methods to Windows PowerShell 5 classes in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. Today I am presenting a...
View ArticlePowerTip: Quickly Fix a Volume with PowerShell
Summary: Use Windows PowerShell to perform a quick fix on a volume. How can I use Windows PowerShell to perform a quick fix on a volume that is somewhat suspect? Use the Repair-Volume cmdlet and...
View ArticlePowerShell 5 classes: Constructor Overloading
Summary: Ed Wilson, Microsoft Scripting Guy, talks about using the new Windows PowerShell 5.0 class feature in Windows 10 and doing constructor overloading.Microsoft Scripting Guy, Ed Wilson, is here....
View ArticlePowerTip: Find Class Constructors in PowerShell 5
Summary: Learn how to easily find class constructors. How can I use Windows PowerShell 5.0 to find the constructor overloads for a new class I want to create? Place the class in square brackets, and...
View ArticleUse Inheritance in PowerShell 5 Classes
Summary: Ed Wilson, Microsoft Scripting Guy, talks about using inheritance with Windows PowerShell 5.0 classes in Windows 10.Microsoft Scripting Guy, Ed Wilson, is here. Today I want to talk about...
View ArticlePowerTip: Use PowerShell to Create New GUID
Summary: Use Windows PowerShell to create a new GUID. How can I use Windows PowerShell to easily generate a new GUID for a project.? Use the New-Guid cmdlet. If you need to create more than one, you...
View Article