<p>You have at least three options. I have presented them in order of usage preference.</p>
<p><strong>Method 1</strong> - Vous pouvez utiliser the <a href="http://support.microsoft.com/kb/251192">SC tool</a> (Sc.exe) included in the Resource Kit.<br>
(included with Windows 7/8)</p>
<p>Open a invite de commandes and enter</p>
<pre><code class="lang-auto">sc delete <service-name>
</code></pre>
<p>Tool help snippet follows:</p>
<pre><code class="lang-auto">DESCRIPTION:
SC is a command line program used for communicating with the
NT Service Controller and services.
delete----------Deletes a service (from the registry).
</code></pre>
<p><strong>Method 2</strong> - use delserv</p>
<p><a href="http://support.microsoft.com/kb/927229">Download</a> and use delserv ligne de commande utility. This is a legacy tool developed for Windows 2000. In current Window XP boxes this was superseded by sc described in method 1.</p>
<p><strong>Method 3</strong> - manually delete registry entries <strong>(Notez que this backfires in Windows 7/8)</strong></p>
<p>Windows services are registered under the following clé de registre.</p>
<pre><code class="lang-auto">HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services
</code></pre>
<p>Search for the sub-key with the service name under referred key and delete it. (and you might need to restart to remove completely the service from the Services list)</p>