Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to know if it's possible from windows command line to list ALL environment variables.

Something equivalent to powershell gci env: (or ls env: or dir env:).

Thanks in advance.

share|improve this question

2 Answers

up vote 154 down vote accepted

Just do

SET

You can also do SET prefix to see all variables with names starting with prefix.

share|improve this answer
Perfect! Thank you very much Jon :) – nick rulez Mar 16 '11 at 15:38

Simply run set from cmd. ..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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