Many modern desktop apps are built on Electron or CEF (Chromium Embedded Framework), which means each one ships and runs its own private copy of Chromium. This costs significant disk space and memory, and I'd like to audit my system to see exactly which of my installed apps do this.
I know the usual signatures of such apps are things like:
Electron's
app.asararchiveA bundled "Electron Framework" or "Chromium Embedded Framework"
Chromium's data files such as
icudtl.datand*.pak
What I'm looking for is a reliable, repeatable way to enumerate these apps — ideally a single command or script that scans the usual install locations and lists the offenders, rather than me checking each app by hand.
I'm on Windows 11 Pro.
(I'm aware Chromium-based browsers like Chrome/Edge/Brave will also match these signatures — that's expected and not what I'm trying to flag.)