Created
May 31, 2016 04:33
-
-
Save ubnt-intrepid/f6820c3896b7b87c8e8d8d9fd3f6cae7 to your computer and use it in GitHub Desktop.
PowerShell サンプル集
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .synopsis | |
| Invoke batch file and apply the changes of all environment variables. | |
| #> | |
| param ( | |
| [string] | |
| $batch | |
| ) | |
| cmd /c "$batch & set" | & { | |
| if ($_ -match '^(.*?)=(.*)$') { | |
| $key, $value = $matches[1..2] | |
| [Environment]::SetEnvironmentVariable($key, $value) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment