Posts tagged process
Misys Tiger Kill User Process
Dec 31st
Summary
This article explains how to kill a Misys Tiger® process from the IBM® AIX® server.
Instructions
To kill a user’s process in Misys Tiger:
Log on to the main console as root. (At the console login prompt, type root, and then press ENTER.)
The following prompt will be displayed:
# NOTE: ^ = SPACE
| = depress the shift and the More >
Get Process CPU Usage Using WMI
Mar 10th
Here’s a quick command line method for grabbing CPU usage of a process by process id, process name, or caption.
By Process ID
wmic path win32_perfformatteddata_perfproc_process where (IDProcess = ‘3488′) get Name, Caption, PercentProcessorTime, IDProcess /format:list
By Process Name
wmic path win32_perfformatteddata_perfproc_process where (Name=’iexplore’) get Name, Caption, PercentProcessorTime, IDProcess /format:list
By Process Name (fuzzy)
wmic path win32_perfformatteddata_perfproc_process where (Name like More >