powershell -ExecutionPolicy Bypass -File "absolute\path\to\set-env.ps1" -variableName "YOUR_VARIABLE_NAME" -variableValue "YOUR_VARIABLE_VALUE"
where YOUR_VARIABLE_VALUE can be a path, or a name for an existing environment variable
powershell -ExecutionPolicy Bypass -File "absolute\path\to\toggle-xdebug.ps1" -envVariableName php_now
powershell -ExecutionPolicy Bypass -File "absolute\path\to\update-branches.ps1" -Branches branch1,branch2 -Remotes origin1,origin2
powershell -ExecutionPolicy Bypass -File "absolute\path\to\git-files.ps1"
powershell -ExecutionPolicy Bypass -File "absolute\path\to\list-php.ps1"
powershell -ExecutionPolicy Bypass -File "absolute\path\to\init-remote.ps1" -GitHubUsername "USER_NAME" -GitHubToken "YOUR_TOKEN" -RepoName "YOUR_REPO_NAME"