MyComputer.java
public class MyComputer
{
public static void main(String args[ ]) throws Exception
{
Runtime.getRuntime().exec("cmd /c start explorer");
}
}
ControlPanel.java
public class ControlPanel
{
public static void main(String args[ ])throws Exception
{
Runtime.getRuntime().exec("cmd /c start control panel");
}
}
IE.java
public class IE
{
public static void main(String args[ ])throws Exception
{
Runtime.getRuntime().exec("cmd /c start iexplore");
}
}
NC.java
public class NC
{
public static void main(String args[ ])throws Exception
{
Runtime.getRuntime().exec("cmd /c start control netconnections");
}
}
WMP.java
public class WMP
{
public static void main(String args[])throws Exception
{
Runtime.getRuntime().exec("cmd /c start wmplayer");
}
}