Does anybody knows how can I delete or clear my Ida Pro "search" history? I have too many addresses, numbers and words in my "Text Search", but I can't delete or clear them, and I can't find any info about this on Google.
How to delete Ida Pro "search" history?
2.5k Views Asked by RookieUser At
3
There are 3 best solutions below
0
On
Michael's answer is correct, it's just not quite right. under IDA Pro v 7.2
- HKEY_CURRENT_USER\Software\Hex-Rays\IDA\History
- HKEY_CURRENT_USER\Software\Hex-Rays\IDA\History64
delete all files in that folder
0
On
Powershell script
the third command will remove all historical records including things you've searched for, so before you run that one go to:
HKCU:\Software\Hex-Rays\IDA\
and look at the things in the History_ folders to get an idea of what it removes
Remove-Item -Path "HKCU:\Software\Hex-Rays\IDA\History\" -Recurse
Remove-Item -Path "HKCU:\Software\Hex-Rays\IDA\History64\" -Recurse
get-childitem "HKCU:\Software\Hex-Rays\IDA\" -Rec -EA SilentlyContinue | ForEach-Object { if ($_.PsChildName -match "History_") {remove-item $_.PsPath } }
It's stored inside of your registry. Using
regeditgo toHKEY_CURRENT_USER > Software > Hex-Rays > IDAIn there, delete the folder labelled 'A'.