Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than advapi32, prefix the name with the module name and a period.
QueryServiceConfig2 (advapi32)
.
Summary
The
QueryServiceConfig2 function retrieves the optional configuration parameters of the specified service. At present, these are the service description and the failure actions.
C# Signature:
[DllImport( "advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true, EntryPoint = "QueryServiceConfig2W" )]
public static extern Boolean QueryServiceConfig2( IntPtr hService, UInt32 dwInfoLevel, IntPtr buffer, UInt32 cbBufSize, out UInt32 pcbBytesNeeded );
VB Signature:
Declare Function QueryServiceConfig2 Lib "advapi32.dll" (TODO) As TODO
User-Defined Types:
None.
Alternative Managed API:
C# Signature:
[DllImport( "advapi32.dll", CharSet = CharSet .Unicode, SetLastError = true, EntryPoint = "QueryServiceConfig2W" )]
public static extern Boolean QueryServiceConfig2( IntPtr hService, UInt32 dwInfoLevel, IntPtr buffer, UInt32 cbBufSize, out UInt32 pcbBytesNeeded );
VB Signature:
Declare Function QueryServiceConfig2 Lib "advapi32.dll" (TODO) As TODO
User-Defined Types:
None.
Notes:
Alternative Managed API:
None.
Tips & Tricks:
Please add some!
Notes:
None.
Sample Code:
using System;
using System.Runtime.InteropServices;
using System.Text;
Tips & Tricks:
Please add some!
static void Main( string [] args )
{
// Use the service name and *NOT* the display name.
string serviceName = "Dnscache"; // Display name is "DNS Client"
if ( args.Length > 0 )
serviceName = args [ 0 ];
IntPtr databaseHandle = OpenSCManager( null, null, SC_MANAGER_ALL_ACCESS );
if ( databaseHandle == IntPtr.Zero )
throw new System.Runtime.InteropServices.ExternalException( "Error OpenSCManager\n" );
Sample Code:
using System;
using System.Runtime.InteropServices;
using System.Text;
IntPtr serviceHandle = OpenService( databaseHandle, serviceName, SERVICE_QUERY_CONFIG );
if ( serviceHandle == IntPtr.Zero )
throw new System.Runtime.InteropServices.ExternalException( "Error OpenService\n" );
ReportDescription( serviceHandle );
ReportFailureActions( serviceHandle );
}
static private void ReportDescription( IntPtr serviceHandle )
static void Main( string [] args )
{
UInt32 dwBytesNeeded;
// Use the service name and *NOT* the display name.
string serviceName = "Dnscache"; // Display name is "DNS Client"
if ( args.Length > 0 )
serviceName = args [ 0 ];
IntPtr databaseHandle = OpenSCManager( null, null, SC_MANAGER_ALL_ACCESS );
if ( databaseHandle == IntPtr.Zero )
throw new System.Runtime.InteropServices.ExternalException( "Error OpenSCManager\n" );
// Determine the buffer size needed
bool sucess = QueryServiceConfig2( serviceHandle, SERVICE_CONFIG_DESCRIPTION, IntPtr.Zero, 0, out dwBytesNeeded );
IntPtr serviceHandle = OpenService( databaseHandle, serviceName, SERVICE_QUERY_CONFIG );
if ( serviceHandle == IntPtr.Zero )
throw new System.Runtime.InteropServices.ExternalException( "Error OpenService\n" );
IntPtr ptr = Marshal.AllocHGlobal( ( int )dwBytesNeeded );
sucess = QueryServiceConfig2( serviceHandle, SERVICE_CONFIG_DESCRIPTION, ptr, dwBytesNeeded, out dwBytesNeeded );
SERVICE_DESCRIPTION descriptionStruct = new SERVICE_DESCRIPTION();
Marshal.PtrToStructure( ptr, descriptionStruct );
Marshal.FreeHGlobal( ptr );
ReportDescription( serviceHandle );
// Report it.
Console.WriteLine( descriptionStruct.lpDescription );
}
ReportFailureActions( serviceHandle );
static private void ReportFailureActions( IntPtr serviceHandle )
{
UInt32 dwBytesNeeded;
const UInt32 INFINITE = 0xFFFFFFFF;
}
// Determine the buffer size needed
bool sucess = QueryServiceConfig2( serviceHandle, SERVICE_CONFIG_FAILURE_ACTIONS, IntPtr.Zero, 0, out dwBytesNeeded );
static private void ReportDescription( IntPtr serviceHandle )
{
UInt32 dwBytesNeeded;
IntPtr ptr = Marshal.AllocHGlobal( ( int )dwBytesNeeded );
sucess = QueryServiceConfig2( serviceHandle, SERVICE_CONFIG_FAILURE_ACTIONS, ptr, dwBytesNeeded, out dwBytesNeeded );
SERVICE_FAILURE_ACTIONS failureActions = new SERVICE_FAILURE_ACTIONS();
Marshal.PtrToStructure( ptr, failureActions );
// Determine the buffer size needed
bool sucess = QueryServiceConfig2( serviceHandle, SERVICE_CONFIG_DESCRIPTION, IntPtr.Zero, 0, out dwBytesNeeded );
// Report it.
Console.WriteLine( "Reset Period: {0}", ( UInt32 )failureActions.dwResetPeriod != INFINITE
? failureActions.dwResetPeriod.ToString() : "INFINITE" );
Console.WriteLine( "Reboot message: {0}", failureActions.lpRebootMsg );
Console.WriteLine( "Command line: {0}", failureActions.lpCommand );
Console.WriteLine( "Number of actions: {0}", failureActions.cActions );
SC_ACTION [] actions = new SC_ACTION [ failureActions.cActions ];
int offset = 0;
for ( int i = 0; i < failureActions.cActions; i++ )
{
SC_ACTION action = new SC_ACTION();
action.type = Marshal.ReadInt32( failureActions.lpsaActions, offset );
offset += sizeof( Int32 );
action.dwDelay = ( UInt32 )Marshal.ReadInt32( failureActions.lpsaActions, offset );
offset += sizeof( Int32 );
actions [ i ] = action;
}
IntPtr ptr = Marshal.AllocHGlobal( ( int )dwBytesNeeded );
sucess = QueryServiceConfig2( serviceHandle, SERVICE_CONFIG_DESCRIPTION, ptr, dwBytesNeeded, out dwBytesNeeded );
SERVICE_DESCRIPTION descriptionStruct = new SERVICE_DESCRIPTION();
Marshal.PtrToStructure( ptr, descriptionStruct );
Marshal.FreeHGlobal( ptr );
foreach ( SC_ACTION action in actions )
{
Console.WriteLine( "Type: {0}, Delay (msec): {1}", action.type, action.dwDelay );
}
}
#region P/Invoke declarations
[StructLayout( LayoutKind.Sequential )]
public class SERVICE_DESCRIPTION
{
[MarshalAs( System.Runtime.InteropServices.UnmanagedType.LPWStr )]
public String lpDescription;
// Report it.
Console.WriteLine( descriptionStruct.lpDescription );
}
[StructLayout( LayoutKind.Sequential, CharSet = CharSet.Unicode )]
public class SERVICE_FAILURE_ACTIONS
static private void ReportFailureActions( IntPtr serviceHandle )
{
public int dwResetPeriod;
[MarshalAs( UnmanagedType.LPWStr )]
public string lpRebootMsg;
[MarshalAs( UnmanagedType.LPWStr )]
public string lpCommand;
public int cActions;
public IntPtr lpsaActions;
}
UInt32 dwBytesNeeded;
const UInt32 INFINITE = 0xFFFFFFFF;
[StructLayout( LayoutKind.Sequential )]
public class SC_ACTION
{
public Int32 type;
public UInt32 dwDelay;
}
// Determine the buffer size needed
bool sucess = QueryServiceConfig2( serviceHandle, SERVICE_CONFIG_FAILURE_ACTIONS, IntPtr.Zero, 0, out dwBytesNeeded );
[DllImport( "advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true )]
public static extern IntPtr OpenSCManager( String lpMachineName, String lpDatabaseName, UInt32 dwDesiredAccess );
[DllImport( "advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true )]
public static extern IntPtr OpenService( IntPtr hSCManager, String lpServiceName, UInt32 dwDesiredAccess );
[DllImport( "advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true, EntryPoint = "QueryServiceConfig2W" )]
public static extern Boolean QueryServiceConfig2( IntPtr hService, UInt32 dwInfoLevel, IntPtr buffer, UInt32 cbBufSize, out UInt32 pcbBytesNeeded );
IntPtr ptr = Marshal.AllocHGlobal( ( int )dwBytesNeeded );
sucess = QueryServiceConfig2( serviceHandle, SERVICE_CONFIG_FAILURE_ACTIONS, ptr, dwBytesNeeded, out dwBytesNeeded );
SERVICE_FAILURE_ACTIONS failureActions = new SERVICE_FAILURE_ACTIONS();
Marshal.PtrToStructure( ptr, failureActions );
private const Int32 SC_MANAGER_ALL_ACCESS = 0x000F003F;
private const Int32 SERVICE_QUERY_CONFIG = 0x00000001;
private const UInt32 SERVICE_CONFIG_DESCRIPTION = 0x01;
private const UInt32 SERVICE_CONFIG_FAILURE_ACTIONS = 0x02;
// Report it.
Console.WriteLine( "Reset Period: {0}", ( UInt32 )failureActions.dwResetPeriod != INFINITE
? failureActions.dwResetPeriod.ToString() : "INFINITE" );
Console.WriteLine( "Reboot message: {0}", failureActions.lpRebootMsg );
Console.WriteLine( "Command line: {0}", failureActions.lpCommand );
Console.WriteLine( "Reboot message: {0}", failureActions.lpRebootMsg );
Console.WriteLine( "Number of actions: {0}", failureActions.cActions );
#endregion // P/Invoke declarations
SC_ACTION [] actions = new SC_ACTION [ failureActions.cActions ];
int offset = 0;
for ( int i = 0; i < failureActions.cActions; i++ )
{
SC_ACTION action = new SC_ACTION();
action.type = Marshal.ReadInt32( failureActions.lpsaActions, offset );
offset += sizeof( Int32 );
action.dwDelay = ( UInt32 )Marshal.ReadInt32( failureActions.lpsaActions, offset );
offset += sizeof( Int32 );
actions [ i ] = action;
}
Marshal.FreeHGlobal( ptr );
foreach ( SC_ACTION action in actions )
{
Console.WriteLine( "Type: {0}, Delay (msec): {1}", action.type, action.dwDelay );
}
}
#region P/Invoke declarations
[StructLayout( LayoutKind.Sequential )]
public class SERVICE_DESCRIPTION
{
[MarshalAs( System.Runtime.InteropServices.UnmanagedType.LPWStr )]
public String lpDescription;
}
[StructLayout( LayoutKind.Sequential, CharSet = CharSet.Unicode )]
public class SERVICE_FAILURE_ACTIONS
{
public int dwResetPeriod;
[MarshalAs( UnmanagedType.LPWStr )]
public string lpRebootMsg;
[MarshalAs( UnmanagedType.LPWStr )]
public string lpCommand;
public int cActions;
public IntPtr lpsaActions;
}
[StructLayout( LayoutKind.Sequential )]
public class SC_ACTION
{
public Int32 type;
public UInt32 dwDelay;
}
[DllImport( "advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true )]
public static extern IntPtr OpenSCManager( String lpMachineName, String lpDatabaseName, UInt32 dwDesiredAccess );
[DllImport( "advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true )]
public static extern IntPtr OpenService( IntPtr hSCManager, String lpServiceName, UInt32 dwDesiredAccess );
[DllImport( "advapi32.dll", CharSet = CharSet.Unicode, SetLastError = true, EntryPoint = "QueryServiceConfig2W" )]
public static extern Boolean QueryServiceConfig2( IntPtr hService, UInt32 dwInfoLevel, IntPtr buffer, UInt32 cbBufSize, out UInt32 pcbBytesNeeded );
private const Int32 SC_MANAGER_ALL_ACCESS = 0x000F003F;
private const Int32 SERVICE_QUERY_CONFIG = 0x00000001;
private const UInt32 SERVICE_CONFIG_DESCRIPTION = 0x01;
private const UInt32 SERVICE_CONFIG_FAILURE_ACTIONS = 0x02;
#endregion // P/Invoke declarations
Documentation
The QueryServiceConfig2 function retrieves the optional configuration parameters of the specified service. At present, these are the service description and the failure actions.
12/29/2007 6:25:06 AM - chuckmartin-67.168.70.166
Click to read this page 4/6/2008 7:23:14 AM - anonymous
Click to read this page 4/6/2008 7:23:14 AM - anonymous
The SetLastError API
1/26/2016 3:27:33 AM - -124.148.167.58
TODO - a short description
3/16/2007 7:31:57 AM - anfortas.geo@yahoo.com-216.204.61.86
An IntPtr is a pointer to a memory location (unmanaged) that adapts to the platform it is running on (64-bit, etc.) UNLIKE a standard int/Integer. You should always use this type for unmanaged calls that require it, even though an int will appear to work on your development machine.
1/13/2008 4:00:13 AM - Damon Carr-72.43.165.29
TODO - a short description of this collection of constants
4/6/2012 12:59:20 AM - anonymous
An IntPtr is a pointer to a memory location (unmanaged) that adapts to the platform it is running on (64-bit, etc.) UNLIKE a standard int/Integer. You should always use this type for unmanaged calls that require it, even though an int will appear to work on your development machine.
1/13/2008 4:00:13 AM - Damon Carr-72.43.165.29
TODO - a short description of this collection of constants
4/6/2012 12:59:20 AM - anonymous
TODO - a short description of this collection of constants
4/6/2012 12:59:20 AM - anonymous
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).