├── 1. ESDISO.bat ├── 2. Rename-ISOs.bat ├── 3. Rebuild-ISO.bat ├── 4. [CLI] Convert-ESDISO.bat ├── CryptoKeys.xml ├── README.md ├── Updater.bat ├── bin ├── 7z │ ├── 7z.dll │ └── 7z.exe ├── Convert-ESDISO.ps1 ├── ESDISO.ps1 ├── Identify-ISO.ps1 ├── Rebuild-ISO.ps1 ├── Rename-ISOs.ps1 ├── Utils.ps1 ├── cdimage │ └── 2.53 │ │ └── cdimage.exe ├── decryptesd │ ├── CommandLine.dll │ ├── DecryptESD.exe │ └── DecryptESD.exe.config ├── other │ ├── Products_10240.xml │ ├── W81GA2.txt │ ├── W81GA2alt.txt │ └── winsetup_exclude_list.txt ├── version.xml └── wimlib │ ├── bin64 │ ├── libwim-15.dll │ └── wimlib-imagex.exe │ └── bin86 │ ├── libwim-15.dll │ └── wimlib-imagex.exe └── updater ├── Synchronous-ZipAndUnzip.psm1 └── updater.ps1 /1. ESDISO.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/1. ESDISO.bat -------------------------------------------------------------------------------- /2. Rename-ISOs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/2. Rename-ISOs.bat -------------------------------------------------------------------------------- /3. Rebuild-ISO.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/3. Rebuild-ISO.bat -------------------------------------------------------------------------------- /4. [CLI] Convert-ESDISO.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/4. [CLI] Convert-ESDISO.bat -------------------------------------------------------------------------------- /CryptoKeys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/CryptoKeys.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/README.md -------------------------------------------------------------------------------- /Updater.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/Updater.bat -------------------------------------------------------------------------------- /bin/7z/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/7z/7z.dll -------------------------------------------------------------------------------- /bin/7z/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/7z/7z.exe -------------------------------------------------------------------------------- /bin/Convert-ESDISO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/Convert-ESDISO.ps1 -------------------------------------------------------------------------------- /bin/ESDISO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/ESDISO.ps1 -------------------------------------------------------------------------------- /bin/Identify-ISO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/Identify-ISO.ps1 -------------------------------------------------------------------------------- /bin/Rebuild-ISO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/Rebuild-ISO.ps1 -------------------------------------------------------------------------------- /bin/Rename-ISOs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/Rename-ISOs.ps1 -------------------------------------------------------------------------------- /bin/Utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/Utils.ps1 -------------------------------------------------------------------------------- /bin/cdimage/2.53/cdimage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/cdimage/2.53/cdimage.exe -------------------------------------------------------------------------------- /bin/decryptesd/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/decryptesd/CommandLine.dll -------------------------------------------------------------------------------- /bin/decryptesd/DecryptESD.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/decryptesd/DecryptESD.exe -------------------------------------------------------------------------------- /bin/decryptesd/DecryptESD.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/decryptesd/DecryptESD.exe.config -------------------------------------------------------------------------------- /bin/other/Products_10240.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/other/Products_10240.xml -------------------------------------------------------------------------------- /bin/other/W81GA2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/other/W81GA2.txt -------------------------------------------------------------------------------- /bin/other/W81GA2alt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/other/W81GA2alt.txt -------------------------------------------------------------------------------- /bin/other/winsetup_exclude_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/other/winsetup_exclude_list.txt -------------------------------------------------------------------------------- /bin/version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/version.xml -------------------------------------------------------------------------------- /bin/wimlib/bin64/libwim-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/wimlib/bin64/libwim-15.dll -------------------------------------------------------------------------------- /bin/wimlib/bin64/wimlib-imagex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/wimlib/bin64/wimlib-imagex.exe -------------------------------------------------------------------------------- /bin/wimlib/bin86/libwim-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/wimlib/bin86/libwim-15.dll -------------------------------------------------------------------------------- /bin/wimlib/bin86/wimlib-imagex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/bin/wimlib/bin86/wimlib-imagex.exe -------------------------------------------------------------------------------- /updater/Synchronous-ZipAndUnzip.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/updater/Synchronous-ZipAndUnzip.psm1 -------------------------------------------------------------------------------- /updater/updater.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gus33000/ESD-Decrypter/HEAD/updater/updater.ps1 --------------------------------------------------------------------------------