Showing results for March 2014 - Scripting Blog [archived]

Mar 31, 2014
0
0

PowerTip: Find Default Session Config Connection in PowerShell

Doctor Scripto
Doctor Scripto

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> $PSSessionConfigurat...

PowerTipguest bloggerBoe Prox
Mar 31, 2014
0
0

Introduction to PowerShell Endpoints

Doctor Scripto
Doctor Scripto

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 good f...

Windows PowerShellguest bloggerBoe Prox
Mar 30, 2014
0
0

PowerTip: Use PowerShell to Save Verbose Messages in Output File

Doctor Scripto
Doctor Scripto

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> VerboseMess...

Scripting Guy!Windows PowerShellPowerTip
Mar 30, 2014
0
0

Understanding Streams, Redirection, and Write-Host in PowerShell

Doctor Scripto
Doctor Scripto

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, some ...

Scripting Guy!Windows PowerShellguest blogger
Mar 29, 2014
0
0

PowerTip: Use PowerShell to Find Internet Explorer Settings

ScriptingGuy1
ScriptingGuy1

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'...

Scripting Guy!Windows PowerShellPowerTip