Searched refs:wmic (Results 1 – 1 of 1) sorted by relevance
77 $wmic = shell_exec('wmic OS get FreePhysicalMemory,TotalVisibleMemorySize /Value'); variable78 if ($wmic) {79 preg_match('/FreePhysicalMemory=(\d+)/', $wmic, $free);80 preg_match('/TotalVisibleMemorySize=(\d+)/', $wmic, $total);113 $wmic = shell_exec('wmic os get lastbootuptime'); variable114 if ($wmic && preg_match('/(\d{14})/', $wmic, $matches)) {173 …$wmic = shell_exec('wmic process get Caption,KernelModeTime /format:csv | findstr /V "^$" | sort /… variable174 if ($wmic) {175 $lines = explode("\n", trim($wmic));