Environment Variables: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) |
Admin (Diskussion | Beiträge) |
||
Zeile 1: | Zeile 1: | ||
== Get environment variable == | == Get environment variable == | ||
+ | === Get all using "System.Environment" === | ||
+ | <source lang="powershell">[Environment]::GetEnvironmentVariables() </source> | ||
+ | |||
=== Get using "System.Environment" (Scope = System) === | === Get using "System.Environment" (Scope = System) === | ||
<source lang="powershell">[Environment]::GetEnvironmentVariable('<VariableName>', 'Machine') </source> | <source lang="powershell">[Environment]::GetEnvironmentVariable('<VariableName>', 'Machine') </source> |
Aktuelle Version vom 6. Mai 2020, 16:05 Uhr
Inhaltsverzeichnis
Get environment variable
Get all using "System.Environment"
[Environment]::GetEnvironmentVariables()
Get using "System.Environment" (Scope = System)
[Environment]::GetEnvironmentVariable('<VariableName>', 'Machine')
Set environment variable
The System.Environment class provides GetEnvironmentVariable and SetEnvironmentVariable methods that allow you to specify the scope of the variable.
- User = User
- System = Machine
Set using "System.Environment" (Scope = System)
[Environment]::SetEnvironmentVariable("<VariableName>", "<VariableValue>", 'Machine')
More informations: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_environment_variables?view=powershell-7