Showing results for 2012 - Scripting Blog [archived]

Dec 31, 2012
0
0

PowerTip: Pause a PowerShell Script

ScriptingGuy1
ScriptingGuy1

Summary: Learn how to pause a Windows PowerShell script.  How can I pause a Windows PowerShell script?  In Windows PowerShell 3.0 use the pause function, as shown here. 23:10 C:\> pause Press Enter to continue...: 23:11 C:\&gt...

Scripting Guy!Windows PowerShellPowerTip
Dec 31, 2012
0
0

Using Windows PowerShell Jobs

ScriptingGuy1
ScriptingGuy1

Summary: Microsoft Scripting Guy, Ed Wilson, shows an excerpt from his new step-by-step book about using Windows PowerShell jobs. Microsoft Scripting Guy, Ed Wilson, is here. Today I want to share a portion of my new Microsoft Press Windows PowerShell 3.0 Step by Step book. This book is available now for preorder. Using Windows PowerShell Jobs You ...

Scripting Guy!Windows PowerShellscripting techniques
Dec 30, 2012
1
0

PowerTip: Change the PowerShell Console Title

ScriptingGuy1
ScriptingGuy1

Summary: Learn how to change the Windows PowerShell console title.  How can I change the title of the Windows PowerShell console?  One way to do this is to use the WindowTitle property from $host.ui.rawui, as shown here. $host.ui.RawUI.WindowTitle = "Changed Title...

Scripting Guy!Windows PowerShellPowerTip
Dec 30, 2012
0
0

Understanding PowerShell Remote Management

ScriptingGuy1
ScriptingGuy1

Summary: Understanding Windows PowerShell remote management. Weekend Scripter: Enabling Windows remote management Microsoft Scripting Guy, Ed Wilson, is here. Today I thought I would share a portion of my new Windows PowerShell 3.0 Step by Step book published by Microsoft Press. This book is available for pre-order now. WinRM – Windows Remote...

Scripting Guy!Windows PowerShellscripting techniques
Dec 29, 2012
0
0

PowerTip: Find Which PowerShell Cmdlets Have Most Aliases

Doctor Scripto
Doctor Scripto

Summary: Find out which Windows PowerShell cmdlets have the most defined aliases.  How can I determine which Windows PowerShell cmdlets have the most aliases?  Use the Get-Alias cmdlet and group by the definition. Sort the count in a descending manner, and select the top 10 items. The following command accomplishes this ...

Scripting Guy!Windows PowerShellPowerTip

Feedback