Ren*_*ger 5 windows windows-registry regex command-line
是否有工具或方法可以使用正则表达式搜索 Windows 注册表?
您可以将PowerShell用于-match:
dir HKCU:\ -rec -ea SilentlyContinue |
ForEach-Object {
if((get-itemproperty -Path $_.PsPath) -match "\wSomestring\w")
{
$_.PsPath
}
}
Run Code Online (Sandbox Code Playgroud)
这将搜索HKEY_CURRENT_USER蜂巢。
| 归档时间: |
|
| 查看次数: |
7713 次 |
| 最近记录: |