AppData \ Local \ Microsoft \ Windows \ WebCache \에 저장된 IE 10/11 인터넷 기록을 읽는 데 powershell 스크립트를 만들려고합니다. WebCache.dat.ESENT Internet Explorer 10/11 WebCache.dat를 여는 중 항상 EsentPageSizeMismatchException이 throw됩니다.
.NET에서 Win32 Jet API와의 인터페이스를 위해 Managed Esent +를 사용하고 있습니다.
제 문제는 JetAttachDatabase를 호출 할 때 EsentPageSizeMismatchException이 발생하므로 실제로 데이터베이스를 열 수 없다는 것입니다. 이 오류에 대한 조사를 한 후에 IE WebCache의 페이지 크기는 32K입니다. 이 문제를 해결하기 위해 DatabasePageSize 시스템 매개 변수를 0x8000으로 설정하면 JetInit에서 같은 예외가 발생하기 시작했습니다. 여기
내가#stop the things locking the database
stop-process -name taskhost
stop-process -name dllhost
#give powershell access to the interop dlls
add-type -path "$PSScriptRoot\ManagedEsent 1.6\Esent.Interop.dll"
$instance = [Microsoft.Isam.Esent.Interop.JET_INSTANCE]::Nil
#set page size
[Microsoft.Isam.Esent.Interop.api]::JetSetSystemParameter(
$instance,
[Microsoft.Isam.Esent.Interop.JET_SESID]::Nil,
[Microsoft.Isam.Esent.Interop.JET_param]::DatabasePageSize,
0x8000,
$null
)
[Microsoft.Isam.Esent.Interop.Api]::JetCreateInstance([ref]$instance,"testing")
# init the instance, throws EsentPageSizeMismatchException if the page size is not default
[Microsoft.Isam.Esent.Interop.Api]::JetInit([ref]$instance)
$sesid = [Microsoft.Isam.Esent.Interop.JET_SESID]::Nil
[Microsoft.Isam.Esent.Interop.Api]::JetBeginSession($instance,[ref]$sesid,$null,$null)
# throws EsentPageSizeMismatchException if page size is default
[Microsoft.Isam.Esent.Interop.api]::JetAttachDatabase(
$sesid,
"C:\Users\Administrator\AppData\Local\Microsoft\Windows\WebCache\WebCacheV01.dat",
[Microsoft.Isam.Esent.Interop.AttachDatabaseGrbit]::ReadOnly
)
...
그것은 기본이 아닌 페이지 크기를 갖는 좋아하지 않는 ESENT 엔진처럼 보이는이 코드입니다,하지만 난 인터넷을 샅샅이 한과를 할 수없는 것 엔진 페이지 크기를 변경하는 방법. 이 오류의 원인은 무엇입니까?