Fix crash when UAC blocks the program.

=_=英语不好连个说明和注释都写不出了
This commit is contained in:
zsxsoft
2014-02-08 14:37:40 +08:00
parent 3442081d20
commit 353a8ff768

View File

@@ -1,5 +1,6 @@
using System;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
@@ -51,9 +52,21 @@ namespace Wox.Plugin.System
MessageBox.Show("couldn't start" + c.Title);
}
else
{
try
{
Process.Start(c.ExecutePath);
}
catch (Win32Exception)
{
//Do nothing.
//It may be caused if UAC blocks the program.
}
catch (Exception e)
{
throw e;
}
}
}
}).ToList();
}