Win32:HtmlHelp 无法通过网络共享工作。还有什么选择呢?
自 2005 年以来,微软阻止 HtmlHelp 在网络共享上运行,例如:
\\appserver\tos\PointScanner.exe
\\appserver\tos\PointScanner.chm
我们应该做什么?
(假设该应用程序未在本地安装。)
换句话来说:Microsoft 预期的、受支持的、开箱即用的帮助解决方案是什么?
Since 2005, when Microsoft prevented HtmlHelp functioning off a network share, e.g.:
\\appserver\tos\PointScanner.exe
\\appserver\tos\PointScanner.chm
What are we supposed to do instead?
(Given that the application is not installed locally.)
To rephrase: What is Microsoft's intended, supported, out-of-the-box, help solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过此处描述的注册表设置允许访问:
如果您不想通过修改注册表设置来打开任何安全漏洞,您的应用程序还可以创建 .chm 文件的本地副本,例如在用户临时文件夹 (%TMP%) 中,并从那里打开帮助。您可以在应用程序退出时再次删除该文件(如果您不想在用户工作站上留下任何内容)
You can allow access via the Registry setting described here:
If you don't want to open any security vulnerabilities by modifying Registry settings your application could also create a local copy of the .chm file, e.g. in the users temp folder (%TMP%) and open the help from there. You can remove the file again when your application exits (in case you don't want to leave anything behind on the user's workstation)
我从 divo 提到的注册表更改开始。最终我从基于网络文件夹的 chm 文件转移到实际的“html 帮助”。这对我来说很容易,因为我使用 RoboHelp,它可以从相同的源代码生成任一格式。
I started with the registry change mentioned by divo. Eventually I moved from network folder based chm files to actual "html help". This was easy for me since I use RoboHelp which can generate either format from the same source code.