java - Create shortcut with minimized window -


good morning, have java code using jshortcut, problem can not create shortcut minimized window, try looking properties windowstyle, find nothing.

code.

public void createdesktopshortcut() {      try {         link.setfolder(jshelllink.getdirectory("desktop"));         link.setname("ie");         link.setpath(filepath);         //windowstyle = 7         link.save();     } catch (exception ex) {         ex.printstacktrace();     }  } 

how can add option?


Comments

Popular posts from this blog

java - unable show chart in xls document using jasper reports -

java.lang.RuntimeException: Could not generate dummy secret at sun.security.ssl.RSAClientKeyExchange.<init> -

javascript - How to change image src on success AJAX -