2017-08: Retroactive Updates

* Faster WIM creation
  * (Removed compression)
This commit is contained in:
Alan Mason 2017-11-24 21:13:50 -08:00
parent 50d53beef6
commit 1e02eb44a5

View file

@ -136,7 +136,7 @@ def backup_partition(bin=None, disk=None, par=None):
if par['Number'] in disk['Bad Partitions']:
print_warning('Skipped.')
else:
cmd = '{bin}\\wimlib\\wimlib-imagex capture {Letter}:\\ "{Image Path}\\{Image File}" "{Image Name}" "{Image Name}" --compress=fast'.format(bin=bin, **par)
cmd = '{bin}\\wimlib\\wimlib-imagex capture {Letter}:\\ "{Image Path}\\{Image File}" "{Image Name}" "{Image Name}" --compress=none'.format(bin=bin, **par)
if par['Image Exists']:
print_warning('Skipped.')
else: