Start Menu searches taking 5 seconds because Windows is searching Bing? Disable web search to get instant local file/app results. The Annoying Problem: You type “calc” in Start Menu Windows searches: 1. Local apps (0.1 seconds) 2. Bing web search (5 seconds loading…) 3. Shows web results you don’t want Result: 5 second delay just […]
Tag: Windows Tweaks
Fix Windows 11 Slow Boot by Cleaning Up Startup Items (PowerShell Method)
Windows taking 2-3 minutes to reach the desktop? Your startup folder is probably cluttered with apps you don’t need launching immediately. See What’s Slowing Your Boot: # PowerShell command to list all startup programs with delay impact Get-CimInstance -ClassName Win32_StartupCommand | Select-Object Name, Command, Location, User | Format-Table -AutoSize This shows every program that auto-starts, […]
Disable Windows 11 Bloatware and Telemetry with PowerShell (Takes 2 Minutes)
Fresh Windows 11 install comes with 30+ unnecessary apps and aggressive telemetry. Here’s the nuclear option to clean it all at once. The One-Script Solution: Open PowerShell as Administrator and run: # Remove bloatware apps Get-AppxPackage -AllUsers | Where-Object { $_.Name -like “*Xbox*” -or $_.Name -like “*3DViewer*” -or $_.Name -like “*Solitaire*” -or $_.Name -like “*Spotify*” […]

