现在运行起来,看上去是正常的,但是按↑键往上翻会翻到我的命令里面-Command 传递的参数
可是我明明已经执行过
[Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory()
清除历史的命令了。
在 powershell.exe 里面直接运行没问题,但是放到注册表里就不行了。
麻烦大家帮我看看哪里错了。
wt new-tab powershell.exe -NoExit -Command Set-Location -literalPath '%V'|Set-PSReadLineOption -HistorySaveStyle SaveNothing|& {[Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory()}
虽然会出现一条记录,并不影响使用,但是不完美呀。
# 已经解决,Powershell新窗口不保存历史记录。
wt new-tab powershell.exe -NoExit -Command Set-Location -literalPath '%V'|powershell.exe -Command Set-PSReadLineOption -HistorySaveStyle SaveNothing|& {[Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory()}
# 如果没有装Windows Terminal,去掉最前面的wt new-tab。
# 应该有人用得着吧~~
wt new-tab powershell.exe -NoExit -Command Set-Location -literalPath '%V'|echo "" > (Get-PSReadlineOption).HistorySavePath
计算机\HKEY_CLASSES_ROOT\Directory\Background\shell\Powershell\command
1
youla OP 我先去洗洗睡,明天早上我必须要看到解决方案,我的程序员们!/doge
|
2
youla OP 早上好~
|
3
Lain00 2020-09-18 08:11:15 +08:00 via Android
这个脚本我看不懂
我实践中发现 ClearHistory 不能清除历史记录 Remove-Item (Get-PSReadlineOption).HistorySavePath 这是我在网上找到的可以清楚历史记录的 |
4
youla OP @Lain00 [Microsoft.PowerShell.PSConsoleReadLine]::ClearHistory()是清空输入的历史,不是历史记录文件,就是按上键往上翻的那个记录。
|
5
youla OP @Lain00 我已经使用了 Set-PSReadLineOption -HistorySaveStyle SaveNothing,是不存储历史记录。
|
6
Lain00 2020-09-18 14:59:00 +08:00 via Android
我不懂😂
让会的人来回答吧 |