Guest User

Untitled

a guest
Jun 13th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. gci env: | %{"{0}={1}" -f $_.Name,$_.Value} | sort
  2.  
  3. a=foo
  4. b=bar
  5. c=baz
  6.  
  7. [Environment]::GetEnvironmentVariables("User") | %{"{0}={1}" -f $_.Name,$_.Value} | sort
  8.  
  9. =
Add Comment
Please, Sign In to add comment