2015-11-03 125 views
1

我將要使用Adobe Reader DC將我的公司轉換爲使用福昕閱讀器的大規模部署。這主要是因爲Reader DC拒絕在本機程序中打開PDF文檔,而不是通過IE擴展打開它們,即使完全禁用了擴展名。不幸的是,默認情況下,Foxit的設置已啓用,可在瀏覽器選項卡中打開PDF。我在註冊表中找到了Foxit設置樹,但該特定設置無處可用。我無法在HKCR的任何地方找到設置。我想知道是否有方法編程方式關閉此設置或者是否有一個註冊表項控制此設置,我沒有看到。我需要在大約140臺機器的同一個夜晚安裝所有這些(感謝上帝的遠程管理!),所以我花在每臺機器上的時間越少越好。如何以編程方式關閉在瀏覽器設置中打開的Foxit?

情況: 使用IE11作爲主瀏覽器由於我們使用 在域網絡服務,所以我需要設置適用於所有賬戶爲每臺機器

謝謝!

+1

感謝@Nick發現的重要信息 - 安裝說明:http://cdn01.foxitsoftware.com/ pub/foxit/manual/reader/en_us/FoxitEnterpriseDeploymentAndConfiguration_7.2.pdf 所有選項值都必須放在引號中。 (VIEW_IN_BROWSER =「0」) –

回答

2

我做了一些研究並找到了下面的內容,看看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

+0

噢,我的天啊,謝謝。這讓我在那裏! –

+0

很高興聽到它,不用擔心! – Nick

1

尼克的回答是,要調整安裝設置,是最好的,但如果你確實需要通過註冊表進行編輯,你可以嘗試改變從

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

關鍵1到0.

+0

命令行'FoxitReader.exe -undisplayinbrowser' –

相關問題