Task Manager tells you what’s happening right now. AppControl tells you what’s been happening for the past three days. That’s the core pitch behind a new free utility from developer Jon Hundley, and it’s one that power users, IT administrators, and the endlessly curious will want to explore.

PCMag UK recently went hands-on with AppControl, describing it as a tool that gives Windows 10 and Windows 11 users a 72-hour view into process behavior, hardware usage, and system changes. Unlike the real-time snapshot of Task Manager, AppControl logs and visualizes activity over an extended period, letting you spot trends, identify resource hogs you never knew existed, and troubleshoot intermittent issues without babysitting your PC.

What Is AppControl?

AppControl is a standalone, portable Windows utility that runs silently in the background, collecting data on every process that launches, every spike in CPU or disk usage, and every change in power state. It then presents that data in a clean, filterable timeline. The application is lightweight, doesn’t require installation, and promises to respect user privacy by storing all logs locally.

Jon Hundley built AppControl to solve a problem that’s familiar to anyone who has ever tried to track down a mysterious slowdown: Task Manager only shows you what’s happening at this exact second. If your laptop’s fan spins up while you’re away from your desk, you’ll never know why. AppControl records that event and lets you rewind to see exactly which process was responsible.

Seven Key Features That Set AppControl Apart

1. The 72-Hour Rolling Timeline

AppControl’s headline feature is the ability to retain up to 72 hours of activity data. Every process start and stop, every CPU spike above a user-defined threshold, and every GPU or disk operation gets timestamped and stored. The interface lets you scrub through the timeline to examine any moment in the past three days.

2. Granular Process Tracking

Beyond simple process names, AppControl captures details like command-line arguments, parent processes, and even elevated privileges. This makes it invaluable for identifying suspicious behavior—a legitimate-looking executable launched from a temp folder with unusual arguments becomes immediately visible.

3. Hardware Utilization Alerts

Users can set custom thresholds for CPU, GPU, memory, and disk usage. When a process pushes hardware beyond those limits, AppControl flags the event. No more guessing why your system stuttered during a Zoom call; the timeline will show you a background updater eating 80% of your CPU at exactly 2:34 p.m.

4. Power State Monitoring

The utility also watches for sleep, wake, and shutdown events. Combined with process data, you can see if a particular app prevented your PC from entering sleep mode or caused an unexpected wake.

5. Portable and Lightweight

AppControl comes as a single executable that runs without installation. It consumes minimal system resources—PCMag UK’s testing showed memory usage hovering around 15–20 MB—so leaving it active for days has almost no performance penalty.

6. Local-Only Data Storage

No telemetry is sent to the cloud. All logs remain on your hard drive in an encrypted database. You can export the data for offline analysis, but the app never phones home.

The interface supports rapid filtering by process name, time range, or event type. Need to see every time Microsoft Edge wrote more than 50 MB/s to disk in the last 48 hours? A few clicks and the relevant entries appear.

How AppControl Complements Task Manager

Microsoft’s built-in Task Manager got a significant facelift in Windows 11, with better GPU and power usage columns, but it remains fundamentally a real-time tool. Resource Monitor and Performance Monitor offer historical logging, but they’re clunky, require manual setup, and are overwhelming for casual users.

AppControl fills the gap between those expert tools and the simplicity of Task Manager. It’s a “record and replay” solution that runs without configuration, yet exposes enough detail to satisfy developers and support technicians.

Think of it this way: Task Manager is a speedometer; AppControl is a dashcam with a 72-hour loop.

Installation and System Requirements

Since AppControl is portable, there’s no formal installation. You download the ZIP file from the project’s official website or GitHub repository, extract it to a folder, and launch the executable. It supports both Windows 10 (version 1809 and later) and Windows 11.

There are no exotic dependencies—just the .NET runtime that ships with modern Windows. Administrator rights are not required for basic monitoring, though some advanced event tracking (like capturing command-line arguments for system processes) works best when the app is elevated.

A first-run wizard walks you through enabling the performance counters and sensors you want to track. You can leave everything at default and start capturing immediately.

A Closer Look at the Interface

The main window is divided into three panels: a timeline scrubber at the top, a list of events in the center, and a detail pane at the bottom. The timeline shows colored markers for CPU, disk, network, and GPU activity, giving you a heatmap of system load over the past three days.

Clicking any marker filters the event list to that moment. The list columns are customizable, and you can sort by timestamp, process name, event type, or a “severity” score that AppControl calculates based on how much a process exceeded your set thresholds.

The detail pane reveals everything AppControl knows about the selected event: full executable path, command line, parent process ID, username, integrity level, and a mini sparkline of the process’s own resource usage before and after the event.

For those who prefer command-line interaction, AppControl exposes a read-only API via local HTTP (disabled by default) that you can query with PowerShell or curl. This opens the door for automated monitoring scripts, dashboards, or integration with tools like Grafana.

Privacy and Security Considerations

With any monitoring tool, privacy questions arise. Hundley designed AppControl to be transparent. The local database is encrypted using a key derived from the Windows machine’s unique ID, so even if someone copies the file, they can’t read it. The app does not connect to the internet unless you explicitly enable the HTTP API—and even then, it binds to localhost only.

Because AppControl captures command-line arguments and process paths, it can inadvertently record sensitive information (a password typed as a parameter, for instance). The documentation warns users about this and offers an exclusion list for processes you don’t want logged. You can also set AppControl to purge data older than a custom age, down to one hour if you’re concerned about storage or privacy.

What Early Testers Are Saying

PCMag UK’s review was largely positive, noting that AppControl “feels like the kind of tool Microsoft forgot to include.” The reviewer praised its low footprint and the clarity of the timeline, though they noted that the interface could be intimidating at first glance. “There’s a lot of data on screen,” they wrote, “and it takes a few minutes to understand what you’re looking at. But once you do, you won’t want to go back.”

On community forums, early adopters have reported using AppControl to diagnose all manner of mysteries: a GPU driver that kept crashing overnight, a backup utility that pegged the disk every 15 minutes, and even a crypto miner that a family member had accidentally installed. One user called it “a time machine for your PC’s performance.”

Criticism centers on the lack of network monitoring—AppControl doesn’t track bandwidth usage at this stage—and the absence of a built-in update mechanism. You must manually check the website for new versions.

Power User Scenarios

Troubleshooting Intermittent Slowdowns

An IT technician can install AppControl on a complaining user’s machine and return three days later with a full audit trail. No more “it’s slow when I use Excel” anecdotes; the timeline reveals that a Microsoft Teams update process runs every two hours and spikes the CPU to 100% for 90 seconds.

Software Development and QA

Developers can leave AppControl running while they test a new build. If the application leaks memory or creates excessive I/O, the timeline pinpoints when the degradation began, often correlated with a specific branch or commit.

Gaming Performance Tuning

Gamers can correlate frame drops with background processes. AppControl’s GPU monitoring shows which app just stole a chunk of VRAM or kicked off a compute shader, helping you decide what to disable before your next session.

Security Forensics

While not a replacement for full EDR, AppControl gives home users and small businesses a lightweight way to inspect suspicious activity. A process named “svchost.exe” running from the wrong folder or with odd arguments becomes instantly visible.

Energy Efficiency

Laptop users can identify apps that prevent the system from entering deep sleep states, draining battery overnight. AppControl logs wake events and the process responsible for them.

Comparison with Similar Tools

AppControl enters a space occupied by several venerable tools:

  • Process Explorer (Microsoft Sysinternals): A powerful real-time tool with deep process inspection, but no historical logging.
  • Performance Monitor: Built into Windows and capable of long-term data collection, but requires manual setup and can be overwhelming.
  • System Informer (formerly Process Hacker): Feature-rich and includes some logging, but focuses on advanced system manipulation rather than passive long-term monitoring.
  • Windows Admin Center: Offers historical performance data for managed servers, but overkill for a single PC and typically not used by casual power users.

AppControl differentiates itself by blending an easy-to-read timeline with zero configuration. It’s not trying to replace any of those tools; it’s filling a gap between Task Manager and full-blown monitoring suites.

Limitations and the Road Ahead

No app is perfect. AppControl doesn’t monitor network traffic, which would be a logical addition. The 72-hour rolling window can’t be extended, though Hundley has hinted that future versions might allow custom retention periods. The interface, while clean, lacks themes and can’t be resized below a certain width.

There’s also the question of support. As a solo developer project, AppControl’s long-term viability depends on Hundley’s continued interest and the community’s contributions. The code is not open source, which may concern users who prefer to audit their tools.

On the positive side, the app is updated regularly, and Hundley is active on the project’s GitHub issues page, responding to feature requests and bug reports.

The Verdict: A Must-Have Diagnostic Companion

AppControl doesn’t try to dazzle with flashy dashboards; it does one thing—recording system activity—and does it exceptionally well. For the $0 price tag, it’s a tool that every Windows power user should at least keep on a USB stick.

Whether you’re a sysadmin tired of vague helpdesk tickets, a developer hunting a memory leak, or just someone who wants to know why their PC sometimes sounds like a jet engine, AppControl provides answers that Task Manager never could. The 72-hour rolling window turns hindsight from a wish into a feature.

Download the zip, unblock it, and let it run. Three days from now, you’ll understand your machine better than you ever thought possible.