up vote 4 down vote favorite
share [g+] share [fb]

I know I can access environment variables in powershell using $Env. For example, I can access FOO with $Env:FOO

What I can't figure out is how to access the environment variable called FOO.BAR

$Env:FOO.BAR doesn't work. How can I access this from within Powershell?

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

To access any kind of PowerShell variable where the name contains non-alphanumeric characters, use the ${…} notation as in:

PS (STA-ISS) (1) > ${env:variable.with.dots} = "Hi there"

PS (STA-ISS) (2) > ${env:variable.with.dots}

Hi there

This works for variables in any drive (registry, filesystem, etc.)

link|improve this answer
Thanks! I figured it was something simple! – Jesse Weigert Nov 24 '08 at 2:44
feedback

Found the answer to my own question:

Use the .NET method to get the variable:

[Environment]::GetEnvironmentVariable("FOO.BAR")
link|improve this answer
That only works if it's in env:. – Jay Bazuzi Feb 5 '09 at 17:49
feedback

Get-WMIObject Win32_Environment -filter "name='foo.bar'"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.