cmd - Find PID by searching for a process keyword -
in task manager, find several processes running, process description not short on server , difficult identify process based on description.
is there script through can search pid searching keyword in description. eg: searching keyword "weblogic"
you can use below command find out weblogic process pid using port on windows:
netstat -ano|find /i "7001"
where 7001 weblogic port. check last column of output pid
Comments
Post a Comment