Quote:
Originally Posted by Turtle91
OK, how do I get a formatted printout?
|
I just knew that was going to be the next question when I posted it.

The unhelpful answer is that I would use python.
You can use SET (with no parameters) at a command prompt to get an unformatted dump of all variables. You can also redirect the output to a text file
SET > output.txt
You could also use Powershell and do something like:
Get-ChildItem Env: | Format-Table -Wrap -AutoSize