Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

Commit

Permalink
Added process start exception catch
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaczero committed Oct 14, 2019
1 parent d85dfef commit 6522860
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion DNSChanger/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ public static void Main(string[] args)
},
};

proc.Start();
try
{
proc.Start();
}
catch (Exception ex)
{ }
return;
}

Expand Down

0 comments on commit 6522860

Please sign in to comment.