msiexec.exe のファントムインスタンスの原因は何でしょうか?

msiexec.exe のファントムインスタンスの原因は何でしょうか?

MDaemonメールサーバーで奇妙な現象が発生しました。Windowsのインストールダイアログボックスが表示され、一定の間隔で閉じます。修復に関する記事をいくつか見ましたが、msieexec のしかし、何が原因なのか、どうすれば正常に戻せるのか疑問に思っています。

答え1

以下の手順をご利用くださいWindowsインストーラーのログを有効にする方法Windows インストーラーのログ記録を有効にし、ログ ファイルを調べて何が起こっているかを確認します。

これを有効にする手順は次のとおりです。

To enable Windows Installer logging yourself, open the registry with Regedit.exe and create the following path and keys:
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows\Installer

Reg_SZ: Logging
Value: voicewarmupx
The letters in the value field can be in any order. Each letter turns on a different logging mode. Each letter's actual function is as follows for MSI version 1.1:
v - Verbose output
o - Out-of-disk-space messages
i - Status messages
c - Initial UI parameters
e - All error messages
w - Non-fatal warnings
a - Start up of actions
r - Action-specific records
m - Out-of-memory or fatal exit information
u - User requests
p - Terminal properties
+ - Append to existing file
! - Flush each line to the log
x - Extra debugging information. The "x" flag is available only on Windows Server 2003 and later operating systems, and on the MSI redistributable version 3.0, and on later versions of the MSI redistributable.

"*" - Wildcard, log all information except for the v and the x option. To include the v and the x option, specify "/l*vx".
Note This should be used only for troubleshooting purposes and should not be left on because it will have adverse effects on system performance and disk space. Each time you use the Add/Remove Programs tool in Control Panel, a new Msi*.log file is created. 

関連情報