status method
Returns a short status word (running / ready / disabled /
not installed / unknown) for role.
Implementation
Future<String> status(String role) async {
final res = await _run('schtasks.exe', queryArgs(taskName(role)));
if (res.exitCode != 0) return 'not installed';
return parseStatus('${res.stdout}');
}