SyntaxFix
Write A Post
Hire A Developer
Questions
You can do this with PowerShell:
$process = Start-Process "javaw" "-jar start.jar" -PassThru taskkill /pid $process.Id
The taskkill command will graceful close the application.
taskkill