Advertisement
Guest User

Untitled

a guest
Jun 14th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. private static void InvokeOnFailed()
  2. {
  3. try
  4. {
  5. string file = "InvokeMe.cmd";
  6. if (File.Exists(file))
  7. Process.Start(file);
  8. }
  9. catch (Exception)
  10. { }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement