Skip to content

Instantly share code, notes, and snippets.

@3F
Created May 19, 2016 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3F/c14f9e0c1cc89986ac5de8b4481411b8 to your computer and use it in GitHub Desktop.
Save 3F/c14f9e0c1cc89986ac5de8b4481411b8 to your computer and use it in GitHub Desktop.
Shell extension - MSI extractor. For quick unpacking files from Windows Installer Package and other access when 7z can't help...
@echo off
set in=%1
set fpath=%in:~1,-1%
set odir=%fpath:~0,-4%_msi
echo extract into %odir% ...
msiexec /a "%fpath%" /qb TARGETDIR="%odir%"
REM # ~
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\SystemFileAssociations\.msi\shell\>Extract MSI\Command]
@="msiextr \"%1\""
@3F
Copy link
Author

3F commented May 19, 2016

a little helper
msi

@3F
Copy link
Author

3F commented May 14, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment