Vì vậy, tôi đã tìm thấy phương pháp tìm kiếm tuyệt vời này là persisting history in Windows PowerShell.Lịch sử liên tục Windows PowerShell
# Persistent History
# Save last 200 history items on exit
$MaximumHistoryCount = 200
$historyPath = Join-Path (split-path $profile) history.clixml
# Hook powershell's exiting event & hide the registration with -supportevent (from nivot.org)
Register-EngineEvent -SourceIdentifier powershell.exiting -SupportEvent -Action {
Get-History -Count $MaximumHistoryCount | Export-Clixml (Join-Path (split-path $profile) history.clixml)
}
# Load previous history, if it exists
if ((Test-Path $historyPath)) {
Import-Clixml $historyPath | ? {$count++;$true} | Add-History
Write-Host -Fore Green "`nLoaded $count history item(s).`n"
}
# Aliases and functions to make it useful
New-Alias -Name i -Value Invoke-History -Description "Invoke history alias"
Rename-Item Alias:\h original_h -Force
function h { Get-History -c $MaximumHistoryCount }
function hg($arg) { Get-History -c $MaximumHistoryCount | out-string -stream | select-string $arg }
Tuy nhiên khi tôi dán vào $ PROFILE của tôi và khởi động lại PowerShell tôi nhận được lỗi sau
Register-EngineEvent : Missing an argument for parameter 'Action'. Specify a parameter of type 'System.Management.Automation.ScriptBlock' and try again. At D:\path\to\WindowsPowerShell\Microsoft.PowerShell_profile.ps1:20 char:73 + Register-EngineEvent -SourceIdentifier powershell.exiting -SupportEvent -Action + ~~~~~~~ + CategoryInfo : InvalidArgument: (:) [Register-EngineEvent], ParameterBindingException + FullyQualifiedErrorId : MissingArgument,Microsoft.PowerShell.Commands.RegisterEngineEventCommand
FYI, PowerShell v3 sửa chữa một số vấn đề bạn đang cố gắng làm việc xung quanh. $ MaximumHistoryCount là 4096 theo mặc định và theo mặc định Get-History trả về tất cả các mục. –
> $ PSVersionTable.PSVersion Major = 3, Nhỏ = 0, Xây dựng = -1, Revision = -1 – alexleonard
Tuyệt. Sau đó, bạn có thể bỏ qua sửa đổi $ MaximumHistoryCount và Get-History sẽ trả lại tất cả lịch sử cho bạn (tốt, lên đến 4096 bài). Trừ khi đó là, bạn muốn giới hạn số tiền được lưu. :-) –