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

Commit 6522860

Browse files
committed
Added process start exception catch
1 parent d85dfef commit 6522860

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

DNSChanger/Program.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ public static void Main(string[] args)
2424
},
2525
};
2626

27-
proc.Start();
27+
try
28+
{
29+
proc.Start();
30+
}
31+
catch (Exception ex)
32+
{ }
2833
return;
2934
}
3035

0 commit comments

Comments
 (0)