# 取全部,像 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'

 

Related posts 相關文章
寫 shell script 時設置錯誤提示
More...
Windows 10 找不到 SNMP 功能安裝選項
More...
Windows Powershell Test-NetConnection 指令測試與遠端主機的連線
More...
Windows Powershell 新增防火牆設定指令 command line
More...

作者

留言

撰寫回覆或留言

發佈留言必須填寫的電子郵件地址不會公開。