Summary: Learn how to return only the value of a Windows PowerShell variable.
How can I use a Windows PowerShell cmdlet to return only the value of a particular variable?
Use the Get-Variable cmdlet, and specify the name of the variable and the –valueonly switch. This technique is shown here using the home variable:
PS C:\> Get-Variable -Name home -ValueOnly
C:\Users\ed.IAMMRED