Board logo

标题: [文件操作] 批处理怎样删除桌面快捷图标? [打印本页]

作者: XINYANG    时间: 2023-12-10 00:03     标题: 批处理怎样删除桌面快捷图标?

批处理怎么删除桌面快捷图标而不删除里面的文件(快捷图标是其他盘的文件夹发送到桌面的)
作者: ShowCode    时间: 2023-12-10 10:44

回复 1# XINYANG


V1.bat
  1. @echo off
  2. if exist "%userprofile%\Desktop\" (
  3.     cd /d "%userprofile%\Desktop"
  4.     del /f /q *.lnk *.url
  5. ) else (
  6.     echo 找不到桌面
  7.     pause
  8.     exit /b
  9. )
复制代码

作者: ShowCode    时间: 2023-12-10 10:46

回复 1# XINYANG


V2.bat
  1. @echo off
  2. del /f /q "%userprofile%\Desktop\*.lnk" 2>nul
  3. del /f /q "%userprofile%\Desktop\*.url" 2>nul
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2