A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » Customizing Windows XP
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Automation Question: How do you stop a process from a .bat file?



 
 
Thread Tools Display Modes
  #1  
Old August 5th 08, 04:47 AM posted to microsoft.public.windowsxp.customize
Mickey
external usenet poster
 
Posts: 20
Default Automation Question: How do you stop a process from a .bat file?

Problem: An application I run utilizes a service (supplied with the
application) to connect to a special USB device. When the application
terminates it leaves the service running. When the application is run again
it fails to connect to it's hardware. I have found that if I manually
terminate the service, an then run the application, the application re-starts
the service and always connects to the hardware. I have advised the
manufacturer of the issue, but as a temporary work-around I would like to
launch the application using a .bat file, and when the application
terminates, the .bat file will stop the service.

I have created a .bat file that successfully launches the application,
however I can't seem to stop the service.

The command I'm using is NET STOP service, but no matter how I reference the
service I get an error. The name of the service is XNETS.exe

Here's what I've tried:
NET STOP XNETS.exe; error can find service

I went to "Services" and copied the exact path listed in the properties for
the service.
NET STOP C:\Progra~1\Common~1\XNET\XNETS.exe; error in filename, path, etc.

I can manually stop this service using the task manager; I see it listed in
"Services" and can either stop or start it there; but I can't get the NET
STOP command to find it.

I would appreciate some suggestions, thanks.


Ads
  #2  
Old August 5th 08, 07:30 AM posted to microsoft.public.windowsxp.customize
Mickey
external usenet poster
 
Posts: 20
Default Automation Question: How do you stop a process from a .bat file?

I did a little research on Miscrosoft's Technet for scripting, and created a
script file that can terminate the service and launch the application.

There is one minor problem that I don't understand. The subject USB
hardware is connected through a USB Network HUB (Belkin). The software with
the Belkin Hub allows the option to automatically launch the application when
the hardware connects, and automatically disconnect the hardware when the
related application terminates. Again, because I need to terminate that
problematic service before the application is started, I'm using the script
file in to Belkin software that gets executed when the hardware connects.
The Belkin software is setup to disconnect the hardware when the application,
or in this case the script file terminates. Here's the problem, even though
I have a Do-Loop that waits for the application to terminate in the script
file, for some reason the Belkin software thinks the script file has
terminated as soon as it's started, and disconnects the hardware prematurely.
I even tried putting a "MsgBox" instruction at the very end of the script
file to verify that the loop is indeed working, but the Belkin software still
disconnects the hardware, before the application ends and the "MsgBox"
command executes.

Does anyone have an idea as to why the Belkin software thinks the script
file has ended when it hasn't, or is it possible that because it's a script
file and not an actual application there is no running flag?



"mickey" wrote:

Problem: An application I run utilizes a service (supplied with the
application) to connect to a special USB device. When the application
terminates it leaves the service running. When the application is run again
it fails to connect to it's hardware. I have found that if I manually
terminate the service, an then run the application, the application re-starts
the service and always connects to the hardware. I have advised the
manufacturer of the issue, but as a temporary work-around I would like to
launch the application using a .bat file, and when the application
terminates, the .bat file will stop the service.

I have created a .bat file that successfully launches the application,
however I can't seem to stop the service.

The command I'm using is NET STOP service, but no matter how I reference the
service I get an error. The name of the service is XNETS.exe

Here's what I've tried:
NET STOP XNETS.exe; error can find service

I went to "Services" and copied the exact path listed in the properties for
the service.
NET STOP C:\Progra~1\Common~1\XNET\XNETS.exe; error in filename, path, etc.

I can manually stop this service using the task manager; I see it listed in
"Services" and can either stop or start it there; but I can't get the NET
STOP command to find it.

I would appreciate some suggestions, thanks.


  #3  
Old August 5th 08, 07:57 AM posted to microsoft.public.windowsxp.customize
Klaus Jorgensen[_2_]
external usenet poster
 
Posts: 38
Default Automation Question: How do you stop a process from a .bat file?

mickey laid this down on his screen :
I have created a .bat file that successfully launches the application,
however I can't seem to stop the service.

The command I'm using is NET STOP service, but no matter how I reference the
service I get an error. The name of the service is XNETS.exe

Here's what I've tried:
NET STOP XNETS.exe; error can find service


XNETS.exe is the name of the executable - not necessarily the service
name. The service name is shown in the list of services; right-click on
a service and click properties, then the service name (and it's display
name) is shown. If the service name has blanks in it, you'll have to
use double quotation marks in the "net stop" command - e.g.:
net stop "service name"

--
/klaus


  #4  
Old August 5th 08, 03:08 PM posted to microsoft.public.windowsxp.customize
Mickey
external usenet poster
 
Posts: 20
Default Automation Question: How do you stop a process from a .bat fil

I verified that XNETS is the name of the service, which does work in the
script file.

Thanks for your suggestion.

Mick

"Klaus Jorgensen" wrote:

mickey laid this down on his screen :
I have created a .bat file that successfully launches the application,
however I can't seem to stop the service.

The command I'm using is NET STOP service, but no matter how I reference the
service I get an error. The name of the service is XNETS.exe

Here's what I've tried:
NET STOP XNETS.exe; error can find service


XNETS.exe is the name of the executable - not necessarily the service
name. The service name is shown in the list of services; right-click on
a service and click properties, then the service name (and it's display
name) is shown. If the service name has blanks in it, you'll have to
use double quotation marks in the "net stop" command - e.g.:
net stop "service name"

--
/klaus



  #5  
Old August 6th 08, 08:25 AM posted to microsoft.public.windowsxp.customize
ju.c[_2_]
external usenet poster
 
Posts: 1,133
Default Automation Question: How do you stop a process from a .bat fil

Try using "sc stop" instead of "net stop".


For processes:

ProcessUtility 2.03
2003 Craig Peacock
http://www.beyondlogic.org


Command Line Process Viewer/Killer/Suspender

Usage:

ProcessUtility.exe [-v] [-t] [-c]
ProcessUtility.exe [-q] [Process Name/PID] [timeout sec(optional)]
ProcessUtility.exe [-k] [-s] [-r] [Process Name/PID]
ProcessUtility.exe [-p] [Process Name/PID]
{RealTime|High|AboveNormal|Normal|BelowNormal|Low}
ProcessUtility.exe [-a] [Process Name/PID] [Mask(To Set)]

-v View Processes.
-t View Kernel and User CPU Times.
-c View Process Creation Times.
-q Send WM_CLOSE Message. Default timeout is 60 Sec
-k Kill Process. (Terminate)
-s Suspend Process.
-r Resume Suspended Process.
-p Set Process Priority.
-a Get/Set Affinity Mask of Process.

PROCUTIL -q [PID] 5


ju.c


"mickey" wrote in message
...
I verified that XNETS is the name of the service, which does work in the
script file.

Thanks for your suggestion.

Mick

"Klaus Jorgensen" wrote:

mickey laid this down on his screen :
I have created a .bat file that successfully launches the application,
however I can't seem to stop the service.

The command I'm using is NET STOP service, but no matter how I reference the
service I get an error. The name of the service is XNETS.exe

Here's what I've tried:
NET STOP XNETS.exe; error can find service


XNETS.exe is the name of the executable - not necessarily the service
name. The service name is shown in the list of services; right-click on
a service and click properties, then the service name (and it's display
name) is shown. If the service name has blanks in it, you'll have to
use double quotation marks in the "net stop" command - e.g.:
net stop "service name"

--
/klaus



  #6  
Old August 12th 08, 02:04 PM posted to microsoft.public.windowsxp.customize
Mickey
external usenet poster
 
Posts: 20
Default Automation Question: How do you stop a process from a .bat fil

Thanks ju.c,

Just saw your reply. I will try your suggestions. While I have a script
file that works most of the time, occasionally it fails to stop XNETS.

"ju.c" wrote:

Try using "sc stop" instead of "net stop".


For processes:

ProcessUtility 2.03
2003 Craig Peacock
http://www.beyondlogic.org


Command Line Process Viewer/Killer/Suspender

Usage:

ProcessUtility.exe [-v] [-t] [-c]
ProcessUtility.exe [-q] [Process Name/PID] [timeout sec(optional)]
ProcessUtility.exe [-k] [-s] [-r] [Process Name/PID]
ProcessUtility.exe [-p] [Process Name/PID]
{RealTime|High|AboveNormal|Normal|BelowNormal|Low}
ProcessUtility.exe [-a] [Process Name/PID] [Mask(To Set)]

-v View Processes.
-t View Kernel and User CPU Times.
-c View Process Creation Times.
-q Send WM_CLOSE Message. Default timeout is 60 Sec
-k Kill Process. (Terminate)
-s Suspend Process.
-r Resume Suspended Process.
-p Set Process Priority.
-a Get/Set Affinity Mask of Process.

PROCUTIL -q [PID] 5


ju.c


"mickey" wrote in message
...
I verified that XNETS is the name of the service, which does work in the
script file.

Thanks for your suggestion.

Mick

"Klaus Jorgensen" wrote:

mickey laid this down on his screen :
I have created a .bat file that successfully launches the application,
however I can't seem to stop the service.

The command I'm using is NET STOP service, but no matter how I reference the
service I get an error. The name of the service is XNETS.exe

Here's what I've tried:
NET STOP XNETS.exe; error can find service


XNETS.exe is the name of the executable - not necessarily the service
name. The service name is shown in the list of services; right-click on
a service and click properties, then the service name (and it's display
name) is shown. If the service name has blanks in it, you'll have to
use double quotation marks in the "net stop" command - e.g.:
net stop "service name"

--
/klaus




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off






All times are GMT +1. The time now is 11:29 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.