đź“„ JScript (WSH)
Disable Start Menu Web Search (JScript)
Stops the Start Menu search from including web results. Applies the tweak via WScript.Shell.RegWrite (JScript syntax).
SetDisableWebSearch.js
// ============================================================
// SetDisableWebSearch.js
//
// Disable Start Menu Web Search.
// Stops the Start Menu search from including web results.
//
// Usage: cscript SetDisableWebSearch.js
// ============================================================
var objShell = WScript.CreateObject("WScript.Shell");
try {
objShell.RegWrite("HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Search\\BingSearchEnabled", 0, "REG_DWORD");
WScript.Echo("Disable Start Menu Web Search applied.");
} catch (e) {
WScript.Echo("Failed to apply tweak: " + e.description);
}