📊 VBA (Excel)
Apply Disable Bing Search Suggestions (VBA)
Stops the taskbar search box from showing web/Bing suggestions. Applied via WScript.Shell.RegWrite from VBA.
DisableBingSearchRegSet.bas
Attribute VB_Name = "DisableBingSearchRegSet"
Option Explicit
Public Sub DisableBingSearchRegSet()
Dim wsh As Object
Dim regPath As String
Set wsh = CreateObject("WScript.Shell")
regPath = "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer\DisableSearchBoxSuggestions"
wsh.RegWrite regPath, 1, "REG_DWORD"
MsgBox "Disable Bing Search Suggestions applied." & vbCrLf & regPath, vbInformation
End Sub