how to set path in powershell code example
Example 1: add to path windows powershell
$env:Path = "SomeRandomPath"; (replaces existing path)
$env:Path += ";SomeRandomPath" (appends to existing path)
Example 2: Powershell PATH
# List Paths
$Env:Path