我在设置用户变量 PATH 时遇到一些问题,我的 PATH 包含以下行:
%PATH%;"C:\Program Files\K-Lite Codec Pack\Media Player Classic";C:\Program Files\SSH Communications Security\SSH Secure Shell
但是当我mpc-hc.exe
从收到的命令行运行时"mpc-hc.exe" is not recognized as an internal or external command
,我做错了什么吗?
答案1
使用该PATH
命令,只需在后面添加路径(%PATH%
不带任何引号),用分号分隔不同的项目:
PATH %PATH%;path1;path2
无论您的路径是否包含空格,它们都会按照您输入的方式添加。
另外,是否用分号终止列表也没有关系。
答案2
将其放在双引号中并以 ; 结尾。
%PATH%;"C:\Program Files\K-Lite Codec Pack\Media Player Classic";"C:\Program Files\SSH Communications Security\SSH Secure Shell";