<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Starting windows services through batch file in Operating System - Microsoft</title>
    <link>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483603#M9480</link>
    <description>It's not a detailed question and it is asked in the wrong forum, but however, with this line you can stop the FTP server. It will be similar for other services:&lt;BR /&gt;&lt;BR /&gt;c:\ net stop "ftp publishing"</description>
    <pubDate>Fri, 21 Aug 2009 05:16:36 GMT</pubDate>
    <dc:creator>Torsten.</dc:creator>
    <dc:date>2009-08-21T05:16:36Z</dc:date>
    <item>
      <title>Starting windows services through batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483601#M9478</link>
      <description>I have a requirement where I need to stop and start services for a particular application on a windows server through a batch file. Can anyone share some sample code for this?</description>
      <pubDate>Fri, 21 Aug 2009 03:56:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483601#M9478</guid>
      <dc:creator>deserteagle</dc:creator>
      <dc:date>2009-08-21T03:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Starting windows services through batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483602#M9479</link>
      <description>&lt;!--!*#--&gt;Someone in one of the Microsoft forums might&lt;BR /&gt;be more likely than a typical reader of this&lt;BR /&gt;HP-UX forum.&lt;BR /&gt;&lt;BR /&gt;"windows" is not a very complete description&lt;BR /&gt;of the OS involved.&lt;BR /&gt;&lt;BR /&gt;It's just possible that "a particular&lt;BR /&gt;application" might differ in this respect&lt;BR /&gt;from some other "particular application".</description>
      <pubDate>Fri, 21 Aug 2009 04:31:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483602#M9479</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-08-21T04:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Starting windows services through batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483603#M9480</link>
      <description>It's not a detailed question and it is asked in the wrong forum, but however, with this line you can stop the FTP server. It will be similar for other services:&lt;BR /&gt;&lt;BR /&gt;c:\ net stop "ftp publishing"</description>
      <pubDate>Fri, 21 Aug 2009 05:16:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483603#M9480</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2009-08-21T05:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: Starting windows services through batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483604#M9481</link>
      <description>hi deserteagle,&lt;BR /&gt;&lt;BR /&gt;For local services some simple commands are:&lt;BR /&gt;&lt;BR /&gt;net stop &lt;SERVICE name=""&gt;&lt;BR /&gt;net start &lt;SERVICE name=""&gt;&lt;BR /&gt;&lt;BR /&gt;for remote servers you can use:&lt;BR /&gt;&lt;BR /&gt;sc &lt;SERVER name=""&gt; stop &lt;SERVICE name=""&gt;&lt;BR /&gt;sc &lt;SERVER name=""&gt; start &lt;SERVICE name=""&gt;&lt;BR /&gt;&lt;BR /&gt;or even &lt;BR /&gt;&lt;BR /&gt;sc &lt;SERVER name=""&gt; pause &lt;SERVICE name=""&gt;&lt;BR /&gt;sc &lt;SERVER name=""&gt; continue &lt;SERVICE name=""&gt;&lt;BR /&gt;&lt;BR /&gt;good luck and please assign points if these responses have helped!&lt;BR /&gt;&lt;BR /&gt;&lt;/SERVICE&gt;&lt;/SERVER&gt;&lt;/SERVICE&gt;&lt;/SERVER&gt;&lt;/SERVICE&gt;&lt;/SERVER&gt;&lt;/SERVICE&gt;&lt;/SERVER&gt;&lt;/SERVICE&gt;&lt;/SERVICE&gt;</description>
      <pubDate>Tue, 01 Sep 2009 18:59:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483604#M9481</guid>
      <dc:creator>WFHC-WI</dc:creator>
      <dc:date>2009-09-01T18:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Starting windows services through batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483605#M9482</link>
      <description>You can also stop/start local services using the SC command</description>
      <pubDate>Wed, 02 Sep 2009 05:45:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483605#M9482</guid>
      <dc:creator>Phil.Howell</dc:creator>
      <dc:date>2009-09-02T05:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Starting windows services through batch file</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483606#M9483</link>
      <description>Hello DE,&lt;BR /&gt;&lt;BR /&gt;Here is some information.&lt;BR /&gt;&lt;BR /&gt;Services can be easily changed/accessed by creating batch files.&lt;BR /&gt;&lt;BR /&gt;The important commands are the following:&lt;BR /&gt;&lt;BR /&gt;NET START â   starts the service&lt;BR /&gt;NET STOP â   ends/stops the service&lt;BR /&gt;&lt;BR /&gt;Before starting this we need to make sure which service we want to start or stop.&lt;BR /&gt;&lt;BR /&gt;Go to Startâ  &amp;gt;Run type services.msc click ok&lt;BR /&gt;&lt;BR /&gt;Once we get the services windows we can see each service name.&lt;BR /&gt;&lt;BR /&gt;Stop Window Services using Batch file&lt;BR /&gt;&lt;BR /&gt;The following one is just example&lt;BR /&gt;&lt;BR /&gt;First we need to open a notepad enter the following commands and save as stopservice.bat&lt;BR /&gt;&lt;BR /&gt;NET STOP â  Error Reporting Serviceâ  &lt;BR /&gt;NET STOP â  Messengerâ  &lt;BR /&gt;&lt;BR /&gt;The above commands stop the following services:&lt;BR /&gt;&lt;BR /&gt;â  Error Reporting Serviceâ  &lt;BR /&gt;â  Messengerâ  &lt;BR /&gt;&lt;BR /&gt;The same way we need to start the services using the following procedure we need to open a notepad enter the following commands and save as startservice.bat&lt;BR /&gt;&lt;BR /&gt;NET START â  Error Reporting Serviceâ  &lt;BR /&gt;NET START â  Messengerâ  &lt;BR /&gt;&lt;BR /&gt;These commands start the following services:&lt;BR /&gt;&lt;BR /&gt;â  Error Reporting Serviceâ  &lt;BR /&gt;â  Messengerâ  &lt;BR /&gt;&lt;BR /&gt;Hope, this would be of some help.&lt;BR /&gt;&lt;BR /&gt;With regards and best wishes,&lt;BR /&gt;Kanth.</description>
      <pubDate>Wed, 02 Sep 2009 12:05:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/starting-windows-services-through-batch-file/m-p/4483606#M9483</guid>
      <dc:creator>Srikanth Gadwal</dc:creator>
      <dc:date>2009-09-02T12:05:04Z</dc:date>
    </item>
  </channel>
</rss>

