Initial Enumeration

Check running processes

tasklist /svc

Check env variables

set

Detailed config info / patches

systeminfo

Check for patches with wmic

wmic qfe

Check hotfixes

Get-HotFix | ft -AutoSize

Display installed software

wmic product get name

Check installe software with PowerShell

Get-WmiObject -Class Win32_Product |  select Name, Version

Display active TCP / UDP connections

netstat -ano

Get logged-in users

query user

Get current user

echo %USERNAME%

Get current user privileges

whoami /priv

Get current user group info

whoami /groups

Get all users

net user

Get all groups

net localgroup

Get details about group

net localgroup administrators

Get password policy and account info

net accounts