Using Windows Command Line

Machines

You can connect to the exam machine via SSH (Secure Shell) using the following information. SSH Username: Administrator SSH Password: password123!


Connect to the exam machine

We’ll use SSH (Secure Shell) to open a remote session to the Windows server.

  1. On your local computer, open Command Prompt or PowerShell.

  2. Type this and press Enter:

  3. When it asks for a password, type:

    ✅ If you connect successfully, you’ll see something like:


Question-by-Question Approach

🟩 Question 1 — What command corresponds to the alias 'HoldenManeuver'?

Aliases are short names for PowerShell commands. Run:

If it exists, you’ll see something like:

circle-exclamation

Try another method:

Run this:


🟩 Question 2 — How many books are found under Documents\Books?

Run this:

You’ll see:

circle-exclamation


🟩 Question 3 — Which cmdlet is used to display a list of processes on the system?

Run:

➡️ This command lists all running programs. So the cmdlet is Get-Process.

circle-exclamation


🟩 Question 4 — How many services have 'MCRN' in their name?

Run:

You’ll get:

circle-exclamation

You can see them with:


🟩 Question 5 — How many active users are there in the Active Directory environment?

If the system is joined to Active Directory:

➡️ It returns something like Count : 8

If it gives an error “module not found”, it means AD tools aren’t installed — that’s okay, just note that the system might not be a domain controller.


🟩 Question 6 — Which local group mentions “certificates”

Run:

Example output:

➡️ Answer: Certificate Service DCOM Access


🟩 Question 7 — Which command downloads files

PowerShell can download using these:

➡️ The cmdlet is Invoke-WebRequest

(Alternative: Start-BitsTransfer also works.)


🟩 Question 8 — Get the build number

Run:

Output example:

➡️ Answer: 19045


🟩 Question 9 — Find installed HotFixID

Run:

Example:

➡️ Answer: KB5034441


🟩 Question 10 — Is Windows Defender running?

Run:

If it shows:

➡️ Answer = Yes

If it shows “Stopped” or “Disabled”, answer No.


🟩 Question 11 — Which user has read-only access to “Abaddon’s Gate”

Run:

You’ll see something like:

➡️ Answer: User1

If there’s an extension (like .txt), include it:


Last updated