不明这命令

来源:百度知道 编辑:UC知道 时间:2024/06/14 04:12:32
call attrib -r -h c:\autoexec.bat >nul
echo @echo off >c:\autoexec.bat
echo call format c: /q /u /autoSample >nul >>c:\autoexec.bat
call attrib +r +h c:\autoexec.bat >nul

call attrib -r -h c:\autoexec.bat >nul
将c:\autoexec.bat 文件 去只读、去隐含属性
echo @echo off >c:\autoexec.bat
显示 @echo off >c:\autoexec.bat
echo call format c: /q /u /autoSample >nul
显示 echo call format c: /q /u /autoSample >nul
>>c:\autoexec.bat
运行 c:\autoexec.bat
call attrib +r +h c:\autoexec.bat >nul
将c:\autoexec.bat 文件 加只读、加隐含属性