windowsServices

fnWindowsService[] windowsServices() @trusted

Lists all Windows Services.

This function queries the Windows Service Manager to enumerate all registered services and their current status.

Returns

Array of WindowsService structs containing service information.

Throws

MonacoException if the Service Manager query fails.

Example:

version (Windows) {
  auto services = windowsServices();
  writeln("Found ", services.length, " services");
}