Search found 328 matches
- Mon Dec 28, 2020 7:36 pm
- Forum: wimlib discussion
- Topic: Cannot get the information about WinFLP.wim image
- Replies: 1
- Views: 183
Re: Cannot get the information about WinFLP.wim image
As far as I know, the old WIM format was only used in Vista pre-releases. This is the first time anyone has asked for it. So I don't think it's important to add support for it.
- Mon Dec 28, 2020 7:33 pm
- Forum: wimlib discussion
- Topic: Make install.wim from install * .swm
- Replies: 1
- Views: 153
Re: Make install.wim from install * .swm
For each "wimjoin" command there is a corresponding "wimexport" command that basically does the same thing. It doesn't matter which you use. The output file will be newly created, so "wimoptimize" won't remove any holes from it as they won't be any. However, if you use "wimoptimize" to recompress th...
- Tue Dec 08, 2020 7:19 am
- Forum: wimlib discussion
- Topic: Windows Installer supported compression
- Replies: 1
- Views: 356
Re: Windows Installer supported compression
wimlib doesn't support splitting solid WIMs, a.k.a. ESD files.
Microsoft's software doesn't support LZX chunk sizes other than 32k. The support for LZX chunks up to 2M is a wimlib-specific feature. (At least, last I checked. It's been a few years since I last checked this.)
Microsoft's software doesn't support LZX chunk sizes other than 32k. The support for LZX chunks up to 2M is a wimlib-specific feature. (At least, last I checked. It's been a few years since I last checked this.)
- Tue Dec 08, 2020 7:16 am
- Forum: wimlib discussion
- Topic: Can use NTFS full-features in mounted volume by ntfs-3g fuse?
- Replies: 1
- Views: 209
Re: Can use NTFS full-features in mounted volume by ntfs-3g fuse?
The Linux build of wimlib doesn't recognize NTFS metadata if you pass it a directory on a filesystem that was mounted with NTFS-3G. It only recognizes NTFS metadata if you build it with libntfs-3g support and provide it an NTFS filesystem's raw block device.
- Tue Dec 08, 2020 7:13 am
- Forum: wimlib discussion
- Topic: Can't Compile in CentOS 7
- Replies: 1
- Views: 205
Re: Can't Compile in CentOS 7
Make sure that you've installed the ntfs-3g-devel package for your operating system, not just the ntfs-3g package.
- Tue Oct 27, 2020 3:33 pm
- Forum: wimlib discussion
- Topic: wimlib 1.13.3 released
- Replies: 3
- Views: 848
Re: wimlib 1.13.3 released
Fixed now, sorry!I am not able to download the source code; the file is empty.
- Tue Oct 27, 2020 4:09 am
- Forum: wimlib discussion
- Topic: wimlib 1.13.3 released
- Replies: 3
- Views: 848
wimlib 1.13.3 released
wimlib 1.13.3 has been released. This is a maintenance release. List of changes: On Windows, improved performance of capturing an entire drive in some cases. On Windows, fixed leaking a directory handle (or triggering a SEH exception when running under a debugger) when referencing WIM files. On Wind...
- Fri Jun 05, 2020 1:33 am
- Forum: wimlib discussion
- Topic: --compact bootloader restrictions lifted in 1903 and beyond
- Replies: 1
- Views: 13033
- Fri Jun 05, 2020 1:08 am
- Forum: wimlib discussion
- Topic: wimlib-imagex.exe cannot find libwim-15.dll in path with ;
- Replies: 1
- Views: 12112
Re: wimlib-imagex.exe cannot find libwim-15.dll in path with ;
Sorry, I missed this post. wimlib-imagex.exe is just linked to libwim-15.dll in the standard way. I.e., it doesn't use LoadLibrary(). Therefore the DLL search order is just the standard way for Windows: https://docs.microsoft.com/en-us/windows/win32/dlls/dynamic-link-library-search-order#standard-se...
- Fri Jun 05, 2020 12:55 am
- Forum: wimlib discussion
- Topic: fast MFT scanner recursion
- Replies: 5
- Views: 2213
Re: fast MFT scanner recursion
3. When building and reading the build instructions, the cygwin installer did not have " - mingw64-x86_64-pkg-config" in devel, but "pkg-config" (also in devel) Fixed by commit e8d0faeeaf7d There seems to be no other usable reference to this FSCTL_QUERY_FILE_LAYOUT on the internet Did you check htt...