LoginSignup
6

More than 5 years have passed since last update.

MSIインストーラーで詳細ログを出力する

Posted at

WindowsのMSIインストーラーがおかしいので、ログを出力する方法を調べてみたら、msiexecというコマンドでできるらしい。

> msiexec /i myinstaller.msi /l*v c:\installer.log

-i <インストーラファイルパス> で、インストーラーの指定、-l*v <ログファイルのパス> で冗長なログ出力とその出力先を指定する。

詳しくはMSのサイトで。
https://msdn.microsoft.com/ja-jp/library/windows/desktop/aa367988(v=vs.85).aspx

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
What you can do with signing up
6