Jacek
Jacek

Reputation: 12063

How to run program in background

I use Windows 8.1, I start program instance by command line. There is this line

java -jar "C:\Program Files (x86)\Jenkins\jenkins.war" --ajp13Port=-1 --httpPort=8082

Program starts and everything is all right. But i want to hide console from task menu. Is it possible to run program by command line in this way?

Upvotes: 0

Views: 1651

Answers (2)

K139
K139

Reputation: 3679

You could use

1) javaw - java without console window to start your application

or

2) start /b *command* - to start a background task

Upvotes: 2

GhostCat
GhostCat

Reputation: 140633

Why not using javaw instead of java?

Upvotes: 2

Related Questions