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