Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. {
  2. string installPath = @"C:\Program Files (x86)\Minecraft Launcher\runtime\jre-x64\bin\javaw.exe";
  3. if (System.IO.File.Exists(installPath))
  4. {
  5. ProcessStartInfo info = new ProcessStartInfo();
  6. {
  7. info.FileName = installPath;
  8. info.CreateNoWindow = false;
  9. info.Arguments = @"WSZYSTKIE ARGUMENTY UMIEŚCIŁEM PONIŻEJ NA PASTEBIN";
  10. };
  11. Process.Start(info);
  12. }
  13. else
  14. {
  15. CustomMsgBox.Show("Cannot find Java installation. Please reinstall the latest version of Java and try again.");
  16. }
  17.  
  18. https://pastebin.com/bHwuAfjx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement