Searched refs:wmic (Results 1 – 1 of 1) sorted by relevance
93 $wmic = shell_exec('wmic OS get FreePhysicalMemory,TotalVisibleMemorySize /Value'); variable94 if ($wmic) {95 preg_match('/FreePhysicalMemory=(\d+)/', $wmic, $free);96 preg_match('/TotalVisibleMemorySize=(\d+)/', $wmic, $total);129 $wmic = shell_exec('wmic os get lastbootuptime'); variable130 if ($wmic && preg_match('/(\d{14})/', $wmic, $matches)) {189 …$wmic = shell_exec('wmic process get Caption,KernelModeTime /format:csv | findstr /V "^$" | sort /… variable190 if ($wmic) {191 $lines = explode("\n", trim($wmic));