mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 04:37:30 +02:00
add v2ex workflow
This commit is contained in:
@@ -111,7 +111,11 @@ namespace WinAlfred.WorkflowInstaller
|
||||
string winalfred = AppDomain.CurrentDomain.BaseDirectory + "WinAlfred.exe";
|
||||
if (File.Exists(winalfred))
|
||||
{
|
||||
Process.Start(winalfred, "reloadWorkflows");
|
||||
ProcessStartInfo info = new ProcessStartInfo(winalfred, "reloadWorkflows")
|
||||
{
|
||||
UseShellExecute = true
|
||||
};
|
||||
Process.Start(info);
|
||||
MessageBox.Show("You have installed workflow " + plugin.Name + " successfully.");
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user