300-220 · Question #62
Which PowerShell cmdlet is useful for gathering system information during threat hunting?
The correct answer is D. Get-Process. Get-Process is the correct answer because it retrieves detailed information about running processes on a system, making it essential during threat hunting to identify suspicious or malicious processes, unusual parent-child process relationships, and processes consuming…
Question
Which PowerShell cmdlet is useful for gathering system information during threat hunting?
Options
- AGet-Info
- BGet-SystemInfo
- CGet-Host
- DGet-Process
How the community answered
(29 responses)- A3% (1)
- B3% (1)
- C7% (2)
- D86% (25)
Explanation
Get-Process is the correct answer because it retrieves detailed information about running processes on a system, making it essential during threat hunting to identify suspicious or malicious processes, unusual parent-child process relationships, and processes consuming unexpected resources. Get-Info (A) and Get-SystemInfo (B) are not real PowerShell cmdlets - they don't exist natively in PowerShell, making them easy traps for guessing. Get-Host (C) is a real cmdlet but returns information about the PowerShell host environment itself (version, culture, UI settings), not system processes or activity useful for threat hunting.
Memory tip: Think "hunters track processes, not hosts" - Get-Process tells you what's running, which is the first question any threat hunter asks when investigating a potentially compromised machine.
Topics
Community Discussion
No community discussion yet for this question.