Showing results for Dave Wyatt - Scripting Blog [archived]

Apr 26, 2014
0
0

PowerTip: Use PowerShell to Look Up Variable Values

Doctor Scripto
Doctor Scripto

Summary: Look up variable values in the caller’s scope.  I’m writing a Windows PowerShell advanced function in a script module. How can I look up the value of           variables set in my caller’s scope?  Use the $PSCmdlet.GetVariableValue() method: [CmdletBinding()] param ( ) $variableValue = $...

Scripting Guy!Windows PowerShellPowerTip
Apr 26, 2014
2
0

Weekend Scripter: Access PowerShell Preference Variables

Doctor Scripto
Doctor Scripto

Summary: Windows PowerShell MVP, Dave Wyatt, talks about accessing caller preference variables. Microsoft Scripting Guy, Ed Wilson, is here. Today I would like to welcome a new guest blogger and new Windows PowerShell MVP, Dave Wyatt.      Dave has worked in the IT field for about 14 years as a software developer and a systems admini...

Scripting Guy!Windows PowerShellguest blogger