chinkoah i wonder too. i want to use Firefox in college but the ****ty RM machine things block executable files from being run![]()
public class TotallyInnocentProgramNotTryingToLaunchExesOrAnything
{
public static void main(String[] args)
{
Runtime.getRuntime().exec("Z:\My Thumb Drive\Mozilla Firefox\firefox.exe");
}
}
phat_pengiunDoes that code work?
Edit, just found out![]()
public class FileRunner
{
public static void main(String[] args)
{
try
{
Runtime.getRuntime().exec("C:\\WINDOWS\\system32\\winmine.exe");
}
catch(Exception e)
{
System.out.println(e);
}
}
}