Answers for "add to path windows powershell"

0

add to path windows powershell

$env:Path = "SomeRandomPath";             (replaces existing path) 
$env:Path += ";SomeRandomPath"            (appends to existing path)
Posted by: Guest on April-25-2021
-1

add to path windows powershell

setx PATH "$env:path;\the\directory\to\add" -m
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language