如何在Vista/Win7上删除IE地址栏历史记录?

发布于 2024-09-17 06:09:44 字数 903 浏览 7 评论 0原文

我在 stackoverflow

首先,这是我看到的图片 http://img713.imageshack.us/ img713/4797/iedrop.png

我需要一个解决方案来清除地址栏 dropdawn,但不使用 ClearMyTracksByProcess 或 IE 对话框。我只需要删除一个特定的 URL 及其所有痕迹。

我手动删除了该 URL 的所有痕迹:

  1. Users\user\AppData\Local\Microsoft\Windows\Temporary Internet Files*
  2. Users\user\AppData\Local\Microsoft\Windows\History*
  3. Users\user\Recent*

该 URL 也可以可以在以下位置找到:

4) Users\user\AppData\Local\Microsoft\Internet Explorer\Recovery\High*

现在我制作了一个 BootTime 程序,可以在我的所有系统光盘文件中搜索 8 位和 16 位字符集字符串。在任何地方都找不到 URL,但在登录并启动 IE 后,该 URL 仍然存在。我怀疑这与4)有关,但不明白如何。

PS:这不是 TypedUrl。我知道在哪里以及如何删除 TypedUrl。

I asked same question on stackoverflow.

First, here is a picture of what I see http://img713.imageshack.us/img713/4797/iedrop.png

I need an solution to clear addressbar dropdawn, but not using ClearMyTracksByProcess or IE dialogs. I need to delete only a specific URL and all his traces.

I deleted manually all traces of that URL in:

  1. Users\user\AppData\Local\Microsoft\Windows\Temporary Internet Files*
  2. Users\user\AppData\Local\Microsoft\Windows\History*
  3. Users\user\Recent*

also that URL can be found in:

4) Users\user\AppData\Local\Microsoft\Internet Explorer\Recovery\High*

Now I made an BootTime program that searches for 8 and 16 bit charsets string in all my system disc files. URL wasn't found anywhere, but after logging and starting IE, the URL is still there. I suspect this is related to 4), but can't understand how.

PS: This IS NOT TypedUrls. I know where are and how to delete TypedUrls.

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

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

发布评论

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

评论(4

毁梦 2024-09-24 06:09:44

在您的屏幕截图中,您可以在要删除的条目的最右侧看到一个红色的X。单击该按钮。当然,您需要按照与首先制作屏幕截图相同的方式下拉列表。

In your screenshot, you can see - at the far right side of the entry you want to get rid of - a red X. Click that. You will need to drop the list down the same way you did to make the screenshot first of course.

恋你朝朝暮暮 2024-09-24 06:09:44

最后我找到了解决方案。

HRESULT CreateCatalogManager(ISearchCatalogManager **ppSearchCatalogManager)
{
    *ppSearchCatalogManager = NULL;

    ISearchManager *pSearchManager;
    HRESULT hr = CoCreateInstance(CLSID_CSearchManager, NULL, CLSCTX_SERVER, IID_PPV_ARGS(&pSearchManager));
    if (SUCCEEDED(hr))
    {
        hr = pSearchManager->GetCatalog(L"SystemIndex", ppSearchCatalogManager);
        pSearchManager->Release();
    }
    return hr;
}

{

    ISearchCatalogManager *pCatalogManager;
    HRESULT hr = CreateCatalogManager(&pCatalogManager);

    if (SUCCEEDED(hr))
    {
        pCatalogManager->Reset();
        pCatalogManager->Release();
    }
}

Finally I found solution.

HRESULT CreateCatalogManager(ISearchCatalogManager **ppSearchCatalogManager)
{
    *ppSearchCatalogManager = NULL;

    ISearchManager *pSearchManager;
    HRESULT hr = CoCreateInstance(CLSID_CSearchManager, NULL, CLSCTX_SERVER, IID_PPV_ARGS(&pSearchManager));
    if (SUCCEEDED(hr))
    {
        hr = pSearchManager->GetCatalog(L"SystemIndex", ppSearchCatalogManager);
        pSearchManager->Release();
    }
    return hr;
}

{

    ISearchCatalogManager *pCatalogManager;
    HRESULT hr = CreateCatalogManager(&pCatalogManager);

    if (SUCCEEDED(hr))
    {
        pCatalogManager->Reset();
        pCatalogManager->Release();
    }
}
最初的梦 2024-09-24 06:09:44

它们存储在注册表

HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Typed URLs

中。

They are stored in the registry

HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Typed URLs

.

国粹 2024-09-24 06:09:44

不需要通过转到 C 驱动器并从那里删除来删除地址栏历史记录,您必须遵循所有的仪式轨迹。只需下载任何历史记录清理器,就像防病毒扫描仪扫描您的浏览历史记录一样。

don not need to delete address bar history by going to C drive and remove from there in which you must have to follow the all the rite track. just download any history cleaner and just like antivirus scanner scan your browsing history.

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