在任意盘符下新建一个记事本txt文件,把下面的东西复制进去:
@echo on
taskkill /im explorer.exe /f
taskkill /im wscript.exe
start reg add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\EXplorer\Advanced /v ShowSuperHidden /t REG_DWORD /d 1 /f
start reg import kill.reg
del c:\autorun.* /f /q /as
del %SYSTEMROOT%\system32\autorun.* /f /q /as
del d:\autorun.* /f /q /as
del e:\autorun.* /f /q /as
del f:\autorun.* /f /q /as
del g:\autorun.* /f /q /as
del h:\autorun.* /f /q /as
del i:\autorun.* /f /q /as
del j:\autorun.* /f /q /as
del k:\autorun.* /f /q /as
del l:\autorun.* /f /q /as
start explorer.exe
然后,把它的txt格式改为bat格式,右键-打开,任务栏消失后大约1-3秒后出现,这是,你的auto病毒就搞定了。
重装应该可以
改成这样
del /f /s /q "C:\Documents and Settings\Administrator\Application Data\Tencent\QQ\Misc\com.tencent.advertisement\*.*"
del /f /s /q "C:\Documents and Settings\Administrator\Application Data\PPStream\adsys\*.*"
为有空格的路径加上英文双引号。
你好,批处理是以“空格”或“逗号”分割每个路径的,所以如果文件名存在空格必须加引号。为了以防万一,请养成良好的习惯,把所有的路径都加上引号。更改后的代码:
@echo
off
set
path="c:\delft3d\w32\menu\bin\d3d_menu.exe"
set
name=delft3d
set
m="%userprofile%\桌面\%name%.url"
echo
[internetshortcut]
>%m%
echo
url=%path%
>>%m%
echo
iconindex=1
>>%m%
echo
iconfile="c:\delft3d\w32\menu\bin\wl.ico"
>>%m%
echo.
&
pause