Ethical Hacking Tools List

How to remotely access another computer without permission using cmd

Today I am going to show you, How you can access any computer to your network by CMD.



For this we need to PSTools download from here


PSTool is a Microsoft Products

The tools included in the PsTools suite, which are downloadable as a package, are:

PsExec - execute processes remotely

PsFile - shows files opened remotely

PsGetSid - display the SID of a computer or a user

PsInfo - list information about a system

PsPing - measure network performance

PsKill - kill processes by name or process ID

PsList - list detailed information about processes

PsLoggedOn - see who's logged on locally and via resource sharing (full source is included)

PsLogList - dump event log records

PsPasswd - changes account passwords

PsService - view and control services

PsShutdown - shuts down and optionally reboots a computer

PsSuspend - suspends processes

PsUptime - shows you how long a system has been running since its last reboot


Now we will be use PsExec - (execute processes remotely) feature for access any computer.


Copy this code and and Paste in notepad and save file like karimzi.bat extension.


@echo off

title Remote PC CMD Access

color 1b

echo Design BY Mohammad Ziual Karim

echo #################################

: execute

echo Please Type Remote PC Name or IP Here:

set /p pc=Remote PC Name or IP:

D:\PSTools\psexec.exe \\%pc% cmd

goto execute


download PSTool put in D drive.

then open karimzi.bat then type Executer name and remote pc name or IP then hit enter.

Video Tutorial 





Comments