Skip to content

Instantly share code, notes, and snippets.

View TheFreeman193's full-sized avatar

Nicholas Bissell TheFreeman193

View GitHub Profile
@TheFreeman193
TheFreeman193 / changes.diff
Last active September 23, 2026 19:00
Google Play Integrity Certificate Revocation List Hash
7013a7014,7021
> },
> "fc0d84db55de46e68b81e459e459a797": {
> "status": "REVOKED",
> "reason": "KEY_COMPROMISE"
> },
> "418dfed21da23472c85b22604dfe3e70": {
> "status": "REVOKED",
> "reason": "KEY_COMPROMISE"
@mmozeiko
mmozeiko / !README.md
Last active September 24, 2026 23:11
Download MSVC compiler/linker & Windows SDK without installing full Visual Studio

This downloads standalone MSVC compiler, linker & other tools, also headers/libraries from Windows SDK into portable folder, without installing Visual Studio. Has bare minimum components - no UWP/Store/WindowsRT stuff, just files & tools for native desktop app development.

Run py.exe portable-msvc.py and it will download output into msvc folder. By default it will download latest available MSVC & Windows SDK from newest Visual Studio.

You can list available versions with py.exe portable-msvc.py --show-versions and then pass versions you want with --msvc-version and --sdk-version arguments.

To use cl.exe/link.exe first run setup_TARGET.bat - after that PATH/INCLUDE/LIB env variables will be updated to use all the tools as usual. You can also use clang-cl.exe with these includes & libraries.

To use clang-cl.exe without running setup.bat, pass extra /winsysroot msvc argument (msvc is folder name where output is stored).