Home
last modified time | relevance | path

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

/plugin/calendar/
H A Dget_system_stats.php93 $wmic = shell_exec('wmic OS get FreePhysicalMemory,TotalVisibleMemorySize /Value'); variable
94 if ($wmic) {
95 preg_match('/FreePhysicalMemory=(\d+)/', $wmic, $free);
96 preg_match('/TotalVisibleMemorySize=(\d+)/', $wmic, $total);
129 $wmic = shell_exec('wmic os get lastbootuptime'); variable
130 if ($wmic && preg_match('/(\d{14})/', $wmic, $matches)) {
189 …$wmic = shell_exec('wmic process get Caption,KernelModeTime /format:csv | findstr /V "^$" | sort /… variable
190 if ($wmic) {
191 $lines = explode("\n", trim($wmic));