Summary: Look at variables that do not have a description.
How can you look at automatic and user-created variables that have no description?
Use the Get-Variable cmdlet and search for an empty description:
Get-Variable | where description -eq...
Summary: Microsoft Windows PowerShell MVP, Sean Kearney, continues his series of guest blogs that detail how to build your own cmdlet.
Microsoft Scripting Guy, Ed Wilson, is here. We have a special week in store for you. Guest blogger and Windows PowerShell MVP, Sean Kearney, has written a series about building cmdlets. For more about Sean, ...
Summary: Find the last Windows PowerShell command by using an automatic variable.
How can you find the last Windows PowerShell command that was run?
Use the $$ automatic variable...
Summary: Microsoft Windows PowerShell MVP, Sean Kearney, begins a series of guest blogs that detail how to build your own cmdlet.
Microsoft Scripting Guy, Ed Wilson, is here. We have a special week in store for you. Guest blogger and Windows PowerShell MVP, Sean Kearney, has written a series about building cmdlets. For more about Sean, see his...
Summary: Learn how to use Windows PowerShell 3.0 to locate modern apps installed on a computer running Windows 8.
How can you use Windows PowerShell 3.0 to find out which modern apps are installed on a computer running Windows 8?
Use the Get-AppxPackage cmdlet:
&...