CHM files on network

G

Guest

Hi all!

This isn’t exactly the first post on this subject but I can get this to work
:(

I’ve followed the solutions but with no luck.

My chm files are placed in the share dok$ on the server called server1 in
the subdirectory Dok1.

This is my registry:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\HHRestrictions]
"MaxAllowedZone"=dword:00000004
"UrlAllowList"=\\\\server1\\dok$\\;file://\\\\server1\\dok$

(it’s a export hence the “\\\\â€)
As far as I understand the first row should by itself make the problem
disappear!?

Regards
/Jens
 
G

Guest

The problem being that the right pane only shows "Action cancelled" when the
file isn't placed on a local drive.
 
T

Torgeir Bakken \(MVP\)

JensA said:
Hi all!

This isn’t exactly the first post on this subject but I can get this to work
:(

I’ve followed the solutions but with no luck.

My chm files are placed in the share dok$ on the server called server1 in
the subdirectory Dok1.

This is my registry:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\HHRestrictions]
"MaxAllowedZone"=dword:00000004
"UrlAllowList"=\\\\server1\\dok$\\;file://\\\\server1\\dok$

(it’s a export hence the “\\\\â€)
As far as I understand the first row should by itself make the problem
disappear!?
Hi,

Deploying the setting in the registry file listed below will solve
the problem as long as your network drive or UNC path is defined as
"Local intranet zone" (it should be).

To see what zone you have for the path, in Explorer, select
"Status Bar" under the View menu and then go to the folder where the
help files are located. If it says "Internet" in the Status bar, you
will need to add your domain or server to the "Local intranet zone".


--------------------8<----------------------
REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions]
"MaxAllowedZone"=dword:00000002

--------------------8<----------------------

The setting above will open up for Local Machine zone, Local intranet
zone, and Trusted sites zone, but *not* the Internet zone.

More about this registry setting here:

http://support.microsoft.com/kb/896358

and here:
http://support.microsoft.com/kb/896054
 
G

Guest

Hi again,

Yes when browsing the folder of the chm-file the status bar says “Local
intranet zone†I even tried adding the path as a trusted site… No luck :)

Did I misunderstand the role of MaxAllowedZone, isn’t 4 suppose to mean that
regardless of where the chm-files are located they are allowed to run?

/Jens

Torgeir Bakken (MVP) said:
JensA said:
Hi all!

This isn’t exactly the first post on this subject but I can get this to work
:(

I’ve followed the solutions but with no luck.

My chm files are placed in the share dok$ on the server called server1 in
the subdirectory Dok1.

This is my registry:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\HHRestrictions]
"MaxAllowedZone"=dword:00000004
"UrlAllowList"=\\\\server1\\dok$\\;file://\\\\server1\\dok$

(it’s a export hence the “\\\\â€Â)
As far as I understand the first row should by itself make the problem
disappear!?
Hi,

Deploying the setting in the registry file listed below will solve
the problem as long as your network drive or UNC path is defined as
"Local intranet zone" (it should be).

To see what zone you have for the path, in Explorer, select
"Status Bar" under the View menu and then go to the folder where the
help files are located. If it says "Internet" in the Status bar, you
will need to add your domain or server to the "Local intranet zone".


--------------------8<----------------------
REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions]
"MaxAllowedZone"=dword:00000002

--------------------8<----------------------

The setting above will open up for Local Machine zone, Local intranet
zone, and Trusted sites zone, but *not* the Internet zone.

More about this registry setting here:

http://support.microsoft.com/kb/896358

and here:
http://support.microsoft.com/kb/896054



--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scriptcenter/default.mspx
 
G

Guest

Hi Jens,

Remove the URLAllowed entry and just use the MaxAllowedZone with value 1 or 2

Regards,

Wim

JensA said:
Hi again,

Yes when browsing the folder of the chm-file the status bar says “Local
intranet zone†I even tried adding the path as a trusted site… No luck :)

Did I misunderstand the role of MaxAllowedZone, isn’t 4 suppose to mean that
regardless of where the chm-files are located they are allowed to run?

/Jens

Torgeir Bakken (MVP) said:
JensA said:
Hi all!

This isn’t exactly the first post on this subject but I can get this to work
:(

I’ve followed the solutions but with no luck.

My chm files are placed in the share dok$ on the server called server1 in
the subdirectory Dok1.

This is my registry:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\HHRestrictions]
"MaxAllowedZone"=dword:00000004
"UrlAllowList"=\\\\server1\\dok$\\;file://\\\\server1\\dok$

(it’s a export hence the “\\\\â€Â)
As far as I understand the first row should by itself make the problem
disappear!?
Hi,

Deploying the setting in the registry file listed below will solve
the problem as long as your network drive or UNC path is defined as
"Local intranet zone" (it should be).

To see what zone you have for the path, in Explorer, select
"Status Bar" under the View menu and then go to the folder where the
help files are located. If it says "Internet" in the Status bar, you
will need to add your domain or server to the "Local intranet zone".


--------------------8<----------------------
REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions]
"MaxAllowedZone"=dword:00000002

--------------------8<----------------------

The setting above will open up for Local Machine zone, Local intranet
zone, and Trusted sites zone, but *not* the Internet zone.

More about this registry setting here:

http://support.microsoft.com/kb/896358

and here:
http://support.microsoft.com/kb/896054



--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scriptcenter/default.mspx
 
G

Guest

Hi all,

Finally I found the solution… The value was correct but wasn’t in the
correct key :(

This is the correct path:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions
MaxAllowedZone=2

/Jens


wim_vdp said:
Hi Jens,

Remove the URLAllowed entry and just use the MaxAllowedZone with value 1 or 2

Regards,

Wim

JensA said:
Hi again,

Yes when browsing the folder of the chm-file the status bar says “Local
intranet zone†I even tried adding the path as a trusted site… No luck :)

Did I misunderstand the role of MaxAllowedZone, isn’t 4 suppose to mean that
regardless of where the chm-files are located they are allowed to run?

/Jens

Torgeir Bakken (MVP) said:
JensA wrote:

Hi all!

This isn’t exactly the first post on this subject but I can get this to work
:(

I’ve followed the solutions but with no luck.

My chm files are placed in the share dok$ on the server called server1 in
the subdirectory Dok1.

This is my registry:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\HHRestrictions]
"MaxAllowedZone"=dword:00000004
"UrlAllowList"=\\\\server1\\dok$\\;file://\\\\server1\\dok$

(it’s a export hence the “\\\\â€Â)
As far as I understand the first row should by itself make the problem
disappear!?

Hi,

Deploying the setting in the registry file listed below will solve
the problem as long as your network drive or UNC path is defined as
"Local intranet zone" (it should be).

To see what zone you have for the path, in Explorer, select
"Status Bar" under the View menu and then go to the folder where the
help files are located. If it says "Internet" in the Status bar, you
will need to add your domain or server to the "Local intranet zone".


--------------------8<----------------------
REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions]
"MaxAllowedZone"=dword:00000002

--------------------8<----------------------

The setting above will open up for Local Machine zone, Local intranet
zone, and Trusted sites zone, but *not* the Internet zone.

More about this registry setting here:

http://support.microsoft.com/kb/896358

and here:
http://support.microsoft.com/kb/896054



--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scriptcenter/default.mspx
 
T

Torgeir Bakken \(MVP\)

JensA said:
Hi all,

Finally I found the solution… The value was correct but wasn't
in the correct key :(

This is the correct path:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions
MaxAllowedZone=2

/Jens
Hi,

And that is exactly the same key as in the reg file I posted
previously in this tread (repeated below).

--------------------8<----------------------
REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions]
"MaxAllowedZone"=dword:00000002

--------------------8<----------------------
 
G

Guest

How very true you are…

Sometimes it’s nice to use an alias ;)
I guess I didn’t look that carefully when the value was the same, me bad.

Thanks for your help
/JensA


Torgeir Bakken (MVP) said:
JensA said:
Hi all,

Finally I found the solution… The value was correct but wasn't
in the correct key :(

This is the correct path:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions
MaxAllowedZone=2

/Jens
Hi,

And that is exactly the same key as in the reg file I posted
previously in this tread (repeated below).

--------------------8<----------------------
REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions]
"MaxAllowedZone"=dword:00000002

--------------------8<----------------------



--
torgeir, Microsoft MVP Scripting and WMI, Porsgrunn Norway
Administration scripting examples and an ONLINE version of
the 1328 page Scripting Guide:
http://www.microsoft.com/technet/scriptcenter/default.mspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top