标题: [文件操作] 批处理怎样删除桌面快捷图标? [打印本页]
作者: XINYANG 时间: 2023-12-10 00:03 标题: 批处理怎样删除桌面快捷图标?
批处理怎么删除桌面快捷图标而不删除里面的文件(快捷图标是其他盘的文件夹发送到桌面的)
作者: ShowCode 时间: 2023-12-10 10:44
回复 1# XINYANG
V1.bat- @echo off
- if exist "%userprofile%\Desktop\" (
- cd /d "%userprofile%\Desktop"
- del /f /q *.lnk *.url
- ) else (
- echo 找不到桌面
- pause
- exit /b
- )
复制代码
作者: ShowCode 时间: 2023-12-10 10:46
回复 1# XINYANG
V2.bat- @echo off
- del /f /q "%userprofile%\Desktop\*.lnk" 2>nul
- del /f /q "%userprofile%\Desktop\*.url" 2>nul
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |