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.

SSD’s and TRIM

Enabling the TRIM function for your SSD in Windows is essential to optimize drive performance, accelerate data write speeds, and extend the lifespan of your solid-state drive. TRIM works by automatically clearing unused data blocks, preventing a decrease in performance as time passes. It is imperative to maintain fast and efficient operation of your Windows SSD.

Although TRIM should be enabled by Windows automatically it is always a good idea to check.  By opening the command prompt as administrator you can use the following command:

fsutil behavior query disabledeletenotify

it should return something like this:

C:\Windows\System32>fsutil behavior query disabledeletenotify
NTFS DisableDeleteNotify = 0  (Allows TRIM operations to be sent to the storage device)
ReFS DisableDeleteNotify = 0  (Allows TRIM operations to be sent to the storage device)

In this system there are two different types of SSD drives NTFS and ReFS.  They are both 0 which means TRIM is enabled on both drives.  A 1 would mean that TRIM is disabled.

If you see a 1 and want to enable for that drive you would execute one of the two following commands depending what drive type it is:

fsutil behavior set disabledeletenotify NTFS 0
fsutil behavior set disabledeletenotify ReFS 0

If you want to disable it just use the same command except use a 1 instead of a 0.

Contact us