删除文本字段历史记录

问题描述 投票:0回答:2

如果我按Powershell中的向上箭头,则会显示最后一条命令。其他程序会删除此“历史记录”,但似乎powershell不会。我想知道如何删除此数据(重启不起作用)。

windows powershell caching command-line-interface
2个回答
0
投票

您可以通过按Alt + F7清除此历史记录。这是最简单的方法,无需命令。


编辑:感谢Midacts为此指出了命令:

[Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory()

有关更多信息,您可能想看一下这篇文章:PowerShell's Clear-History doesn't clear history


0
投票

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/clear-history?view=powershell-7

使用命令Clear-History“从PowerShell会话中删除命令历史记录。”

PowerShell's Clear-History doesn't clear history

[Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory()可用于清除当前会话的历史记录”

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.