今天发现 path 变量里有一个路径 e:\我的文档\桌面\RichReader 怎么也删不了...
- 在“系统属性->高级->环境变量”的 path 里面并没有这个路径;
- 把注册表中含有 RichReader 的项也都删掉了;
- 重新电脑后这个路径依然存在于 path 变量中...
最后在 Google 里搜索 RichReader path,点击搜索结果转到了 RichReader 的官网,于是便看到了 AUTOEXEC.BAT:
Assuming that you have installed the contents of the ZIP file into the directory C:\RichReader, then add the following two lines at the end of the AUTOEXEC.BAT file:
set PATH=%PATH%;C:\RichReader
set RTFLIBDIR=C:\RichReader
打开 C:\AUTOEXEC.BAT,果然:
set PATH=%PATH%;e:\我的文档\桌面\RichReader
另外这个代码在 Window XP SP2 里并不正确,以上的代码等同于 set PATH=%path%;%PATH%;e:\我的文档\桌面\RichReader。难怪我 path 里有那么多的重复路径。正确的写法是:- set PATH=e:\我的文档\桌面\RichReader
复制代码 (注:这个代码是针对 C:\AUTOEXEC.BAT,并且我的测试环境是 Window XP SP2。在一般的批处理中 set PATH=%PATH%;e:\我的文档\桌面\RichReader 这个写法是正确的。) |