Showing results for July 2013 - Scripting Blog [archived]

Jul 31, 2013
0
0

PowerTip: Use PowerShell to Launch Item from Control Panel

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to launch an item from the Control Panel.  How can I use Windows PowerShell to launch the Mail item on the Control Panel in Windows 8 or Windows Server 2012?  Use the Get-ControlPanelItem with a wildcard character to retrieve the item, then pipe the results to the Show-...

Scripting Guy!Windows PowerShellPowerTip
Jul 31, 2013
0
0

PowerShell Get-Command Cmdlet Returns Only One Instance

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, shows how to configure Windows PowerShell to return more than one instance of a command.  Hey, Scripting Guy! I have a problem. I recently upgraded to Windows 8, and now it seems that the Get-Command cmdlet does not work properly. In the past, I have used Get-Command as a replacement for Where....

Scripting Guy!Windows PowerShellscripting techniques
Jul 30, 2013
0
0

PowerTip: Use PowerShell to Retrieve List of Control Panel Items

Doctor Scripto
Doctor Scripto

Summary: See a list of items found in Control Panel.  How can I use Windows PowerShell to see a list of items found in Control Panel.  Use the Get-ControlPanelItem cmdlet: Get-ControlPanelItem    ...

Scripting Guy!Windows PowerShellPowerTip
Jul 30, 2013
1
0

Learn How to Configure PowerShell Memory

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about how to configure Windows PowerShell memory availability for specialized applications.  Hey, Scripting Guy! I really need your help. We are doing something that perhaps Windows PowerShell cannot do. At least, this is the way it seems. We have a huge file share, and we are parsing through ...

Scripting Guy!Windows PowerShellscripting techniques
Jul 29, 2013
1
0

PowerTip: Reload Your PowerShell Profile

Doctor Scripto
Doctor Scripto

Summary: Reload your Windows PowerShell profile without closing and reopening Windows PowerShell.  How can I reload my Windows PowerShell profile to test some changes I made—without closing and reopening Windows PowerShell?  Use the invocation operator with the automatic $profile variable: & $profile Note  ...

Scripting Guy!Windows PowerShellPowerTip

Feedback