powershell_变量/环境变量Path的分行查看

文章目录

path


PS C:\Users\cxxu_11> $env:Path  -split ';'
D:\Program Files\PowerShell\7
C:\Program Files\WindowsApps\Microsoft.WindowsTerminal_1.9.1942.0_x64__8wekyb3d8bbwe
C:\WINDOWS\system32
C:\WINDOWS
C:\WINDOWS\System32\Wbem
C:\WINDOWS\System32\WindowsPowerShell\v1.0\
C:\WINDOWS\System32\OpenSSH\
C:\Program Files\Microsoft SQL Server\130\Tools\Binn\
D:\program files\vmware\bin\
D:\exes\pcmaster
C:\Program Files\dotnet\
D:\Program Files\nodejs\
D:\exes\python-3.9.5-embed-amd64

variable


PS C:\Users\cxxu_11> $env:PSModulePath -split ';'
d:\usersByCxxu\DocumentsAll\PowerShell\Modules
C:\Program Files\PowerShell\Modules
d:\program files\powershell\7\Modules
C:\Program Files\WindowsPowerShell\Modules
C:\Windows\system32\WindowsPowerShell\v1.0\Modules

猜你喜欢

转载自blog.csdn.net/xuchaoxin1375/article/details/121435951