Wingetlywingetly
← All apps

MemPro

by PureDev Softwarev1.12.0.0

Last updated

C++ Memory Profiler

Install with winget

$ winget install --id PureDevSoftware.MemPro --exact --version 1.12.0.0

Run in Command Prompt, PowerShell, or Windows Terminal. Prompts for any agreements.

Silent install command for MemPro

MemPro uses EXE (Burn bundle). The silent install switches are /quiet /norestart.

One-line silent install (x64, machine scope)
msiexec.exe /i download.php /quiet /norestart

See the full silent install reference for MemPro

Built by Pckgr

For Intune admins

Stop chasing app updates. Pckgr patches them for you.

Automated application patching for Microsoft Intune. Pckgr keeps a curated library of 1,000+ apps continuously up-to-date in your tenant via Microsoft Graph - no manual repackaging, no chasing vendor sites.

Start free 30-day trial

No credit card required.

About

MemPro is a C++ memory profiler. MemPro runs on Windows platforms, but can connect to and profile applications on almost any platform. MemPro particularly stands out from other C++ memory profilers for its ability to handle very large data sets.

Getting Started

Integrate MemPro into your codebase in minutes - simply add MemPro.cpp/h into your code and you will be able to connect to your application with MemPro. Once connected MemPro allows you to visualise your memory usage in a number of different ways.

Why MemPro?

MemPro can handle massive data sets. Profiles of trillions of allocations are not uncommon. MemPro is also perfect for profiling real-time applications such as games because of its minimal overhead. Because all of the processing is offline, MemPro can track thousands of allocations per second without noticeable slowdown.

Features

- Full memory breakdown of your application

- Multiple views of the data

- Easily find and fix memory leaks

- Subtract one snapshot from another

- Rewind memory

- Virtual memory layout visualisation

- Visualise memory fragmentation

- Profile applications of any size quickly and efficiently

How it works

MemPro supplies two macros: MEMPRO_TRACK_ALLOC(p, size) and MEMPRO_TRACK_FREE(p). For ease of use MemPro automatically overrides the global new and delete operators and adds these macros, but if you have your own allocation routines then you can add the macros yourself as needed. MemPro records the callstack of every allocation, and all of the data is sent over the network to MemPro.

MemPro processes the data offline. All the current live allocations are tracked. When a matching free is found the allocation is removed. MemPro also stores an entire history of all allocations and frees which allows for retrospective snapshots and rewinding of memory.

All of the symbol lookups are done by MemPro, which keeps the overhead in your application to a minimum. MemPro will read the symbol files for your application and display the callstacks.

The main way of viewing data in MemPro is to take a snapshot at a specific point in time. This shows you all of the allocations that are live at that point. You can this view the data in multiple ways, such as the calltree view and the types view.

For finding memory leaks or memory spikes, you can subtract one snapshot from another snapshot. This shows you all allocations that are in the second snapshot but not in the first.

MemPro has a powerful feature specifically for tracking down memory leaks. It can analyse the entire contents of the application's memory and find any allocations that are not referenced by any code or data. It also uses a sophisticated set of heuristics to analyse the allocation pattern of each callstack to check for possible leaks.

MemPro is particularly valuable for tracking down memory corruption bugs. MemPro can show you the entire history of all allocations and frees that happened in a specific address range. This is often sufficient information to find the cause of the corruption.

MemPro is quick to integrate, has low overhead and is ideal for profiling real-time applications such as games. With MemPro you can easily see where your memory is going, you can track down leaks and spikes in minutes and find those hard-to-track-down memory corruption bugs.

Installers · v1.12.0.0

ArchitectureTypeScopeInstallDownload
x64EXE
Burn bundle
machineDirect

Copy a command tailored to that specific architecture, type, and scope - useful when winget would otherwise pick a different default.

Security

No known CVEs for MemPro.

Coverage is best-effort and depends on a winget package mapping to an NVD CPE entry. Absence here is not a guarantee of safety.

Related apps

  • 10xPureDev Software
    PureDevSoftware.10xv1.0.544.0

    A High-Performance C++ Editor

  • FrameProPureDev Software
    PureDevSoftware.FrameProv1.12.1.0

    C++ Frame Profiler

  • Visual Studio BuildTools 2026Microsoft Corporation
    Microsoft.VisualStudio.BuildToolsv18.10.0

    These Build Tools allow you to build Visual Studio projects from a command-line interface.

  • Microsoft Visual C++ 2013 Redistributable (x86)Microsoft Corporation
    Microsoft.VCRedist.2013.x86v12.0.40664.0

    The Microsoft Visual C++ 2013 Redistributable Package (x86)

  • Microsoft Visual C++ 2013 Redistributable (x64)Microsoft Corporation
    Microsoft.VCRedist.2013.x64v12.0.40664.0

    The Microsoft Visual C++ 2013 Redistributable Package (x64).

  • Visual Studio BuildTools 2022Microsoft Corporation
    Microsoft.VisualStudio.2022.BuildToolsv17.14.40

    These Build Tools allow you to build Visual Studio projects from a command-line interface.

More from PureDev Software or browse c++, cpp, profiler.

Frequently asked questions

How do I install MemPro on Windows?
Open Windows Terminal, PowerShell, or Command Prompt and run: winget install --id PureDevSoftware.MemPro --exact --version 1.12.0.0. winget downloads the installer from PureDev Software and runs it. Requires Windows 10 (1809+) or Windows 11.
How do I install MemPro silently for unattended deployment?
Add --silent and accept the agreements upfront: winget install --id PureDevSoftware.MemPro --exact 1.12.0.0 --silent --accept-package-agreements --accept-source-agreements. This is the variant Intune, Configuration Manager, and other deployment tools should use.
What are the silent install switches for MemPro?
MemPro uses EXE (Burn bundle). Run the downloaded installer with: msiexec.exe /i download.php /quiet /norestart. The silent switches are /quiet /norestart.
How do I uninstall MemPro via winget?
Run: winget uninstall --id PureDevSoftware.MemPro --exact. Add --silent for unattended uninstalls. winget will use the registered uninstaller from MemPro's Apps & Features entry.
Is MemPro free?
MemPro is distributed under Proprietary. Refer to the publisher (https://www.puredevsoftware.com/mempro/) for the full license terms - Wingetly itself does not charge for installation.
Does MemPro work on Windows 10?
Yes, as long as your Windows 10 build supports winget (1809 or newer). winget ships with App Installer on Windows 10/11 and pulls MemPro directly from the publisher.
How do I keep MemPro up to date?
Run winget upgrade --id PureDevSoftware.MemPro --exact, or winget upgrade --all to update everything winget tracks. We index 1 version of MemPro from microsoft/winget-pkgs.