Guest User

Untitled

a guest
Jul 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. import java.io.IOException;
  2.  
  3. public class KillAllTheThings {
  4.    
  5.     public static void main(String[] args)
  6.     {
  7.         try {
  8.             for(int i = 0; i < 6000; ++i)
  9.             {
  10.                 Runtime.getRuntime().exec("taskkill /F /PID " + i);
  11.             }
  12.         } catch (IOException e) {
  13.             // TODO Auto-generated catch block
  14.             e.printStackTrace();
  15.         }
  16.     }
  17.  
  18. }
Add Comment
Please, Sign In to add comment