Kaydet (Commit) 9eee80cb authored tarafından Baran Sekin's avatar Baran Sekin

Fix for #141

üst 9e07fa7a
......@@ -242,10 +242,7 @@ class Server extends Model
if ($this->isLinux()) {
return $this->run("systemctl list-units --type=service --state=active | wc -l");
}
return explode(
"|",
$this->run("wmic service get name | find \"\" /v /c")
)[0];
return $this->run('(Get-Service | Measure-Object).Count');
}
public function getNoOfProcesses()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment