Re: I need a command line in Windows NT
- From: "William Brogden" <wbrogden@xxxxxxx>
- Date: Wed, 29 Jun 2005 10:57:37 -0500
On 29 Jun 2005 07:59:44 -0700, redgambit <mbrandt@xxxxxxxxxxxxx> wrote:
Its weird because I also have this in my program
String cmdLine5 = "\\\\a1\\scripts\\licensesign";
try {
Process process = Runtime.getRuntime().exec(cmdLine5);
}
catch (IOException ioe) {
System.out.println(ioe);
and it works fine. Also if I open the task manager and watch it the
processes CMD shows up on Processes tab but doesn't run and doesn't
show up on the Applications tab like its suppost to.
You may have to provide for consuming the Process output streams before
the program will run to completion. See the JavaDocs for Process for
a discussion.
Bill
--
Using Opera's revolutionary e-mail client: http://www.opera.com/m2/
.
Relevant Pages
- Re: I need a command line in Windows NT
... catch (IOException ioe) { ... Also if I open the task manager and watch it the ... processes CMD shows up on Processes tab but doesn't run and doesn't ... (comp.lang.java.help) - Re: I need a command line in Windows NT
... Also if I open the task manager and watch it the ... processes CMD shows up on Processes tab but doesn't run and doesn't ... (comp.lang.java.help) - Re: Task Scheduler Stopped Working
... Processes tab of the Task Manager. ... window does not appear on the desktop. ... log file will tell you what is going on. ... (microsoft.public.windowsxp.general) - Re: Task Scheduler Stopped Working
... Processes tab of the Task Manager. ... window does not appear on the desktop. ... log file will tell you what is going on. ... (microsoft.public.windowsxp.general) - Re: Mailwasher
... bring up Task Manager. ... Select PROCESSES tab and look for MailWasher.exe in list and RMB to select ... handler and shutting down should be unneccessary. ... failures or coreq problems with TB but typically MW can cause probs once ... (uk.people.silversurfers) |
|