attrib -s -r -h / s / d不被识别为内部或外部命令

时间:2013-10-29 07:44:46

标签: windows attributes command-prompt

我只是想问一下这个问题。

我想在我的闪存驱动器上检索我的文件,然后我尝试了这个:

-s -r -h /s /d 

但结果是:

'-s' is not recognized as an internal or external command,
operable program or batch file.

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:10)

尝试更改环境变量: -

  1. 右键单击我的电脑>性状>高级系统设置。
  2. 在高级系统设置标签中,点击环境变量,然后在系统变量
  3. 中查找路径
  4. 点击修改,然后在字符串末尾添加 C:\ Windows \ System32; 请确保您不要删除字符串的其余部分

答案 1 :(得分:0)

对于一次性的attrib调用,您可以使用:

C:\Windows\System32\attrib.exe

或者您可以先更改目录并在参数中添加路径:

cd C:\Windows\System32\

然后

attrib.exe -s -r -h "d:\file1.txt" /s /d