Showing results for September 2012 - Scripting Blog [archived]

Sep 30, 2012
0
0

PowerTip: Look at User Variables

Doctor Scripto
Doctor Scripto

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 ""

Scripting Guy!Windows PowerShellPowerTip
Sep 30, 2012
0
0

Weekend Scripter: Build Your Own PowerShell Cmdlet: Part 2 of 9

Doctor Scripto
Doctor Scripto

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, see his...

Scripting Guy!Windows PowerShellguest blogger
Sep 29, 2012
0
0

PowerTip: Find the Last Command PowerShell Ran

Doctor Scripto
Doctor Scripto

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.

Scripting Guy!Windows PowerShellPowerTip
Sep 29, 2012
0
0

Weekend Scripter: Build Your Own PowerShell Cmdlet: Part 1 of 9

Doctor Scripto
Doctor Scripto

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 prev...

Scripting Guy!Windows PowerShellguest blogger
Sep 28, 2012
0
0

PowerTip: Use PowerShell 3.0 to Locate Modern Apps Installed on Windows 8

Doctor Scripto
Doctor Scripto

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:           ...

Scripting Guy!Windows PowerShellPowerTip