đź“„ JScript (WSH)

Show Recycle Bin Icon on Desktop (JScript)

Adds the Recycle Bin icon back to the desktop. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).

By WindowsScripting.com · 679 B
SetShowRecycleBinOnDesktop.js
// ============================================================
// SetShowRecycleBinOnDesktop.js
//
// Show Recycle Bin Icon on Desktop.
// Adds the Recycle Bin icon back to the desktop.
//
// Usage: cscript SetShowRecycleBinOnDesktop.js
// ============================================================

var objShell = WScript.CreateObject("WScript.Shell");

try {
    objShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\HideDesktopIcons\\NewStartPanel\\{645FF040-5081-101B-9F08-00AA002F954E}", 0, "REG_DWORD");
    WScript.Echo("Show Recycle Bin Icon on Desktop applied.");
} catch (e) {
    WScript.Echo("Failed to apply tweak: " + e.description);
}