2021-10-19 Windows Installer (MSI) 形式のファイルをインストールせずに展開する方法 Windows Installer (*.msi 形式) のファイルをインストールせずに展開するには Windows Installer 向けのコマンドライン ツールである msiexec を使用する。 docs.microsoft.com このツールには管理者用モードと呼ばれる /a オプションがあり、このオプションを使うことで特定の場所に展開することができる。 実行例を以下に示す。 msiexec /a setup.msi targetdir="C:\path\to\extractdir" /qn