public void Button_Click(object sender, RoutedEventArgs e)
{
ProcessStartInfo info = new ProcessStartInfo("RigaUpdater.exe");
info.UseShellExecute = true;
info.Verb = "runas";
Process.Start(info);
App.Current.Shutdown();
//Process.Start("RigaUpdater.exe");
}
public void Button_Click(object sender, RoutedEventArgs e)
{
ProcessStartInfo info = new ProcessStartInfo("RigaUpdater.exe");
info.UseShellExecute = true;
info.Verb = "runas";
Process.Start(info);
App.Current.Shutdown();
//Process.Start("RigaUpdater.exe");
}