Created
May 19, 2016 20:14
-
-
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...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 # ~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\SystemFileAssociations\.msi\shell\>Extract MSI\Command] | |
@="msiextr \"%1\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
a little helper