> For the complete documentation index, see [llms.txt](https://cheats.philkeeble.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cheats.philkeeble.com/windows/untitled.md).

# Enumeration

## Finding Files

```
# Search for strings
cd C:\
dir /s *string*

## From PowerShell
cmd /c dir /s *string*

# Search for filetype
dir /s *.txt
```

## Listing all User files

```
cd C:\Users

get-childitem *\*\*
```

## Finding Content in Files

```
# From cmd.exe
findstr /s string * 2>nul
```

## Capture Packets

```
# Capture

# Convert to PCAP

```

## DNS Records

```
Get-DNSServerZone
Get-DNSServerZoneResourceRecord -ZoneName <name>
```
