Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Database & SysAdmin
  3. System Admin
  4. W2K3: Opening a chm file from a network location, creating .reg files

W2K3: Opening a chm file from a network location, creating .reg files

Scheduled Pinned Locked Moved System Admin
tutorialcomsysadminsecurityquestion
5 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    kfaday
    wrote on last edited by
    #1

    I want to open a chm file from a network location. Due to a recent ms security path, you can't do it. I was reading the following microsoft article which explains the workaround. http://support.microsoft.com/kb/896054/ i want to use the solution listed in "Example 1: How to use UrlAllowList to enable specific URLs" The reg file i created is: REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="\\\\beyond15\\GASPNet 7\\;file://\\\\beyond15\\GASPNet 7" It works if i access the folder via \\beyond15\GASPNet 7\ and then execute the chm, but if i create a network drive (i.e. z:\) with that folder, i can open the file but i get the message action cancelled. any ideas? Thank you very much -- modified at 15:30 Wednesday 21st December, 2005

    L 1 Reply Last reply
    0
    • K kfaday

      I want to open a chm file from a network location. Due to a recent ms security path, you can't do it. I was reading the following microsoft article which explains the workaround. http://support.microsoft.com/kb/896054/ i want to use the solution listed in "Example 1: How to use UrlAllowList to enable specific URLs" The reg file i created is: REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="\\\\beyond15\\GASPNet 7\\;file://\\\\beyond15\\GASPNet 7" It works if i access the folder via \\beyond15\GASPNet 7\ and then execute the chm, but if i create a network drive (i.e. z:\) with that folder, i can open the file but i get the message action cancelled. any ideas? Thank you very much -- modified at 15:30 Wednesday 21st December, 2005

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      kfaday wrote:

      It works if i access the folder via \\beyond15\GASPNet 7\ and then execute the chm, but if i create a network drive (i.e. z:\) with that folder, i can open the file but i get the message action cancelled.

      In my opinion, you should try to change the path in your regiedit to the specifi drive that you mapped.

      K 1 Reply Last reply
      0
      • L Lost User

        kfaday wrote:

        It works if i access the folder via \\beyond15\GASPNet 7\ and then execute the chm, but if i create a network drive (i.e. z:\) with that folder, i can open the file but i get the message action cancelled.

        In my opinion, you should try to change the path in your regiedit to the specifi drive that you mapped.

        K Offline
        K Offline
        kfaday
        wrote on last edited by
        #3

        Would you mind telling me how to do that? Thanks

        L 1 Reply Last reply
        0
        • K kfaday

          Would you mind telling me how to do that? Thanks

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #4

          Try to change: REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="\\\\beyond15\\GASPNet 7\\;file://\\\\beyond15\\GASPNet 7" to REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="\\\\beyond15\\GASPNet 7\\;file://z:\" or REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="z:\;file://\\\\beyond15\\GASPNet 7" or REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="z:\;file://z:\" I can't guarantee it is working or not but you should try to do the above method first. But make sure to backup the registry key before you do that.

          K 1 Reply Last reply
          0
          • L Lost User

            Try to change: REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="\\\\beyond15\\GASPNet 7\\;file://\\\\beyond15\\GASPNet 7" to REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="\\\\beyond15\\GASPNet 7\\;file://z:\" or REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="z:\;file://\\\\beyond15\\GASPNet 7" or REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions] "UrlAllowList"="z:\;file://z:\" I can't guarantee it is working or not but you should try to do the above method first. But make sure to backup the registry key before you do that.

            K Offline
            K Offline
            kfaday
            wrote on last edited by
            #5

            thanks for your help, but none of them worked :(

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups