user@s3-3:~/s3-3/tools/how-to-use-windows-task-manager $ cat index.md
S3-3 Tech Guides & Tools
~/tools/how-to-use-windows-task-manager
Windows Tips · Jan 2026

How to Actually Use Windows Task Manager (Beyond Ctrl+Alt+Del)

Most people open Task Manager only when something is frozen. That's the least interesting thing it can do. Windows Task Manager — especially in Windows 11, which redesigned it significantly — is a complete system monitoring and management tool. Knowing how to read it properly lets you diagnose slowdowns, stop unnecessary background processes, and understand what's actually consuming your hardware resources at any moment.

Opening Task Manager: Three Ways

The most common method is Ctrl+Shift+Esc, which opens Task Manager directly without going through the security screen. Ctrl+Alt+Del then clicking Task Manager also works, as does right-clicking the taskbar and selecting Task Manager. For the fastest access, press Win+X (or right-click the Start button) to open the power user menu, which includes a direct Task Manager shortcut.

The Processes Tab: Reading It Properly

The Processes tab is where most users spend all their time. It lists running applications and background processes, along with their current CPU, memory, disk, network, and GPU usage. The key is knowing how to read the columns:

  • CPU %: Percentage of total processor capacity currently used by that process. A value above 20% for a single process that you didn't ask to run is worth investigating.
  • Memory (MB): Physical RAM committed to that process. Chrome and Electron apps are notorious for high values here — 500 MB per browser tab is not unusual.
  • Disk MB/s: Active read/write activity. If this spikes to your disk's maximum throughput (check specs), the disk is a bottleneck.
  • GPU %: Shows per-process GPU usage. Useful for identifying whether a video or game is actually using hardware acceleration.

Right-click any column header to add or remove columns. Two useful ones not shown by default: Power usage (good for laptops to see what's draining battery) and Publisher (helps identify unfamiliar process names by showing the software company).

Tip: If you see a process labeled "Windows host process (Rundll32)" or "COM Surrogate" consuming significant CPU, expand it by clicking the arrow to see which underlying component is actually running.

Identifying What a Mystery Process Does

Right-click any process and select Open file location to see exactly which executable is running. If the path is deep inside C:\Windows\System32\ or a recognized program folder, it's almost certainly legitimate. If the path is something like C:\Users\Username\AppData\Roaming\ with a random-looking name, that's worth scanning with Windows Defender or Malwarebytes.

You can also right-click and select Search online to look up the process name directly — Windows will open a browser search for it.

The Startup Apps Tab: One of the Most Useful Panels

Every time you install software, it often adds itself to startup — meaning it runs every time Windows boots, before you've asked for it. The Startup Apps tab lists every application configured to start automatically, along with its measured impact on boot time (Low, Medium, or High).

To disable a startup entry, right-click it and select Disable. This doesn't uninstall the software or prevent you from using it — it just stops it from launching automatically at boot. The most common candidates to disable:

  • Discord (can be started manually when needed)
  • Spotify (starts in background, shows in system tray)
  • Teams or Zoom (unless you're in meetings constantly)
  • Adobe Creative Cloud updater
  • Game launchers (Steam, Epic, GOG Galaxy)
  • Manufacturer software (HP Support Assistant, Lenovo Vantage, etc.)

Disabling startup programs for applications you use occasionally can reduce boot time by 30–60 seconds on an average machine.

The Performance Tab: Real-Time Hardware Graphs

The Performance tab shows live graphs for CPU, RAM, disk, network, and GPU. This is where you go to diagnose a slow computer systematically:

CPU graph: Shows total utilization across all cores. Click CPU on the left panel to expand to individual core view — this shows if one core is maxed out while others are idle, which can indicate a poorly threaded application rather than a system-wide problem.

Memory: Shows total installed RAM, currently in use, committed, and cached. The "In Use" figure is what actually matters. If this is consistently at 90% or above when doing normal tasks, more RAM would genuinely help. "Cached" memory (shown in lighter blue) is memory Windows has claimed for recently used files — it looks used, but Windows releases it immediately when another application needs it.

Disk: Shows active time percentage and transfer rates. If active time is consistently near 100% even when you're not doing anything intensive, your system drive may be near failure or severely fragmented. This is the classic signature of an old mechanical hard drive being replaced by an SSD making a dramatic difference.

GPU: Click on GPU to see both the 3D (rendering) and video decode/encode engines separately. This tells you whether your video playback is using hardware decoding (low CPU usage, GPU decode active) or software decoding (high CPU usage, GPU idle).

The App History Tab

App History shows cumulative resource usage per application over time — particularly useful for identifying apps that quietly consume CPU or network in the background even when you're not actively using them. This tab primarily covers Universal Windows Platform (UWP) apps from the Microsoft Store, but also shows some desktop applications.

The Users Tab (Multi-User Systems)

On shared computers or machines with multiple user accounts, the Users tab shows resource consumption broken down by logged-in user. If you're on a shared machine and it's slow, this can confirm whether another session is consuming resources in the background.

The Details Tab: Advanced Process Information

The Details tab is the power-user view, showing every running process (including child processes) with additional columns including process ID (PID), CPU priority, and working set size. Right-click a process here and you can:

  • Set priority: Temporarily raise or lower how much CPU time the OS allocates to a process. Setting a background task to "Below Normal" lets it run without competing with foreground applications.
  • Set affinity: Restrict a process to specific CPU cores. Useful for isolating a single-threaded application to one core so it doesn't interfere with others.
  • End process tree: Kills the process and all child processes it spawned, which is more thorough than "End task" on the Processes tab.

A Systematic Approach to Diagnosing Slowdowns

When your computer feels sluggish, open Task Manager and check in this order: CPU column (sort descending — anything above 15% that isn't a foreground app?), Memory (anything above 500 MB that shouldn't be running?), Disk (active time above 80% at idle?). Most slowdowns resolve to one of those three causes, and Task Manager tells you exactly which process is responsible.