DataPulse Remote Terminal

Disconnected

📁 File Explorer

Loading drives...
Select a terminal to browse files
📂 Open
đŸ’ģ Open in Terminal
📋 Copy Ctrl+C
âœ‚ī¸ Cut Ctrl+X
📄 Paste Ctrl+V
âœī¸ Rename F2
đŸ—‘ī¸ Delete Del
â„šī¸ Properties
=============================================== DataPulse Remote Terminal v1.0 Type 'help' or click ? for command reference ===============================================
C:\>

Command Reference

Navigation

cd [path]

Change directory

cd Desktop | cd.. | cd\ | cd D:\
dir [path]

List directory contents

dir | dir /w | dir *.txt
tree [path]

Display folder structure

tree | tree /f

File Operations

copy [src] [dst]

Copy files

copy file.txt backup.txt
xcopy [src] [dst] /E /I

Copy folders with contents

xcopy folder1 folder2 /E /I
move [src] [dst]

Move or rename files/folders

move old.txt new.txt
ren [old] [new]

Rename file or folder

ren file.txt newname.txt
type [file]

Display file contents

type config.txt

Delete Operations

del [file]

Delete file(s)

del file.txt | del *.tmp | del /Q *.*
del /Q /S [pattern]

Delete files including subfolders (quiet)

del /Q /S *.log
rd /S /Q [folder]

Delete folder with all contents

rd /S /Q "Old Folder"
rmdir [folder]

Remove empty directory

rmdir emptydir

Create Operations

mkdir [folder]

Create new directory

mkdir NewFolder | md "My Folder"
echo [text] > [file]

Create file with content

echo Hello > test.txt
echo [text] >> [file]

Append to file

echo More text >> test.txt

System Info

systeminfo

Detailed system information

hostname

Computer name

whoami

Current user

ipconfig

Network configuration

ipconfig | ipconfig /all
tasklist

Running processes

tasklist | tasklist /FI "IMAGENAME eq chrome.exe"
wmic [query]

WMI queries

wmic diskdrive get size,model

Network

ping [host]

Test network connectivity

ping google.com | ping -n 4 192.168.1.1
netstat -an

Network connections

tracert [host]

Trace route to host

tracert google.com

Process Control

taskkill /IM [name] /F

Kill process by name

taskkill /IM notepad.exe /F
taskkill /PID [id] /F

Kill process by ID

taskkill /PID 1234 /F
start [program]

Start a program

start notepad | start calc

Archive (7-Zip required)

7z a [archive] [files]

Create archive

7z a backup.zip folder\
7z x [archive]

Extract archive

7z x backup.zip -oC:\extracted

Tips

Use quotes for paths with spaces:

del "My File.txt" | cd "Program Files"

/Q = Quiet (no confirmation)

/S = Include subdirectories

/F = Force