Advertisement
fant0men

Extract .msi files in Linux

Aug 16th, 2020
1,354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.12 KB | None | 0 0
  1. for msi in *.msi; do dir=$(basename "$msi"); mkdir "${dir/.msi//}"; cd "${dir/.msi//}"; msiextract "$msi" || break; cd ..; done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement