Summary: Find the default session configuration connection in Windows PowerShell.
How can I determine what default session configuration I can connect to?
Use the $PSSessionConfigurationName automatic variable to view the default session configuration:
PS C:\Users\Administrator> $...
Summary: Learn about Windows PowerShell endpoints and how they relate to remoting.
Hey, Scripting Guy! I keep hearing about Windows PowerShell endpoints and constrained endpoints related to remote management. Can you tell me more about these?
—KP
Hello, KP. Honorary Scripting Guy, Boe Prox, here today filling in for my ...
Summary: Learn how to use Windows PowerShell to save verbose messages from a script in an output file.
How can I use Windows PowerShell to save the verbose messages from a script in an output file?
Use the redirection operator that directs verbose messages (stream #4) to a file:
PS C:\> .\MyScript.ps1 -Verbose 4> ...
Summary: June Blender explains how to understand and use streams in Windows PowerShell.
Microsoft Scripting Guy, Ed Wilson, is here. Today guest blogger, June Blender, explains how to understand and use streams in Windows PowerShell. To read more from June, see these Hey, Scripting Guy! Blog posts.
Note Since the writing of this post, ...
Summary: Learn how to use Windows PowerShell to find Internet Explorer settings.
How can I use Windows PowerShell to explorer the various settings for Internet Explorer?
Use the Get-Item cmdlet and explore the Internet Explorer main hive for the current user:
get-item 'HKCU:\Software\Microsoft\Internet Explorer\Main...