|
- @echo off
- del %temp%\list.ttt 2>nul
- call :do setup
- call :do open
- cls
- echo 以下为26个盘符下autorun.inf文件中 setup=和open=后面的内容
- echo *************************************************************************
- type %temp%\list.ttt
- echo *************************************************************************
- echo 按任意键退出
- pause>nul
- :do
- for %%I in (c d e f g h i j k l m n o p q r s t u v w x y z) Do (
- for /f "tokens=1,2* delims==" %%i in ('find "%1" ^<%%I:\autorun.inf 2^>nul') do (
- IF not "%%j"=="" echo %%j>>%temp%\list.ttt
- )
- )
复制代码 |
|