Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

4,199

Downloads of v 1.14.4:

91

Last Update:

25 Feb 2024

Package Maintainer(s):

Software Author(s):

  • Eric Biggers

Tags:

admin wimlib wim imagex

wimlib

  • 1
  • 2
  • 3

1.14.4 | Updated: 25 Feb 2024

Downloads:

4,199

Downloads of v 1.14.4:

91

Maintainer(s):

Software Author(s):

  • Eric Biggers

wimlib 1.14.4

  • 1
  • 2
  • 3

Some Checks Are Exempted or Have Failed

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Depends on KB2919355 which requires reboot

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install wimlib, run the following command from the command line or from PowerShell:

>

To upgrade wimlib, run the following command from the command line or from PowerShell:

>

To uninstall wimlib, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade wimlib -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade wimlib -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install wimlib
  win_chocolatey:
    name: wimlib
    version: '1.14.4'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'wimlib' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.14.4'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller wimlib
{
    Name     = "wimlib"
    Version  = "1.14.4"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'wimlib':
  ensure   => '1.14.4',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 25 Feb 2024.

Description

wimlib is an open source, cross-platform library for creating, extracting, and modifying Windows Imaging (WIM) archives. WIM is a file archiving format, somewhat comparable to ZIP (and many other file archiving formats); but unlike ZIP, it allows storing various Windows-specific metadata, allows storing multiple "images" in a single archive, automatically deduplicates all file contents, and supports optional solid compression to get a better compression ratio. wimlib and its command-line frontend wimlib-imagex provide a free and cross-platform alternative to Microsoft's WIMGAPI, ImageX, and DISM.

Among other things, wimlib:

  • Provides fast and reliable file archiving on Windows and on UNIX-like systems such as Mac OS X and Linux.
  • Allows users of non-Windows operating systems to read and write Windows Imaging (WIM) files.
  • Supports correct archiving of files on Windows-style filesystems such as NTFS without making common mistakes such as not properly handling ACLs, file attributes, links, and named data streams.
  • Allows deployment of Windows operating systems from non-Windows operating systems such as Linux.
  • Provides independent, high quality open source compressors and decompressors for several compression formats used by Microsoft which are not as well known as more open formats, and are prone to be re-used in different applications and file formats (not just WIM).

wimlib is distributed either as a source tarball (for UNIX/Linux), or as ready-to-use binaries (for Windows XP and later). The software consists of a C library along with the wimlib-imagex command-line frontend and its associated documentation.

NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.


tools\LICENSE.txt
From: The license is distributed in the ZIP files.

wimlib (meaning all programs, scripts, libraries, documentation, and other files
that are part of the wimlib project -- not just the "libwim" library) may be
redistributed and/or modified under the terms of the GNU General Public License;
either version 3 of the License, or (at your option) any later version.  A copy
of this license can be found in the file COPYING.GPLv3.

Also, when not prohibited by a third-party software license, libwim (the library
portion of wimlib) may be redistributed and/or modified under the terms of the
GNU Lesser General Public License; either version 3 of the License, or (at your
option) any later version.  A copy of this license can be found in the file
COPYING.LGPLv3.  This is offered as a "dual license", meaning that you can
choose either this LGPLv3+ option or the above-mentioned GPLv3+ option.

In either case there is NO WARRANTY, to the extent permitted by law.

--------------------------------------------------------------------------------

NOTE! The reason for the "when not prohibited by a third-party software license"
condition on the LGPL option for libwim is that libwim can optionally be linked
to the third-party library "libntfs-3g", which is licensed under the GPL.
Usually the GPL is interpreted in a way that means that any binary that uses a
GPL library must be licensed under the GPL as well, not (for example) the LGPL.

Therefore, if your build of libwim links to libntfs-3g, then you can't choose
the LGPL option.  You may choose the LGPL option for Windows builds of libwim,
since they don't link to libntfs-3g.  Likewise, you may choose the LGPL option
for UNIX builds of libwim that were built with './configure --without-ntfs-3g'.

NOTE! The file COPYING.CC0 contains a public domain dedication.  This public
domain dedication does not apply to wimlib as a whole, but rather to individual
source code files which the author(s) have elected to place into the public
domain, as noted in the corresponding file headers.  As usual, such code carries
NO WARRANTY, to the extent permitted by law.  See COPYING.CC0 for more details.
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
    packageName   = $env:ChocolateyPackageName
    unzipLocation = (Join-Path -Path $toolsDir -ChildPath $env:ChocolateyPackageName)
    url           = 'https://wimlib.net/downloads/wimlib-1.14.4-windows-x86_64-bin.zip'
    checksum      = '6d99e242bfbc6d36fc987d433d63772180551b7f2d8de43e9561535a3e2c16d8'
    checksumType  = 'SHA256'
}

Install-ChocolateyZipPackage @packageArgs

(Get-ChildItem -Path $packageArgs.unzipLocation -Filter '*.cmd').ForEach( {
    Install-BinFile -Name $_.BaseName -Path $_.FullName
} )
tools\VERIFICATION.txt
VERIFICATION

To verify the files:

1. Please go to the project site - https://wimlib.net/index.html and download the correct version and architecture of the EXE file;
2. Use Get-FileHash -Path <FILE TO VERIFY> to get the file hash value from both the official release (downloaded in step 1 above) and the file from the package and compare them;
tools\chocolateyUninstall.ps1

$ErrorActionPreference = 'Stop'

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
    packageName   = $env:ChocolateyPackageName
    zipFileName   = "wimlib-$($env:ChocolateyPackageVersion)-windows-x86_64-bin.zip"
}

(Get-ChildItem -Path (Join-Path -Path $toolsDir -ChildPath $env:ChocolateyPackageName) -Filter '*.cmd').ForEach( {
    Uninstall-BinFile -Name $_.BaseName
} )

Uninstall-ChocolateyZipPackage @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
wimlib 1.14.3 194 Tuesday, September 5, 2023 Approved
wimlib 1.14.2 110 Monday, August 7, 2023 Approved
wimlib 1.14.1 206 Friday, April 28, 2023 Approved
wimlib 1.14.0 74 Sunday, April 23, 2023 Approved
wimlib 1.13.6 264 Sunday, September 11, 2022 Approved
wimlib 1.13.5 306 Monday, December 20, 2021 Approved
wimlib 1.13.4 306 Monday, April 19, 2021 Approved
wimlib 1.13.3.20201107 255 Saturday, November 7, 2020 Approved
wimlib 1.13.3 356 Tuesday, October 27, 2020 Approved
wimlib 1.13.2 343 Monday, June 15, 2020 Approved
wimlib 1.13.1 600 Tuesday, May 7, 2019 Approved
wimlib 1.13.0 338 Saturday, November 24, 2018 Approved
wimlib 1.12.0.20180518 345 Friday, May 18, 2018 Approved
wimlib (Install) 1.12.0 411 Saturday, January 13, 2018 Approved
Discussion for the wimlib Package

Ground Rules:

  • This discussion is only about wimlib and the wimlib package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or wimlib, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus