Help in Sysinternals tool says “Navigation to the webpage was canceled”
By Michael Pietroforte | 4 Comments | Permalink | Trackback | Previous | Next
When I tried the new Procmon 2.6, I couldn’t access the tool’s help file, which is a problem I have often encountered when downloading a Sysinternals tool. I have figured out now what went wrong and I thought I should note down the solution once and for all. I think, my blog is the best place for it because I am probably not the only one who run into this problem: The table of contents in the left plane is displayed correctly, but the contents pane only shows “Navigation to webpage was cancelled – What you can try: Retype address.”
I don’t know how I could retype an address in the Windows help interface; however, I don’t think that would work, anyway. The cause of the problem is related to Vista’s “Preserve zone information in file attachment” feature, which is a security feature that ensures that downloaded files of certain types can’t be opened. The help files of Sysinternal tools are compiled HTML, which Vista considers a threat.
There are several ways to convince Vista that opening a Sysinternals help file is relatively safe. The easiest way is simply to unblock the .chm file in its properties menu (see screenshot). I like the explanation there: “This file came from another computer and might be blocked to help protect this computer.” I suppose most of the files on my computer come from another computer. I am glad that Vista doesn’t consider them a threat as well.
If you don’t want to be bothered by this problem again, you can just disable this zone information-in-file-attachment thing using the Group Policy Object editor (type “gpedit.msc” at the Start Search prompt). The setting can be found under User Configuration | Administrative Templates | Windows Components | Attachment Manager. Don’t forget to run gpupdate /force on the command prompt if you want the setting to take effect immediately.
Daniel Petri has described this Vista feature in more detail and offers two more methods for disabling it.




Subscribe via e-mail: 




I’ve often found that Vista/Windows 7 don’t like displaying CHM content from a network drive – move the file locally and the OS is happy. Presumably something to do with IE trusted zones?
Had to roll this fix out and used a registry key change.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions]
“MaxAllowedZone”=dword:00000001
Worked for our XP SP2 computers….
James, The CHM file was on my local drive and I tried it on different machines. I also had a similar problem with network drives before, but this one was different. I think you are right, it has something to do with IE trusted zones.
GS, thanks for the tip.
Thank you very much for your explanation, it saved me quite some frustrating!