I am trying to run a java app in the background.
its simple command -
java -jar app.jar
If we run above command on powershell cli - its working fine but not in the background
Few thing i tried
Start-Job -Command {java -jar .\app.jar}
Also tried "start command"
it is listing the jobs but its not running the app. Do we have a way something like "&"
Please suggest