]> wimlib.net Git - wimlib/blob - README.WINDOWS
efa51957f10971d7ed28ff706745672591318938
[wimlib] / README.WINDOWS
1
2                                   INTRODUCTION
3
4 wimlib is free and open source software that is available on both UNIX-like
5 systems and Windows.  This file provides additional information specifically
6 about the Windows version of wimlib and the command line tool "wimlib-imagex"
7 that is distributed with it.  It does not obsolete the generic README.txt, which
8 you should read too.
9
10                               WINDOWS DISTRIBUTION
11
12 For the convenience of Windows users, the Windows distribution of wimlib is a
13 ZIP file containing the following items:
14
15   * wimlib-imagex.exe, a command-line tool to deal with WIM (.wim) and split WIM
16     (.swm) files that is similar to Microsoft's ImageX.  This is a ready-to-run
17     executable and not an installer.
18
19   * Very short batch scripts (e.g. wimapply.cmd) which are shortcuts to the
20     corresponding wimlib-imagex commands (e.g. `wimlib-imagex apply').
21
22   * The documentation, including this file, the generic README.txt, and
23     PDF documentation for wimlib-imagex in the 'doc' directory.
24
25   * Various DLL (.dll) files, including the wimlib library itself
26     (libwim-9.dll).  The C header wimlib.h is not included; download the source
27     if you want it.
28
29   * License files for all software included.  These are all free software
30     licenses.
31
32                                  WIMLIB-IMAGEX
33
34 wimlib-imagex provides most features of Microsoft's ImageX, plus additional
35 features.  First, the main limitations of wimlib-imagex compared to Microsoft's
36 ImageX are the following:
37
38   * Mounting images from a WIM file is not supported on Windows.
39
40 However, wimlib-imagex provides a number of advantages compared to Microsoft's
41 ImageX, including but not limited to the following:
42
43   * wimlib-imagex provides "extract" and "update" commands that can be used to
44     work around the lack of mount support.  These commands are very fast
45     compared to mounting and unmounting images with Microsoft's ImageX, so you
46     may prefer them anyway.
47
48   * wimlib-imagex provides an easy-to-use "optimize" command to remove wasted
49     space from WIM files.
50
51   * In some cases, wimlib-imagex uses simpler command-line syntax.  For
52     example, integrity tables are treated as persistent, and in some cases image
53     names need not be explicitly specified.
54
55   * Whenever possible, wimlib-imagex includes improved documentation and
56     informational output compared to Microsoft's software.
57
58   * On Windows, wimlib-imagex can correctly save and restore some combinations
59     of data that Microsoft's ImageX runs into bugs on --- for example,
60     uncompressed files in compressed directories, or files with alternate data
61     streams and multiple hard links.
62
63   * wimlib and wimlib-imagex are free software, so you can modify and/or audit
64     the source code.
65
66                                 ADDITIONAL NOTES
67
68 Currently there is no graphical user interface available for wimlib or
69 wimlib-imagex.  It's recommended to use wimlib-imagex in scripts to avoid having
70 to interactively enter commands.  However, note that wimlib-imagex is largely
71 just a command-line front-end for wimlib, and it's possible to use wimlib's API
72 in other front-ends or applications.