怎么编写bat图形选择菜单 (有奖励)
帮我编写图形选择菜单好吗?我会奖励给你!图形选择菜单的显示============================================计算机优化1.清理垃圾文...
帮我编写图形选择菜单好吗?我会奖励给你!
图形选择菜单的显示
============================================
计算机优化
1.清理垃圾文件
2.清理桌面右键菜单 (显卡的选择菜单)
3.去掉桌面图标小箭头
请进入命令:___ 处理完成之后需要返回图形选择菜单
============================================
1.清理垃圾文件命令 下面是我自己编写命令的
@echo off
echo 清空IE临时文件、系统缓存和历史记录...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "TEMP%\*.*"
del /f /s /q "%TMP%\*.*"
del /f /s /q %userprofile%\recent\*.*
echo 正在清除系统临时文件 *.tmp *._tmp *.log *.chk *.old ,请稍等...
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
echo 清空垃圾箱,备份文件和预缓存脚本...
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
echo 清除系统垃圾完成!
echo. & pause
============================================
清理右键选择 (显卡的菜单)
regsvr32 /u /s igfxpph.dll
reg delete HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers /f
reg add HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\new /ve /d {D969A300-E7FF-11d0-A93B-00A0C90F2719}
===================================================
清理桌面图标小箭头
reg delete HKcr\Lnkfile /v IsShortcut /f 展开
图形选择菜单的显示
============================================
计算机优化
1.清理垃圾文件
2.清理桌面右键菜单 (显卡的选择菜单)
3.去掉桌面图标小箭头
请进入命令:___ 处理完成之后需要返回图形选择菜单
============================================
1.清理垃圾文件命令 下面是我自己编写命令的
@echo off
echo 清空IE临时文件、系统缓存和历史记录...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "TEMP%\*.*"
del /f /s /q "%TMP%\*.*"
del /f /s /q %userprofile%\recent\*.*
echo 正在清除系统临时文件 *.tmp *._tmp *.log *.chk *.old ,请稍等...
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
echo 清空垃圾箱,备份文件和预缓存脚本...
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
echo 清除系统垃圾完成!
echo. & pause
============================================
清理右键选择 (显卡的菜单)
regsvr32 /u /s igfxpph.dll
reg delete HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers /f
reg add HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\new /ve /d {D969A300-E7FF-11d0-A93B-00A0C90F2719}
===================================================
清理桌面图标小箭头
reg delete HKcr\Lnkfile /v IsShortcut /f 展开
1个回答
展开全部
@echo off
:菜单
cls
echo ============================================
echo 计算机优化
echo 1.清理垃圾文件
echo 2.清理桌面右键菜单 (显卡的选择菜单)
echo 3.去掉桌面图标小箭头
echo.
set /p 选择=请进入命令:
if %选择%==1 goto 清除垃圾
if %选择%==2 goto 清除右键
if %选择%==3 goto 箭头
:清除垃圾
echo 清空IE临时文件、系统缓存和历史记录...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "TEMP%\*.*"
del /f /s /q "%TMP%\*.*"
del /f /s /q %userprofile%\recent\*.*
echo 正在清除系统临时文件 *.tmp *._tmp *.log *.chk *.old ,请稍等...
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
echo 清空垃圾箱,备份文件和预缓存脚本...
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
echo 清除系统垃圾完成!
echo. & pause
goto 菜单
:清除右键
regsvr32 /u /s igfxpph.dll
reg delete HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers /f
reg add HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\new /ve /d {D969A300-E7FF-11d0-A93B-00A0C90F2719}
echo 完成
pause>nul
goto 菜单
:箭头
reg delete HKcr\Lnkfile /v IsShortcut /f
echo 完成
pause>nul
goto 菜单
:菜单
cls
echo ============================================
echo 计算机优化
echo 1.清理垃圾文件
echo 2.清理桌面右键菜单 (显卡的选择菜单)
echo 3.去掉桌面图标小箭头
echo.
set /p 选择=请进入命令:
if %选择%==1 goto 清除垃圾
if %选择%==2 goto 清除右键
if %选择%==3 goto 箭头
:清除垃圾
echo 清空IE临时文件、系统缓存和历史记录...
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "TEMP%\*.*"
del /f /s /q "%TMP%\*.*"
del /f /s /q %userprofile%\recent\*.*
echo 正在清除系统临时文件 *.tmp *._tmp *.log *.chk *.old ,请稍等...
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
echo 清空垃圾箱,备份文件和预缓存脚本...
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
echo 清除系统垃圾完成!
echo. & pause
goto 菜单
:清除右键
regsvr32 /u /s igfxpph.dll
reg delete HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers /f
reg add HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\new /ve /d {D969A300-E7FF-11d0-A93B-00A0C90F2719}
echo 完成
pause>nul
goto 菜单
:箭头
reg delete HKcr\Lnkfile /v IsShortcut /f
echo 完成
pause>nul
goto 菜单
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询