├── .gitignore ├── PSFExtractor.exe ├── README.md ├── delta_patch.py ├── magic.py └── micorsoft_api.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /PSFExtractor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/star-sg/windows_patch_extractor/HEAD/PSFExtractor.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/star-sg/windows_patch_extractor/HEAD/README.md -------------------------------------------------------------------------------- /delta_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/star-sg/windows_patch_extractor/HEAD/delta_patch.py -------------------------------------------------------------------------------- /magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/star-sg/windows_patch_extractor/HEAD/magic.py -------------------------------------------------------------------------------- /micorsoft_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/star-sg/windows_patch_extractor/HEAD/micorsoft_api.py --------------------------------------------------------------------------------