mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-27 02:33:39 +02:00
17 lines
348 B
Markdown
17 lines
348 B
Markdown
![]() |
# Get-History
|
||
|
|
||
|
> Display PowerShell command history.
|
||
|
> More information: <https://docs.microsoft.com/powershell/module/microsoft.powershell.core/get-history>.
|
||
|
|
||
|
- Display the commands history list with ID:
|
||
|
|
||
|
`Get-History`
|
||
|
|
||
|
- Get PowerShell history item by ID:
|
||
|
|
||
|
`Get-History -Id {{id}}`
|
||
|
|
||
|
- Display the last N commands:
|
||
|
|
||
|
`Get-History -Count {{count}}`
|