QueryServiceStatus

[DllImport("Advapi32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool QueryServiceStatus(
   IntPtr hService,
   ref SERVICE_STATUS lpServiceStatus
);

Microsoft documentation: Link

Last updated