Home
last modified time | relevance | path

Searched refs:wmic (Results 1 – 1 of 1) sorted by relevance

/plugin/calendar/
Dget_system_stats.php77 $wmic = shell_exec('wmic OS get FreePhysicalMemory,TotalVisibleMemorySize /Value'); variable
78 if ($wmic) {
79 preg_match('/FreePhysicalMemory=(\d+)/', $wmic, $free);
80 preg_match('/TotalVisibleMemorySize=(\d+)/', $wmic, $total);
113 $wmic = shell_exec('wmic os get lastbootuptime'); variable
114 if ($wmic && preg_match('/(\d{14})/', $wmic, $matches)) {
173 …$wmic = shell_exec('wmic process get Caption,KernelModeTime /format:csv | findstr /V "^$" | sort /… variable
174 if ($wmic) {
175 $lines = explode("\n", trim($wmic));