Enumeration

Introduction

The first step when you have gained initial access to any machine would be to enumerate


Get Number of Users on a Machine

Get-LocalUser

Get Number of Local Groups

Get-LocalGroup

Get IP Address

Get-NetIPAddress

See Applied Patches

Get-Hotfix

Search for all files containing Specific Content

Get-ChildItem C:\* -Recurse | Select-String -pattern SpecificContent

Get list of Running Processes

Get-Process

Get list of Scheduled Tasks

Get-ScheduleTask

Check Owner of a Folder/File

Get-Acl c:/

Last updated