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 June 29, 2026 21:40
Google Play Integrity Certificate Revocation List Hash
6873a6874,6881
> },
> "cc75ce27f02b3d552da9a75c29a0ffb0": {
> "status": "REVOKED",
> "reason": "KEY_COMPROMISE"
> },
> "1e2e196b863817cc0d71fa1122f1a06d": {
> "status": "REVOKED",
> "reason": "KEY_COMPROMISE"
@mmozeiko
mmozeiko / !README.md
Last active July 4, 2026 23:04
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).