🖥️ Batch (CMD)
Show This PC Icon on Desktop (Batch)
Adds the This PC icon back to the desktop. Applies the tweak via reg.exe.
SetShowThisPCOnDesktop.bat
@echo off
:: ============================================================
:: SetShowThisPCOnDesktop.bat
::
:: Show This PC Icon on Desktop.
:: Adds the This PC icon back to the desktop.
:: ============================================================
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" /v "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" /t REG_DWORD /d "0" /f
if %ERRORLEVEL% EQU 0 (
echo Show This PC Icon on Desktop applied.
) else (
echo Failed to apply tweak. Try running this script as Administrator.
)
pause