Multiplatform UUP converter
Go to file
mkuba50 b3ec35a65c UUP converter 0.2.0
- Fixed some typos
- Fixed broken winre.wim adding
- Changed names of images shown in installer to better ones
- Changed ISO image names and labels to contain more information
2018-12-26 00:37:10 +01:00
convert.sh UUP converter 0.2.0 2018-12-26 00:37:10 +01:00
LICENSE Initial commit 2018-12-23 22:26:44 +01:00
readme.md Fix a few typos, add more information to readme 2018-12-24 22:16:28 +01:00

UUP converter

Description

A basic UUP converter aimed for Linux users who don't have access to any Windows machine, but want or need to create ISO image for latest Windows Insider version downloaded from UUP dump.

Usage

./convert.sh [compression] [uups_directory]
Compression options:
  • wim - standard wim compression (/Compress:max in DISM)
  • esd - solid esd compression (/Compress:recovery in DISM)

Usage examples

  • ./convert.sh - starts conversion using files from UUPs directory and creates ISO image with install.wim

  • ./convert.sh esd - starts conversion using files from UUPs directory and creates ISO image with install.esd

  • ./convert.sh wim MyUUP - starts conversion using files from MyUUP directory and creates ISO image with install.wim

Requirements

This script uses the following commands to do its work:

  • cabextract - to extract cabs
  • wimlib-imagex - to export files from metadata ESD
  • chntpw - to modify registry of first index of boot.wim
  • genisoimage - to create ISO image

If you use Debian or Ubuntu you can quickly install these using the following command:

sudo apt-get install cabextract wimtools chntpw genisoimage