<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.bishopphillips.com/riskwiki/index.php?action=history&amp;feed=atom&amp;title=BpcWin32Service</id>
	<title>BpcWin32Service - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.bishopphillips.com/riskwiki/index.php?action=history&amp;feed=atom&amp;title=BpcWin32Service"/>
	<link rel="alternate" type="text/html" href="https://www.bishopphillips.com/riskwiki/index.php?title=BpcWin32Service&amp;action=history"/>
	<updated>2026-08-19T01:51:01Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://www.bishopphillips.com/riskwiki/index.php?title=BpcWin32Service&amp;diff=185&amp;oldid=prev</id>
		<title>Bishopj: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://www.bishopphillips.com/riskwiki/index.php?title=BpcWin32Service&amp;diff=185&amp;oldid=prev"/>
		<updated>2026-04-12T06:37:07Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 06:37, 12 April 2026&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Bishopj</name></author>
	</entry>
	<entry>
		<id>https://www.bishopphillips.com/riskwiki/index.php?title=BpcWin32Service&amp;diff=184&amp;oldid=prev</id>
		<title>Bishopj: Created page with &quot;==Win32 Service Management==  Language: Delphi 7 - 2007   Win32 service control - start, stop, status check, keyname enquiry, displayname enquiry, and listing.   &lt;pre&gt; uses Ty...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.bishopphillips.com/riskwiki/index.php?title=BpcWin32Service&amp;diff=184&amp;oldid=prev"/>
		<updated>2019-09-11T16:59:33Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Win32 Service Management==  Language: Delphi 7 - 2007   Win32 service control - start, stop, status check, keyname enquiry, displayname enquiry, and listing.   &amp;lt;pre&amp;gt; uses Ty...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Win32 Service Management==&lt;br /&gt;
&lt;br /&gt;
Language: Delphi 7 - 2007&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Win32 service control - start, stop, status check, keyname enquiry, displayname enquiry, and listing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
uses Types, Classes;&lt;br /&gt;
&lt;br /&gt;
function bpcWin32ServiceStart( sMachine, sService : string ) : boolean;&lt;br /&gt;
function bpcWin32ServiceStop( sMachine, sService : string ) : boolean;&lt;br /&gt;
function bpcWin32ServiceGetStatus( sMachine, sService : string ) : DWord;&lt;br /&gt;
function bpcWin32ServiceStopped( sMachine, sService : string ) : boolean;&lt;br /&gt;
function bpcWin32ServiceRunning( sMachine, sService : string ) : boolean;&lt;br /&gt;
function bpcWin32ServiceGetKeyName( sMachine, sServiceDispName : string ) : string;&lt;br /&gt;
function bpcWin32ServiceGetDisplayName( sMachine,  sServiceKeyName : string ) : string;&lt;br /&gt;
function bpcWn32ServiceGetList( sMachine : string; dwServiceType, dwServiceState : DWord; slServicesList : TStrings ) : boolean;&lt;br /&gt;
&lt;br /&gt;
const&lt;br /&gt;
  //&lt;br /&gt;
  // Service Types&lt;br /&gt;
  //&lt;br /&gt;
  SERVICE_KERNEL_DRIVER       = $00000001;&lt;br /&gt;
  SERVICE_FILE_SYSTEM_DRIVER  = $00000002;&lt;br /&gt;
  SERVICE_ADAPTER             = $00000004;&lt;br /&gt;
  SERVICE_RECOGNIZER_DRIVER   = $00000008;&lt;br /&gt;
&lt;br /&gt;
  SERVICE_DRIVER              =&lt;br /&gt;
    (SERVICE_KERNEL_DRIVER or&lt;br /&gt;
     SERVICE_FILE_SYSTEM_DRIVER or&lt;br /&gt;
     SERVICE_RECOGNIZER_DRIVER);&lt;br /&gt;
&lt;br /&gt;
  SERVICE_WIN32_OWN_PROCESS   = $00000010;&lt;br /&gt;
  SERVICE_WIN32_SHARE_PROCESS = $00000020;&lt;br /&gt;
  SERVICE_WIN32               =&lt;br /&gt;
    (SERVICE_WIN32_OWN_PROCESS or&lt;br /&gt;
     SERVICE_WIN32_SHARE_PROCESS);&lt;br /&gt;
&lt;br /&gt;
  SERVICE_INTERACTIVE_PROCESS = $00000100;&lt;br /&gt;
&lt;br /&gt;
  SERVICE_TYPE_ALL            =&lt;br /&gt;
    (SERVICE_WIN32 or&lt;br /&gt;
     SERVICE_ADAPTER or&lt;br /&gt;
     SERVICE_DRIVER  or&lt;br /&gt;
     SERVICE_INTERACTIVE_PROCESS);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=BackLinks=&lt;br /&gt;
&lt;br /&gt;
{{#dpl: linksto={{FULLPAGENAME}} }}&lt;/div&gt;</summary>
		<author><name>Bishopj</name></author>
	</entry>
</feed>