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
Post a Comment