# 取全部,像 CMD 的 set
Get-ChildItem Env:
# 或
dir Env:
# 取 windir 變數內容
$Env:windir
# 或
Get-Item -Path Env:windir
# 定義變數
$Env:<variable-name> = "<new-value>" $Env:Foo = 'An example'
# 或
Set-Item -Path Env:Foo -Value 'BAR'
# 取全部,像 CMD 的 set
Get-ChildItem Env:
# 或
dir Env:
# 取 windir 變數內容
$Env:windir
# 或
Get-Item -Path Env:windir
# 定義變數
$Env:<variable-name> = "<new-value>" $Env:Foo = 'An example'
# 或
Set-Item -Path Env:Foo -Value 'BAR'
留言