When I choose the menu PRIG - Register Prig (Needs Restarting) in a x86 environment, an error message was shown and I got the following activity log:
<?xml version="1.0" encoding="utf-16"?>
<?xml-stylesheet type="text/xsl" href="ActivityLog.xsl"?>
<activity>
...
<entry>
<record>368</record>
<time>2016/04/03 07:39:27.829</time>
<type>Error</type>
<source>Prig</source>
<description>Error System.ComponentModel.Win32Exception (0x80004005): 指定されたファイルが見つかりません。
 at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
 at System.Diagnostics.Process.Start()
 at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
 at Urasandesu.Prig.VSPackage.Models.ProcessExecutor.StartProcessWithoutShell[TResult](String fileName, String arguments, Func`2 resultSelector)
 at Urasandesu.Prig.VSPackage.Models.Regsvr32Executor.StartInstalling(String path)
 at Urasandesu.Prig.VSPackage.Models.MachineWideInstaller.RegisterProfiler(MachineWideInstallation mwInstl)
 at Urasandesu.Prig.VSPackage.Models.MachineWideInstaller.Install(MachineWideInstallation mwInstl)
 at Urasandesu.Prig.VSPackage.PrigController.RegisterPrig(PrigViewModel vm)
 at Urasandesu.Prig.VSPackage.PrigController.PrepareRegisteringPrig(PrigViewModel vm)
 at Urasandesu.Prig.VSPackage.RegisterPrigCommand.InvokeCore(Object parameter)
 at Urasandesu.Prig.VSPackage.Infrastructure.ApplicationCommand.Invoke(Object parameter)...</description>
</entry>
...
</activity>
After decoding, like this:
record : 368
time : 2016/04/03 07:39:27.829
type : Error
source : Prig
description : Error System.ComponentModel.Win32Exception (0x80004005): 指定されたファイルが見つかりません。
at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start()
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at Urasandesu.Prig.VSPackage.Models.ProcessExecutor.StartProcessWithoutShell[TResult](String fileName, String arguments, Func`2 resultSelector)
at Urasandesu.Prig.VSPackage.Models.Regsvr32Executor.StartInstalling(String path)
at Urasandesu.Prig.VSPackage.Models.MachineWideInstaller.RegisterProfiler(MachineWideInstallation mwInstl)
at Urasandesu.Prig.VSPackage.Models.MachineWideInstaller.Install(MachineWideInstallation mwInstl)
at Urasandesu.Prig.VSPackage.PrigController.RegisterPrig(PrigViewModel vm)
at Urasandesu.Prig.VSPackage.PrigController.PrepareRegisteringPrig(PrigViewModel vm)
at Urasandesu.Prig.VSPackage.RegisterPrigCommand.InvokeCore(Object parameter)
at Urasandesu.Prig.VSPackage.Infrastructure.ApplicationCommand.Invoke(Object parameter)...
It seems that regsvr32.exe cannot be found in the specified path.
When I choose the menu
PRIG
-Register Prig (Needs Restarting)
in a x86 environment, an error message was shown and I got the following activity log:After decoding, like this:
It seems that
regsvr32.exe
cannot be found in the specified path.