Skip to content

Instantly share code, notes, and snippets.

@mmlac
mmlac / ConsoleApplication.cpp
Last active August 5, 2023 14:53
[C++ & C# Examples] Getting the existing processes running on the system and their modules - Written & Tested in VS2015
#include "stdafx.h"
#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <psapi.h>
#include <list>
#include <algorithm>
#include <string>
#include <cctype>
#include <sstream>