vote up 0 vote down star

Is there any way to retrieve the environment variable in 64 bit machine. I already have %abc% which returns me variable in 32 bit machine, but doesn't work in 64 bit.

My Mistake: How can I get through command line not through programming language?

flag

40% accept rate
What do you mean by "variable in 64 bits"? – Mehrdad Afshari Sep 25 at 18:52
What flavour of Windows do you have? – glenn jackman Sep 25 at 19:35

2 Answers

vote up 0 vote down

Try System.Environment.GetEnvironmentVariable("abc")

link|flag
vote up 0 vote down

In PowerShell you'll get environment variables with

$Env:abc

This is independent of bit-ness.

In cmd you can get environment variables with

%abc%

this is also independent of bit-ness, so it would be nice if you'd elaborate what exactly you tried and where it failed and in what way.

link|flag

Your Answer

Get an OpenID
or

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