Windows Mobile Internet Explorer 历史记录

发布于 2024-11-07 06:31:14 字数 135 浏览 1 评论 0原文

如何使用在 Compact Framework 1.0 上运行的 C# 获取 Windows Mobile 5.0 上的 Internet Explorer 历史记录?我只需要获取最近访问的 URL。即使你只知道它存储在哪里,我也可以从那里找出其余的内容。

How do I grab Internet Explorer's history on Windows Mobile 5.0 in C# running on the Compact Framework 1.0? I only need to get the most recently visited URL. Even if you just know where this is stored, I might be able to figure out the rest from there.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梅倚清风 2024-11-14 06:31:14

它通常应该存储在“\windows\profiles\guest\History*”中,

但是最好使用以下命令从注册表中检索此位置:

using Microsoft.Win32;

RegistryKey foldersKey = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders");
string historyFolder = foldersKey.GetValue("History");

It should normally be stored in '\windows\profiles\guest\History*'

It might however be better to retreive this location from the registry using:

using Microsoft.Win32;

RegistryKey foldersKey = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders");
string historyFolder = foldersKey.GetValue("History");
玩世 2024-11-14 06:31:14

如果它存储在注册表中(我不是说它是这样,但这是一个合理的调查位置),那么通过以下步骤找到它很容易:

  • 将远程注册表编辑器附加到设备/模拟器
  • 将整个注册表导出到 PC 上的文件
  • 使用设备上的浏览器生成更多历史记录
  • 将整个注册表再次导出到 PC 上的文件
  • 使用您最喜欢的 DIFF 程序比较两个注册表转储

如果历史记录存储在注册表中,它会很快出现,因为唯一的变化文件之间。

If it's stored in the registry (I'm not saying it is, but it's a reasonable place to investigate), then finding it is easy with the following steps:

  • Attach the Remote Registry Editor to the device/emulator
  • Export the entire registry to a file on your PC
  • Use the browser on the device to generate more history
  • Export the entire registry again to a file on your PC
  • Use your favorite DIFF program to compare the two registry dumps

If history is stored in the registry, it will come up quickly as the only changes between the files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文