双击桌面的快捷图标 无法打开应用程序 打开的是他的属性页面?? 为什么?? 该怎么处理?? 谢谢指点

来源:百度知道 编辑:UC知道 时间:2024/05/30 10:47:20
有点复杂

将下面的代码保存为bat文件.在安全模式下运行.
@echo off&cls&color 0d
for %%i in ( c d e f g ) do (
cls&cd /d %%i:\
echo 正在处理%%i盘........
attrib _desktop.ini -s -h -r
attrib indows -s -h -r
attrib desktop_.ini -s -h -r
attrib desktop.ini -s -h -r
attrib auto*.inf -s -h -r
attrib Thumbs.db -s -h -r
attrib command.com -s -h -r
attrib pagefile.pif -s -h -r
attrib logo_1.exe -s -h -r
attrib logo1_.exe -s -h -r
attrib sxs.exe -s -h -r
attrib *sy.exe -s -h -r
attrib sws.dll -s -h -r
attrib kill.exe -s -h -r
attrib rose.exe -s -h -r
del _desktop.ini indows desktop_.ini desktop.ini auto*.inf thumbs.bd Thumbs.db command.com pagefile.pif logo_1.exe logo1_.exe sxs.exe *sy.exe sws.dll kill.exe rose.exe /f/s/a/q
echo 对%%i盘的处理已经完毕...按任意键继续
pause>nul
)

右键点击一个图标,再点击最下面的属性,应该就可以了。

这批处理说的是什么意思?我不会看批处理~~