這篇文章主要介紹了powershell獲取環(huán)境變量的方法,同時介紹了一個列出包含某關(guān)鍵字的環(huán)境變量的方法,需要的朋友可以參考下。
powershell中獲取一個windows環(huán)境變量,簡單一點就是使用“env:”前綴:
代碼如下:
ps>$env:windir
c:\windows
ps>$env:username
tobias
實際上“env:”是一種驅(qū)動,所以你能查詢到大多或部分環(huán)境變量。下面將顯示全部的名字中包含user的環(huán)境變量:
代碼如下:
ps>direnv:\*user*
namevalue
---------
userprofilec:\users\tobias
usernametobias
allusersprofilec:\programdata
userdomaintobiasair1