If you are familiar with the Linux command-line world, PsList and PsKill will have some similarities in function to ps and kill but not syntax. Personally I think PsList and PsKill are far more intuitive, and they are extremely helpful when managing Windows Server Core installations.PsList will list all processes on either local or remote hosts. In Linux you could ps -ax | grep [name] to find a process with a specific name, and with PsList you can simply pslist \\remotehost processname. Using the very helpful -t flag, you will list the processes and their descendants. Using...