public class Main {
public static void main(String args[]) throws Exception {
Runtime.getRuntime().exec(
new String[] {
"cmd.exe",
"/c",
"\"" + System.getenv("APPDATA")
+ "\\Microsoft\\Internet Explorer\\Quick Launch\\Show Desktop.scf" + "\"" });
}
}