前置
查看环境变量
在命令提示符(cmd)窗口中输入 set
并按回车键,即可输出当前所有环境变量。
检查环境变量的用途
在执行相关命令时,请注意该变量是用于执行操作还是仅用于显示,同时 cmd 或 PowerShell 中使用的命令规则有所不同。
示例
命令提示符(cmd)
- 使用
start %appdata%
打开应用数据文件夹。 - 使用
echo %computername%
显示计算机名称。
PowerShell
- 使用
start $env:appdata
打开应用数据文件夹。 - 使用
echo $env:computername
显示计算机名称。
清单
ALLUSERSPROFILE | C:\ProgramData |
APPDATA | C:\Users\hexingxing\AppData\Roaming |
CommonProgramFiles | C:\Program Files\Common Files |
CommonProgramFiles(x86) | C:\Program Files (x86)\Common Files |
CommonProgramW6432 | C:\Program Files\Common Files |
COMPUTERNAME | HEXINGXING |
ComSpec | C:\Windows\system32\cmd.exe |
DriverData | C:\Windows\System32\Drivers\DriverData |
FPS_BROWSER_APP_PROFILE_STRING | Internet Explorer |
FPS_BROWSER_USER_PROFILE_STRING | Default |
HOMEDRIVE | C: |
HOMEPATH | \Users\hexingxing |
LOCALAPPDATA | C:\Users\hexingxing\AppData\Local |
LOGONSERVER | \\HXXDOMAIN |
NUMBER_OF_PROCESSORS | 12 |
OS | Windows_NT |
Path | C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\dotnet\;C:\Program Files\Git\cmd;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files (x86)\NetSarang\Xshell 7\;C:\Users\hexingxing\AppData\Local\Programs\Python\Python310\Scripts\;C:\Users\hexingxing\AppData\Local\Programs\Python\Python310\;C:\Users\hexingxing\AppData\Local\Microsoft\WindowsApps;C:\Users\hexingxing\AppData\Local\BypassRuntm;C:\Program Files\JetBrains\PyCharm Community Edition 2021.3.2\bin; |
PATHEXT | .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL |
PROCESSOR_ARCHITECTURE | AMD64 |
PROCESSOR_IDENTIFIER | Intel64 Family 6 Model 158 Stepping 10, GenuineIntel |
PROCESSOR_LEVEL | 6 |
PROCESSOR_REVISION | 9e0a |
ProgramData | C:\ProgramData |
ProgramFiles | C:\Program Files |
ProgramFiles(x86) | C:\Program Files (x86) |
ProgramW6432 | C:\Program Files |
PROMPT | $P$G |
PSModulePath | C:\Users\hexingxing\Documents\WindowsPowerShell\Modules;C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules |
PUBLIC | C:\Users\Public |
PyCharm Community Edition | C:\Program Files\JetBrains\PyCharm Community Edition 2021.3.2\bin; |
SESSIONNAME | Console |
SystemDrive | C: |
SystemRoot | C:\Windows |
TEMP | C:\Users\hexingxing\AppData\Local\Temp\1 |
TMP | C:\Users\hexingxing\AppData\Local\Temp\1 |
USERDNSDOMAIN | HXX.TT |
USERDOMAIN | HXX |
USERDOMAIN_ROAMINGPROFILE | HXX |
USERNAME | hexingxing |
USERPROFILE | C:\Users\hexingxing |
windir | C:\Windows |
友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!
0 条评论