Summary: Use Windows PowerShell to show Control Panel items in Windows 8.
How can I use Windows PowerShell to display applets from within the Control Panel?
Use the Show-ControlPanelItem cmdlet to display an applet, and use the Get-ControlPanelItem cmdlet to obtain a list of all applets. The following ...
Summary: An anonymous blogger shares a domain migration script.
Microsoft Scripting Guy, Ed Wilson, is here. Today’s guest blogger will remain anonymous due to privacy considerations at his company. This does not mean that his knowledge needs to remain undisclosed. Without further ado, here is a really nice guest blog…
We are a ...
Summary: Use the .NET Framework to examine the initial session state of a Windows PowerShell runspace.
How can I see the initial session state of the default Windows PowerShell runspace?
Use the RunSpace class, and examine the InitialSessionState property from the default Runspace object:
[System....
Summary: Microsoft PFE, Jason Walker, talks about improving performance of Windows PowerShell by using runspaces.
Microsoft Scripting Guy, Ed Wilson, is here. Jason Walker is back with us today for the conclusion of his two-part weekend series. Be sure to read yesterday’s post before you read today’s:
Weekend Scripter: Max Out ...
Summary: Use the .NET Framework to find information about the default Windows PowerShell runspace.
How can I find information about the default Windows PowerShell runspace?
Use the DefaultRunspace parameter from the Runspace class:
[System.Management.Automation.Runspaces.Runspace]::DefaultRunspace...