add to path in powershell code example
Example 1: powershell add to env path
$env:Path = "SomeRandomPath"; (replaces existing path)
$env:Path += ";SomeRandomPath" (appends to existing path)
Example 2: view to path powershell
$Env:Path -split ';'