July 31st, 2013

PowerTip: Use PowerShell to Launch Item from Control Panel

Doctor Scripto
Scripter

Summary: Learn how to use Windows PowerShell to launch an item from the Control Panel.

Hey, Scripting Guy! Question How can I use Windows PowerShell to launch the Mail item on the Control Panel in Windows 8 or Windows Server 2012?

Hey, Scripting Guy! Answer Use the Get-ControlPanelItem with a wildcard character to retrieve the item, then pipe the results to the Show-ControlPanelItem cmdlet:

Get-ControlPanelItem *mail* | Show-ControlPanelItem

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.