🖥️ Room Summary

This room introduces fundamental Windows CLI (Command Line Interface) commands used in real-world Windows environments for basic reconnaissance, file management, system info gathering, and network enumeration. It's ideal for beginners and penetration testers exploring Windows systems.


📂 Task 1 – Introduction

Goal:

Understand why learning Windows CLI is essential.

Notes:

Windows is widely used in enterprises.

Pentesters and attackers must know Windows internals.

This room uses PowerShell & CMD commands.


📂 Task 2 – Navigation

Key Commands:

cd - Change directory dir - List files/folders in a directory cd .. - Move up one directory cd \ - Go to root of current drive cls - Clear screen

Example:

cd C:\Users dir cd ..

Common Mistake:

Using Unix-style commands like ls, pwd, or / — not valid in CMD.


📂 Task 3 – Files & Directories