PowerShell
https://learn.microsoft.com/zh-cn/powershell/scripting/how-to-use-docs?view=powershell-7.2
环境变量
# 读取指定环境变量
PS > $env:windir
C:\WINDOWS
# 读取全部环境变量
PS> ls env:
# 创建新的环境变量
$env:testvarkey='testvarvalue'
# 删除环境变量
PS> del env:testvarkey
ps> $env:testvarkey
标签:PS,读取,testvarkey,powershell,笔记,env,环境变量
From: https://www.cnblogs.com/wl30564/p/16808967.html