Answers for "powershell env:path"

0

powershell add to env path

$env:Path = "SomeRandomPath";             (replaces existing path) 
$env:Path += ";SomeRandomPath"            (appends to existing path)
Posted by: Guest on July-09-2020
1

how to get environment variables in powershell

#Windows Powershell
cd Env:
Get-ChildItem
Posted by: Guest on July-28-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language