如何以编程方式关闭在浏览器设置中打开的 Foxit?

How to programatically turn off Foxit open in browser settings?

我将大规模推出从我公司使用 Adob​​e Reader DC 到使用 Foxit reader 的转换。这主要是因为 Reader DC 拒绝在本机程序中打开 PDF 文档,而不是通过 IE 扩展打开它们,即使扩展被完全禁用。不幸的是,默认情况下,Foxit 启用了在浏览器选项卡中打开 PDF 的设置。我在注册表中找到了 Foxit 设置树,但那里没有那个特定的设置。我也无法在 HKCR 的任何地方找到该设置。我想知道是否有一种方法可以以编程方式关闭此设置,或者是否有一个注册表项可以控制我没有看到的此设置。我需要在同一天晚上在大约 140 台机器上安装它(感谢上帝的远程管理!)所以我在每台机器上花费的时间越少越好。

详情: 由于我们正在使用网络服务,因此使用 IE11 作为主要浏览器 在一个域上,所以我需要将设置应用于每台机器的所有帐户

谢谢!

我做了一些研究,发现了以下内容,请查看 VIEW_IN_BROWSER 选项,您需要进行一些测试才能获得它,但它应该可以让您到达那里。

Command-line for installation is:
msiexec /Option <Required Parameter> [Optional Parameter] [PROPERTY=PropertyValue]
For detailed information on msiexec.exe options, required parameters, and optional 
parameters, type msiexec on the command line or visit Microsoft TechNet help center.

Public Properties of the Foxit Reader MSI installation package.

Foxit Reader installation properties supplement the standard MSI public properties
to give administrators greater control over the installation of the application.

For the complete list of standard public properties please refer to: [url]http://msdn.microsoft.com/en-gb/library/aa370905(VS.85).aspx[/url]

The Foxit Reader properties are:
---------------------------------------------------------------------------------------------------------------
ADDLOCAL    <list of features>  The value of the ADDLOCAL property is a comma delimited list of features which the installation of Foxit Reader will make available locally. Foxit Reader installer defines the following features:
FX_PDFVIEWER - Foxit PDF Viewer and its components;
FX_FIREFOXPLUGIN - Plugin which is used for opening PDF files in Mozilla Firefox, Opera, Safari, and Chrome browsers. This feature requires FX_PDFVIEWER feature to be installed.
FX_SE - Plugins for Windows Explorer and Windows shell. These extensions allow viewing PDF thumbnails into Windows Explorer, handling preview of PDF files into Windows Vista and Office 2007. This feature requires FX_PDFVIEWER feature to be installed.
INSTALLLOCATION Specifies the folder where products will be installed.

MAKEDEFAULT Default value of "1", Foxit Reader will be set as default application for PDF files.
VIEW_IN_BROWSER Default value of "1", Foxit Reader will be configured to open PDF files inside browsers.
DESKTOP_SHORTCUT    Default value of "1", installer will place shortcut for installed application on Desktop.
STARTMENU_SHORTCUT  Default value of "1", installer will create program menu group for installed application and their components.
LAUNCHCHECKDEFAULT  Default value of "1", Foxit Reader will check if the Reader is the default reader when launching.
SAFEMODE    Default value of "1", Foxit Reader will run in the Safe Reading Mode.

SOURCE

尼克的回答,调整安装设置,是最好的,但如果你确实需要通过注册表编辑它,你可以尝试改变

HKCU/SOFTWARE/Foxit Software/Foxit Reader 7.0/Preferences/IeAssociation/bShowInbrowser 

键从 1 到 0。