đź“„ JScript (WSH)
Disable Bing Search Suggestions (JScript)
Stops the taskbar search box from showing web/Bing suggestions. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).
SetDisableBingSearch.js
// ============================================================
// SetDisableBingSearch.js
//
// Disable Bing Search Suggestions.
// Stops the taskbar search box from showing web/Bing suggestions.
//
// Usage: cscript SetDisableBingSearch.js
// ============================================================
var objShell = WScript.CreateObject("WScript.Shell");
try {
objShell.RegWrite("HKCU\\Software\\Policies\\Microsoft\\Windows\\Explorer\\DisableSearchBoxSuggestions", 1, "REG_DWORD");
WScript.Echo("Disable Bing Search Suggestions applied.");
} catch (e) {
WScript.Echo("Failed to apply tweak: " + e.description);
}