May 30, 2004 #1 ajbufort Programmer Apr 4, 2004 50 US Hello All, How can I use the Runtime.getRuntime().exec() command to start/stop a Windows service? Thanks, -Tony
Hello All, How can I use the Runtime.getRuntime().exec() command to start/stop a Windows service? Thanks, -Tony
May 30, 2004 1 #2 dbleyl Programmer Mar 26, 2001 117 US net start [service]" "net stop [service]" With the proper permissions. If you want to run a Java program as an nt service, try JavaService. Upvote 0 Downvote
net start [service]" "net stop [service]" With the proper permissions. If you want to run a Java program as an nt service, try JavaService.
May 30, 2004 Thread starter #3 ajbufort Programmer Apr 4, 2004 50 US Very cool, thanks! -Tony Upvote 0 Downvote