> For the complete documentation index, see [llms.txt](https://pnpt.adot8.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pnpt.adot8.com/windows-privilege-escalation/initial-enumeration-manual/system-enumeration.md).

# System Enumeration

## Gather Basic System Information

```powerquery
systeminfo
```

Only the essentials

```powerquery
systeminfo | findstr /B /C:"OS Name" /C:"OS Version" /C:"System Type"
```

## View Patching

```powerquery
wmic qfe get Caption,Description,HotFixID,InstalledOn
```

## View Connected Drives&#x20;

```powerquery
wmic logicaldisk get caption,description,providername
```
