converter/readme.md

47 lines
1.5 KiB
Markdown
Raw Normal View History

2018-12-23 22:26:44 +01:00
UUP converter
-------------
### Description
A basic UUP converter aimed for Linux users who don't have access to any
2018-12-26 00:53:50 +01:00
Windows machine, but want or need to create an ISO image for latest Windows
2018-12-23 22:26:44 +01:00
Insider version downloaded from UUP dump.
2018-12-26 00:53:50 +01:00
For obvious reasons this script will never support integration of Cumulative
Updates to created images.
2018-12-23 22:26:44 +01:00
### Usage
```
./convert.sh [compression] [uups_directory]
```
###### Compression options:
* wim - standard wim compression (`/Compress:max` in DISM)
* esd - solid esd compression (`/Compress:recovery` in DISM)
2018-12-23 22:26:44 +01:00
### Usage examples
2018-12-26 00:53:50 +01:00
* `./convert.sh` - starts the conversion using files from `UUPs` directory and
creates an ISO image with `install.wim`
2018-12-23 22:26:44 +01:00
2018-12-26 00:53:50 +01:00
* `./convert.sh esd` - starts the conversion using files from `UUPs` directory
and creates an ISO image with `install.esd`
2018-12-23 22:26:44 +01:00
2018-12-26 00:53:50 +01:00
* `./convert.sh wim MyUUP` - starts the conversion using files from `MyUUP`
directory and creates an ISO image with `install.wim`
2018-12-23 22:26:44 +01:00
### 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
2018-12-23 22:26:44 +01:00
2018-12-26 00:53:50 +01:00
If you use Debian or Ubuntu based distribution you can quickly install these
using the following command:
2018-12-23 22:26:44 +01:00
```
sudo apt-get install cabextract wimtools chntpw genisoimage
2018-12-23 22:26:44 +01:00
```
2018-12-26 00:53:50 +01:00
If you use any other distribution, then you will need to check its repository
for packages needed to run this script.