Startup Programs Are Still Slowing Your PC Down

Here’s How to Actually Find Them

Most users know to check Task Manager’s Startup tab to disable unnecessary startup programs, but that view does not capture everything that can run during boot or sign-in. Windows can also launch software through scheduled tasks, registry Run keys, startup folders, and background services—many of which do not appear in Task Manager’s Startup list. Over time, these background launch points can accumulate and contribute to slower boot times and reduced responsiveness, even on systems with fast storage and ample memory.

A practical approach is to review multiple built-in locations. Task Manager is still a good first step for managing common startup applications, but it should be supplemented with checks elsewhere. In modern versions of Windows, msconfig (System Configuration) generally redirects startup management back to Task Manager, so it should not be relied on as a separate source of additional startup entries.

For a deeper review, open Task Scheduler and examine the Task Scheduler Library, paying particular attention to tasks configured to run At startup or At log on. It is also worthwhile to review installed services using Services (services.msc), and to check startup-related registry locations such as the Run keys. If an entry is unfamiliar, it should be researched before disabling, since some tasks and services are tied to security software, hardware drivers, or system stability.

Performing this type of review periodically—such as every six to twelve months—can help keep boot behavior predictable and reduce unnecessary background activity. In business environments where the installed software set changes infrequently, this can be a high-impact maintenance step using only Windows’ built-in tools.

Permanently Disable Microsoft Recall with DISM

Toggling Recall off in Settings leaves the feature installed and eligible for re-enablement via future updates. Removing it at the DISM level is cleaner and sticks.

Requires: Copilot+ PC, elevated prompt.

DISM /online /Disable-Feature /FeatureName:”Recall”

Reboot if prompted, then verify:

DISM /online /Get-FeatureInfo /FeatureName:”Recall”

You want State : Disabled with Payload Removed — anything less and the binaries are still on disk.


Enterprise Deployment

Drop this into your Intune remediation, GPO startup script, or Autopilot provisioning flow:

powershell

$state = (DISM /online /Get-FeatureInfo /FeatureName:”Recall” | Select-String “State”).ToString()

if ($state -notlike “*Disabled*”) {

    DISM /online /Disable-Feature /FeatureName:”Recall” /NoRestart

}

For offline image prep, swap /online for /image:<mount_path> to bake it out of your WIM before deployment.


Why Bother?

Recall snapshots everything — banking portals, healthcare apps, credentials mid-entry — and indexes it in a local SQLite database. On-device storage is the current model, but any LPE or physical access scenario turns that database into a full activity log handed to an attacker. For environments under HIPAA, GDPR, or SOC 2, disabling it isn’t optional.


To reverse: DISM /online /Enable-Feature /FeatureName:”Recall” — though if the payload was removed, expect a reach-out to Windows Update or installation media.

Windows Snipping Tool

Unlock Hidden Power: Extract Text from Screenshots with Windows Snipping Tool’s OCR Feature

If you’re taking screenshots on Windows, you’re probably familiar with the various methods available—Print Screen, Windows + Shift + S, or third-party tools. They all capture your screen effectively, but there’s one game-changing feature that sets the Windows Snipping Tool apart from the rest: Optical Character Recognition (OCR).

What Makes Windows Snipping Tool Special?

While traditional screenshot methods simply capture an image, the Snipping Tool’s built-in OCR capability allows you to extract and copy text directly from your screenshots. This means no more manually retyping error messages, codes, or text from images—a feature that can save you significant time and eliminate transcription errors.

How to Use OCR in Windows Snipping Tool

Let’s walk through a practical example using an error message screenshot:

Step 1: Capture Your Screenshot

Open the Windows Snipping Tool and capture the area of your screen containing the text you need. This works with error codes, dialog boxes, PDFs, images, or any on-screen text.

Step 2: Access the OCR Feature

Once you’ve captured your screenshot, look for the text recognition icon at the top of the Snipping Tool window. This small but powerful button activates the OCR functionality.

Step 3: Extract and Copy Text

Click the OCR icon, and the Snipping Tool will analyze your image and identify all readable text. You can then select and copy the extracted text—in our example, “The operation completed successfully!”—directly to your clipboard for use anywhere.

Why This Matters for Windows Users

Whether you’re troubleshooting technical issues, documenting software bugs, sharing error codes with IT support, or extracting information from images, the Snipping Tool’s OCR feature streamlines your workflow. No more squinting at screenshots to manually retype information or dealing with blurry text—just capture, extract, and use.

Quick Tips for Best Results

  • Ensure text in your screenshot is clear and legible for optimal OCR accuracy
  • The feature works with most fonts and text sizes
  • Accessible via Windows + Shift + S for quick access to Snipping Tool
  • Compatible with Windows 10 and Windows 11

Conclusion

While all screenshot methods have their place, the Windows Snipping Tool with OCR offers a distinct advantage for Windows power users and professionals alike. Next time you need to capture and extract text from your screen, skip the manual retyping and leverage this built-in Windows feature that’s been hiding in plain sight.

Disable Web results in Windows 10/11 search

If you’re looking to disable web search results in Windows 10 or Windows 11, you’re not alone. Many users prefer to keep their searches local, preventing Bing or online results from appearing every time they type into the Start Menu or Windows Search bar. Not only does this help de-clutter your search results, but it also boosts privacy and can improve system performance.

From an IT management and privacy standpoint, disabling Bing or web results in Windows search gives you greater control over your environment, reduces unnecessary network calls, and ensures that sensitive search queries stay local. Whether you’re streamlining a business environment or just cleaning up your personal PC, knowing how to disable Windows 10 and 11 web search integration is an essential skill. With a few simple steps, you can create a faster, more secure, and distraction-free desktop experience.

How to Disable Web Search Results in Windows 10/11

If you’ve noticed that typing into the Windows Search bar shows Bing or web results alongside local files and apps, you may want to disable it. This is a common tweak for users who prefer faster, more private searches without sending queries to Microsoft’s servers. Below are simple ways to turn off Bing search integration in both Windows 10 and Windows 11.

Option 1: Windows 10: Disable Bing Search Results

  1. Press Win + R, type regedit, and hit Enter.
  2. Navigate to:

HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer
(Create the Explorer key if it doesn’t exist.)

Add a DWORD (32-bit) Value named:
DisableSearchBoxSuggestions → set value to 1

Restart Windows Explorer or reboot your computer.

Option 2: Windows command prompt (as admin):

Open command prompt as administrator

Type the following

In Windows 10:

reg-add “HKCU:\Software\Microsoft\Windows\CurrentVersion\Search” /v BingSearchEnabled  /d 0  /t REG_DWORD /f

reg add “HKCU:\Software\Microsoft\Windows\CurrentVersion\Search” /v CortanaConsent -/d 0 /t REG_DWORD /f

In Windows 11:

reg add “HKCU\Software\Policies\Microsoft\Windows\Explorer” /v DisableSearchBoxSuggestions /t REG_DWORD /d 1 /f

Option 3: Download and run this Power Shell Script.

Option 4: Download and run this Reg file.

Restart Windows Explorer or reboot your computer.

Why Disable Web Search Results?
Faster performance – local results load quicker without cloud queries.
Improved privacy – prevents search terms from being sent to Bing.
Streamlined search – no more clutter from unwanted web results.

By following these steps, you can fully disable Bing and web search results in Windows 10 and 11, making your PC searches more private and efficient.

Why Prefer IPv4 Over IPv6 in Established IPv4 Environments

While IPv6 is the future of internet addressing, many businesses still prefer IPv4 in environments where everything is already configured with IPv4. The main advantage of sticking with IPv4 is stability—existing systems, firewalls, and network configurations are optimized for IPv4, reducing compatibility issues and minimizing the risk of disruptions during daily operations. In well-established IPv4 networks, maintaining this protocol ensures seamless integration with legacy hardware and software, which may not fully support IPv6.

Choosing IPv4 in an IPv4-configured environment also leads to cost savings. Transitioning to IPv6 can require significant investments in training, hardware upgrades, and network redesign. For organizations that don’t require the expanded address space of IPv6, sticking with IPv4 is a practical, low-risk strategy. IT professionals and decision-makers, understanding why IPv4 still holds value in specific network setups can lead to smarter infrastructure choices and more effective long-term planning.

By default, Windows uses IPv6 and IPv4 only as a fallback. You can, however, change this behavior. There are more ways of doing this but this one is perhaps the easiest and it does not require a reboot. 

First open the command prompt elevated to administrator.

Then type these nine commands:

netsh interface ipv6 set prefixpolicy ::ffff:0:0/96 50 0
netsh interface ipv6 set prefixpolicy ::1/128 40 1
netsh interface ipv6 set prefixpolicy ::/0 30 2
netsh interface ipv6 set prefixpolicy 2002::/16 20 3
netsh interface ipv6 set prefixpolicy 2001::/32 5 5
netsh interface ipv6 set prefixpolicy fc00::/7 3 13
netsh interface ipv6 set prefixpolicy fec0::/10 1 11
netsh interface ipv6 set prefixpolicy 3ffe::/16 1 12
netsh interface ipv6 set prefixpolicy ::/96 1 4

If you need to revert back to an IPv6 preference then:

Open the command prompt elevated to administrator.

Then type the following command:

netsh interface ipv6 reset

Here is a zip file containing to batch files that will do this for you.

IPv4 over IPv6

Contact us