<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Otak Atik [dot] Com &#187; Windows Service</title>
	<atom:link href="http://www.otakatik.com/tag/windows-service/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.otakatik.com</link>
	<description>Empowering Computer</description>
	<lastBuildDate>Wed, 25 Jan 2012 09:06:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Removing Windows Service on Windows XP</title>
		<link>http://www.otakatik.com/removing-windows-service-on-windows-xp/</link>
		<comments>http://www.otakatik.com/removing-windows-service-on-windows-xp/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 13:59:19 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[MS-DOS]]></category>
		<category><![CDATA[Windows Service]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=73</guid>
		<description><![CDATA[I had ever confused when I got problem with MySQL installation and I want to remove the MySQL service from Windows Services but I can found the erase or remove menu on Windows Services console. And finally I found the way to remove its service, I’ll share it. Windows XP has a MSDOS tool to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0052/logo.png" alt="" /><br />
I had ever confused when I got problem with MySQL installation and I want to remove the MySQL service from Windows Services but I can found the erase or remove menu on Windows Services console. And finally I found the way to remove its service, I’ll share it.<span id="more-73"></span></p>
<p>Windows XP has a MSDOS tool to remove it, it calls <code>sc</code>. If you want to look all the option just type <code>sc</code> at command prompt console, you will see the result like this:</p>
<pre name="code" class"ruby">DESCRIPTION:
SC is a command line program used for communicating with the
NT Service Controller and services.
USAGE:
sc (my_server) [command] [service name] (option1) (option2)...

The option (server) has the form "\\ServerName"
Further help on commands can be obtained by typing: "sc [command]"
Commands:
query-----------Queries the status for a service, or
enumerates the status for types of services.
queryex---------Queries the extended status for a service, or
enumerates the status for types of services.
start-----------Starts a service.
pause-----------Sends a PAUSE control request to a service.
interrogate-----Sends an INTERROGATE control request to a service.
continue--------Sends a CONTINUE control request to a service.
stop------------Sends a STOP request to a service.
config----------Changes the configuration of a service (persistant).
description-----Changes the description of a service.
failure---------Changes the actions taken by a service upon failure.
qc--------------Queries the configuration information for a service.
qdescription----Queries the description for a service.
qfailure--------Queries the actions taken by a service upon failure.
delete----------Deletes a service (from the registry).
create----------Creates a service. (adds it to the registry).
control---------Sends a control to a service.
sdshow----------Displays a service's security descriptor.
sdset-----------Sets a service's security descriptor.
GetDisplayName--Gets the DisplayName for a service.
GetKeyName------Gets the ServiceKeyName for a service.
EnumDepend------Enumerates Service Dependencies.

The following commands don't require a service name:
sc (server) (command) (option)
boot------------(ok | bad) Indicates whether the last boot should
be saved as the last-known-good boot configuration
Lock------------Locks the Service Database
QueryLock-------Queries the LockStatus for the SCManager Database
EXAMPLE:
sc start MyService

Would you like to see help for the QUERY and QUERYEX commands? [ y | n ]: y
QUERY and QUERYEX OPTIONS :
If the query command is followed by a service name, the status
for that service is returned.  Further options do not apply in
this case.  If the query command is followed by nothing or one of
the options listed below, the services are enumerated.
type=    Type of services to enumerate (driver, service, all)
(default = service)
state=   State of services to enumerate (inactive, all)
(default = active)
bufsize= The size (in bytes) of the enumeration buffer
(default = 4096)
ri=      The resume index number at which to begin the enumeration
(default = 0)
group=   Service group to enumerate
(default = all groups)
SYNTAX EXAMPLES
sc query                - Enumerates status for active services &amp; drivers
sc query messenger      - Displays status for the messenger service
sc queryex messenger    - Displays extended status for the messenger service
sc query type= driver   - Enumerates only active drivers
sc query type= service  - Enumerates only Win32 services
sc query state= all     - Enumerates all services &amp; drivers
sc query bufsize= 50    - Enumerates with a 50 byte buffer.
sc query ri= 14         - Enumerates with resume index = 14
sc queryex group= ""    - Enumerates active services not in a group
sc query type= service type= interact - Enumerates all interactive services
sc query type= driver group= NDIS     - Enumerates all NDIS drivers</pre>
<p><img title="sc command options" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0052/option_list_sc_2.jpg" alt="sc command options" /></p>
<p>As you see in its options, you can start, stop and query Windows Services.</p>
<p>1. To query all Windows Services at your console window, just enter <code>sc query</code> at prompt or if you want show one service, type <code>sc query mysql</code> then press <strong>Enter</strong> key.</p>
<p>2. To stop a service, type <code>sc stop service_name</code>, for example <code>sc stop mysql</code>.</p>
<p>3. To start a service, type <code>sc start service_name</code>, for example, <code>sc start mysql</code>.</p>
<p>4. And to delete a service, type <code>sc delete service_name</code>, for example, <code>sc delete mysql</code>.</p>
<p><img title="sc command to delete a service" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0052/sc_delete_3.jpg" alt="sc command to delete a service" /></p>
<p>Actually, there are still many options available in <code>sc</code> command. You can try it one by one. But be careful, because you are play with Windows Services.</p>
<p>Don’t forget you can also query all Windows Services in GUI mode.</p>
<p><img title="GUI mode" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0052/mysql_service_list_1.jpg" alt="GUI mode" /></p>
<p><em>(article no:0052)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/removing-windows-service-on-windows-xp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Manage Windows Services</title>
		<link>http://www.otakatik.com/manage-windows-services/</link>
		<comments>http://www.otakatik.com/manage-windows-services/#comments</comments>
		<pubDate>Sat, 28 Apr 2007 13:15:43 +0000</pubDate>
		<dc:creator>Edi Kwie</dc:creator>
				<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Windows Service]]></category>

		<guid isPermaLink="false">http://www.otakatik.com/?p=68</guid>
		<description><![CDATA[Windows XP has some triggers inside it to make some programs and services run when start-up. One of Windows XP triggers is Windows Service. Windows Service gives you some outstanding facility to make Windows XP run some important items when start-up. And you can manage them easily, to enable or disable them. By default, Windows [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.otakatik.com/wp-content/uploads/tiptricks/0026/logo.jpg" alt="" /><br />
Windows XP has some triggers inside it to make some programs and services run when start-up. One of Windows XP triggers is Windows Service. Windows Service gives you some outstanding facility to make Windows XP run some important items when start-up. And you can manage them easily, to enable or disable them. By default, Windows XP provides some Service but unfortunately, you don’t need them all. So, I want write how to manage them.<span id="more-68"></span></p>
<p>This is the way to manage them:</p>
<p>1. Open Windows Service console first, by click <strong>Start – Control Panel</strong>,</p>
<p><img title="Start - Control Panel" src="http://www.otakatik.com/wp-content/uploads/general/start-cpanel.jpg" alt="Start - Control Panel" /></p>
<p>click <strong>Administrative Tools</strong>,</p>
<p><img title="Administrative Tools" src="http://www.otakatik.com/wp-content/uploads/general/cp-adm_tools-3.jpg" alt="Administrative Tools" /></p>
<p>then click <strong>Services</strong> icon inside Administrative Tools window.</p>
<p><img title="Open Services" src="http://www.otakatik.com/wp-content/uploads/general/call_services.jpg" alt="Open Services" /></p>
<p>2. To manage a service, double click on your service which you want to manage. In this case, I want to manage the <strong>Messenger</strong> service.</p>
<p><img title="Open Services" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0026/picture-1.jpg" alt="Open Services" /></p>
<p>3. Now, you can look the Messenger service Properties.</p>
<p><img title="Services Properties" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0026/picture-2.jpg" alt="Services Properties" /></p>
<p>4. You can make it run <strong>Automatic, Manual, Disabled</strong> mode. <strong>Automatic </strong>means the service run on start-up automatically; <strong>Manual </strong>means the service doesn’t run on start-up but you can start the service directly; <strong>Disabled </strong>means the service is disabled and you can’t start it. You can set it on its combo box.</p>
<p><img title="Services Properties" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0026/picture-3.jpg" alt="Services Properties" /></p>
<p><img title="Services Properties" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0026/picture-4.jpg" alt="Services Properties" /></p>
<p>5. If you want to start the service, just click <strong>Start</strong> button, or <strong>Stop</strong> button to stop the service.</p>
<p><img title="Start and Stop Service" src="http://www.otakatik.com/wp-content/uploads/tiptricks/0026/picture-5.jpg" alt="Start and Stop Service" /></p>
<p>You can do the same way to others services.</p>
<p><em>(article no:0026)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.otakatik.com/manage-windows-services/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

