Build Your Own PowerShell Cmdlet: Part 5 of 9
Summary: Microsoft Windows PowerShell MVP, Sean Kearney, continues a series of guest blogs detailing building your own cmdlet. Microsoft Scripting Guy, Ed Wilson, is here. Guest blogger and Windows...
View ArticlePowerTip: See Detailed Information When Importing a Module
Summary: Learn how to see detailed information when you import a Windows PowerShell module. How can you receive detailed information when importing a module? Use the Verbose parameter when you import...
View ArticleBuild Your Own PowerShell Cmdlet: Part 6 of 9
Summary: Microsoft Windows PowerShell MVP, Sean Kearney, continues a series of guest blogs detailing building your own cmdlet. Microsoft Scripting Guy, Ed Wilson, is here. Guest blogger and Windows...
View ArticlePowerTip: Split PowerShell Output Between Console and Variable
Summary: Learn an easy way to save Windows PowerShell output in a variable and still output to the console. What is an easy way to display Windows PowerShell output from a cmdlet to the console, and...
View ArticleBuild Your Own PowerShell Cmdlet: Part 7 of 9
Summary: Microsoft Windows PowerShell MVP, Sean Kearney, continues a series of guest blogs detailing building your own cmdlet. Microsoft Scripting Guy, Ed Wilson, is here. Guest blogger and Windows...
View ArticlePowerTip: Enter a PowerShell Nested Prompt Directly
Summary: Learn how to directly enter a Windows PowerShell nested prompt. How can you directly enter a nested prompt without going through a cmdlet and using Suspend? Use the EnterNestedPrompt method...
View ArticleWeekend Scripter: Build Your Own PowerShell Cmdlet: Part 8 of 9
Summary: Microsoft Windows PowerShell MVP, Sean Kearney, continues a series of guest blogs detailing building your own cmdlet. Microsoft Scripting Guy, Ed Wilson, is here. Guest blogger and Windows...
View ArticlePowerTip: Easily Search PowerShell About Files
Summary: Learn how to use a switch to cause Get-Help to search _About files. How can you easily search the Windows PowerShell _About files for topics that are related to a string? Use the Category...
View ArticleWeekend Scripter: Build Your Own PowerShell Cmdlet: Part 9 of 9
Summary: Microsoft Windows PowerShell MVP, Sean Kearney, continues a series of guest blogs detailing building your own cmdlet. Microsoft Scripting Guy, Ed Wilson, is here. Guest blogger and Windows...
View ArticlePowerTip: Create a Module Manifest
Summary: Use Windows PowerShell to easily create a module manifest. What is the easy way to create a Windows PowerShell module manifest? Use New-ModuleManifest and specify the appropriate parameters:...
View ArticleUse PowerShell to Convert to or from JSON
Summary: Windows PowerShell MVP, Doug Finke, discusses using a simple Windows PowerShell command to convert to or from JSON. Microsoft Scripting Guy, Ed Wilson, is here. Today we have guest blogger,...
View ArticlePowerTip: Find Cmdlets that Work with JSON or REST
Summary: Find Windows PowerShell cmdlets that work with JSON or REST. How can you use a single cmdlet to look for cmdlets that work with either JSON or REST? The Get-Command cmdlet accepts an...
View ArticleFinding Read-Only and System Files by Using PowerShell 3.0
Summary: Learn how to use new parameters with the enhanced Get-ChildItem cmdlet in Windows PowerShell 3.0. Microsoft Scripting Guy, Ed Wilson, is here. There are a number of really cool new things in...
View ArticlePowerTip: Easily Track Which Modules Update PowerShell Help
Summary: See how to track which Windows PowerShell modules update Help. How can you easily track which modules update Help? Use the Verbose parameter when calling the Update-Help cmdlet, and then...
View ArticleUse PowerShell 3.0 to Filter Files Based on Advanced Attributes
Summary: Learn how to use Windows PowerShell 3.0 for file attribute filtering. Microsoft Scripting Guy, Ed Wilson, is here. The Scripting Wife and I will be at the Copenhagen Windows PowerShell User...
View ArticlePowerTip: Use PowerShell to Check Status of Windows Error Reporting
Summary: Use the Get-WindowsErrorReporting cmdlet to check the status of Windows Error Reporting. How do I check the status of Windows Error Reporting on my computer? Use the...
View ArticleUsing Categories to Help Search PowerShell Help
Summary: Learn how to use advanced features in the Windows PowerShell Get-Help cmdlet to quickly find PowerShell Help information. Microsoft Scripting Guy, Ed Wilson, is here. It seems that my schedule...
View ArticlePowerTip: Write PowerShell Output in Color Without Using Write-Host
Summary: Write colorized output to the Windows PowerShell console without using the Write-Host cmdlet. How can you write output to the Windows PowerShell console without using the Write-Host cmdlet?...
View ArticleUnderstanding Simplified Foreach Syntax in PowerShell 3.0
Summary: Microsoft Scripting Guy, Ed Wilson, talks about the simplified Foreach syntax in Windows PowerShell 3.0 and provides guidance on when to use which syntax. Microsoft Scripting Guy, Ed Wilson,...
View ArticlePowerTip: Search Help Files in PowerShell
Summary: Use the Category parameter to assist in searching Help files in Windows PowerShell. How can you search the about* Help files in Windows PowerShell for a specific topic? Specify HelpFile for...
View Article