Estimated reading time: 1 minuteI found a really good toolset which may come in handy when it comes to doing things remotely. This may help admins and other IT staff that need to do things remotely.Download the PS tools, which can be found easily and downloaded from the internet.1) PsExecThe below command will give us the cmd of the remote machine. If you want to execute the program on the remote machine, then just add -i -s -d after the psexec command.command : psexec \remoteIP -u username -p password cmd2) Getting the security ID (psgetsid)command : psgetsid \remoteIP -u username -p password3) pskill - killing the process with process IDcommand : pskill \remoteIP -u username -p password processID4) psservice - finding if a particular service is present or notcommand : psservice \remoteIP -u username -p password service_name5) psshutdowncommand : psshutdown \remoteIPThanks :)Comment below if you have any questions or suggestions.