7 lines
115 B
PowerShell
7 lines
115 B
PowerShell
|
[CmdletBinding()]param(
|
||
|
[string]$Name,
|
||
|
[object]$Value
|
||
|
)
|
||
|
|
||
|
Set-Item -Path (Join-Path "env:" $Name) -Value $Value
|