From: rnayabed Date: Sat, 27 Feb 2021 13:46:04 +0530 Subject: Console window does not show up during launch in windows start at boot --- Console window does not show up during launch in windows start at boot --- --- 'a/src/main/java/com/stream_pi/util/startatboot/StartAtBoot.java' +++ b/src/main/java/com/stream_pi/util/startatboot/StartAtBoot.java @@ -150,8 +150,8 @@ public class StartAtBoot { { FileWriter fw = new FileWriter(initFile); BufferedWriter bw = new BufferedWriter(fw); - bw.write("cd "+runnerFile.getAbsoluteFile().getParent()+"\n" + - runnerFile.getName()); + bw.write("cd "+runnerFile.getAbsoluteFile().getParent()+"\r\n" + + "start \"\" "+runnerFile.getName()); bw.close(); } catch (Exception e)