🖥️ Batch (CMD)

Show Recycle Bin Icon on Desktop (Batch)

Adds the Recycle Bin icon back to the desktop. Applies the tweak via reg.exe.

By WindowsScripting.com · 606 B
SetShowRecycleBinOnDesktop.bat
@echo off
:: ============================================================
:: SetShowRecycleBinOnDesktop.bat
::
:: Show Recycle Bin Icon on Desktop.
:: Adds the Recycle Bin icon back to the desktop.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{645FF040-5081-101B-9F08-00AA002F954E}" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Show Recycle Bin Icon on Desktop applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause