Mega Code Archive

 
Categories / Java / Development Class
 

Minimize all programs on Windows to show the Desktop

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" + "\"" });   } }