Changes

Jump to navigation Jump to search
1,060 bytes added ,  10:18, 1 February 2016
no edit summary
Line 8: Line 8:  
   dpkg -i libwmiclient1_1.3.14-3_amd64.deb
 
   dpkg -i libwmiclient1_1.3.14-3_amd64.deb
 
   dpkg -i wmi-client_1.3.14-3_amd64.deb
 
   dpkg -i wmi-client_1.3.14-3_amd64.deb
 +
 +
== Examples ==
 +
=== get the size of the WorkingSet of the process “java.exe” running on the remote host 192.168.20.20 ===
 +
wmic -U Administrator%mysecret //192.168.20.20 "Select WorkingSetSize from Win32_Process Where CommandLine like '%java.exe%'"
 +
=== Get process ID for process ===
 +
wmic -U Administrator%mysecret //10.140.10.10 "Select ProcessId from Win32_Process Where CommandLine like '%java.exe%'"
 +
=== Get WorkingSetSize for process ===
 +
wmic -U Administrator%mysecret //10.140.10.10 "Select WorkingSetSize from Win32_Process Where CommandLine like '%java.exe%'"
 +
=== Get thread count for process ===
 +
wmic -U Administrator%mysecret //10.140.10.10 "Select ThreadCount from Win32_Process Where CommandLine like '%java.exe%'"
 +
=== Get private bytes for process ===
 +
wmic -U Administrator%mysecret //10.140.10.10 "Select PrivateBytes from Win32_PerfFormattedData_PerfProc_Process Where IDProcess='%java.exe%'"
 +
=== Get free physical memory for host ===
 +
wmic -U Administrator%mysecret //10.140.10.10 "Select FreePhysicalMemory from Win32_OperatingSystem"

Navigation menu