I'm developing a java application that i want to run on startup. I used launch4j to create .exe file and Inno setup to generate installer. Is there any way to create a shortcut in the startup folder using Inno setup ??
Creating shortcut in startup folder using Inno setup [duplicate]
Asked Answered
In [Icons]
section you can use constants {userstartup}
or {commonstartup}
.
For example:
[Icons]
Name: "{userstartup}\{#MyAppName}"; Filename: "{app}\MyProg.exe"; WorkingDir: "{app}"
© 2022 - 2024 — McMap. All rights reserved.
Run
entry instead. See Start application with parameters on windows start. – Monophonic