Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: superm401Posted on 2006-11-14 at 21:31:15ID: 17944578
You can execute that command with the below code. However, whether this kind of solution will suffice depends on your application. So...what specific settings do you really need to access and/or change?
xe shell32.dll,Control_RunDLL Desk.cpl,@0, 3"); d execution failed.");
import java.io.IOException;
public class RuntimeHacking
{
public static void main(String[] args)
{
Runtime myRuntime = Runtime.getRuntime();
try
{
myRuntime.exec("Rundll32.e
}
catch(IOException e)
{
System.err.println("Comman
System.exit(1);
}
}
}