Hello everyone.. Does anyone know or see stupid BING on Edge, Search bar and etc that drive people or myself crazy.. Need a easiest safe script removal to get rid "Bing" that get real crazy... ANY IDEA?? We can put out for Removal Bing script?? ATGPUD2003
Both are the same, so select what You like. You must be in administrator privileges, after running one of them, restart Edge, if it ran before. 1. registry key Code: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge] "HubsSidebarEnabled"=dword:00000000 2. .cmd or bat script Code: @Echo Off Title Reg Converter v1.2 & Color 1A cd %systemroot%\system32 call :IsAdmin Reg.exe add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v "HubsSidebarEnabled" /t REG_DWORD /d "0" /f Exit :IsAdmin Reg.exe query "HKU\S-1-5-19\Environment" If Not %ERRORLEVEL% EQU 0 ( Cls & Echo You must have administrator rights to continue ... Pause & Exit ) Cls goto:eof