vote up 2 vote down star

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?

flag

3 Answers

vote up 8 vote down check

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|flag
Thanks! I figured it was something simple! – Jesse Weigert Nov 24 '08 at 2:44
vote up 2 vote down

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

link|flag
vote up 4 vote down

Found the answer to my own question:

Use the .NET method to get the variable:

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

Your Answer

Get an OpenID
or

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