startMode property

String? startMode
getter/setter pair

Service start mode (OS-agnostic). Possible string values are:

  • "START_MODE_UNSPECIFIED" : Start mode unspecified.
  • "BOOT" : The service is a device driver started by the system loader.
  • "SYSTEM" : The service is a device driver started by the IOInitSystem function.
  • "AUTO" : The service is started by the operating system, at system start-up
  • "MANUAL" : The service is started only manually, by a user.
  • "DISABLED" : The service is disabled.

Implementation

core.String? startMode;