| [`sys mem`](/commands/docs/sys_mem.md) | | | `Get-ComputerInfo` | `free` |
| [`table`](/commands/docs/table.md) | | | `Format-Table`, `ft`, `Format-List`, `fl` | |
| [`take`](/commands/docs/take.md) | `top`, `limit` | `Take` | `Select-Object -First` | `head` |
| [`take until`](/commands/docs/take_until.md) | | `TakeWhile` | | |
| [`take while`](/commands/docs/take_while.md) | | `TakeWhile` | | |
| [`timeit`](/commands/docs/timeit.md) | | | `Measure-Command` | `time` |
| [`to`](/commands/docs/to.md) | | | `Export`/`ConvertTo-{Csv,Xml,Html,Json}` | |
| [`touch`](/commands/docs/touch.md) | | | `Set-Content` | `touch` |
| [`uniq`](/commands/docs/uniq.md) | `distinct` | `Distinct` | `Get-Unique`, `gu` | `uniq` |
| [`update`](/commands/docs/update.md) | | | `ForEach-Object` | |
| [`upsert`](/commands/docs/upsert.md) | `As` | | `ForEach-Object` | |
| [`version`](/commands/docs/version.md) | `select @@version` | | `$PSVersionTable` | |
| `$env.FOO = "bar"`<br />[`with-env`](/commands/docs/with-env.md) | | | `$env:FOO = 'bar'` | `export FOO "bar"` |
| [`where`](/commands/docs/where.md) | `where` | `Where` | `Where-Object`, `where`, `?` operator | |
| [`which`](/commands/docs/which.md) | | | `Get-Command` | `which` |