public class MyAutorun
{
public void autoruns()
{
try
{
System.out.println("AutoRun");
Process p = Runtime.getRuntime().exec("C:\\Utils\\autoruns.exe");
} catch (IOException ex) {
Logger.getLogger(MyAutorun.class.getName()).log(Level.SEVERE, null, ex);
}
}
No comments:
Post a Comment