Package: tis-adobereader

Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is provided on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version (1.8.2 / 2.0 / 2.1 / 2.2 / etc.) AS WELL AS the Enterprise / Discovery edition.
* Specify the server OS (Linux / Windows) and version (Debian Stretch/Buster - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine (Windows 7 / 10)
. * As with any community forum, support is provided voluntarily by members. If you require sales support, you can contact the Tranquil IT sales department at 02.40.97.57.55
Locked
User avatar
ssamson
Messages: 245
Registration: June 20, 2014 - 10:29

April 23, 2015 - 10:45

Picture tis-adobereader
Description:
Adobe PDF Reader
Steven Samson - Tranquil IT Systems
Feel free to leave us your opinion on Wapt in the forum, or to answer our questionnaires :).
Gaelds
Messages: 254
Registration: Nov 22, 2015 - 08:37

June 3, 2016 - 8:50 AM

Hello,

is this version compatible with XP? If not, where can I find the latest version for XP and 7?
User avatar
Challans Town Hall
Messages: 15
Registered: July 7, 2014 - 3:52 PM

September 23, 2016 - 11:15

Hello,

I do not recommend the DC version.

We are still using version 11.03 which works well even under Win10, why change?
User avatar
Challans Town Hall
Messages: 15
Registered: July 7, 2014 - 3:52 PM

September 23, 2016 - 11:16

Here are our improvements regarding this package:

Code: Select all

if iswin64():
        key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r'SOFTWARE\Wow6432Node\Adobe\Adobe ARM\1.0\ARM',sam=KEY_WRITE,create_if_missing=True)
        reg_setvalue(key,'icheckReader',0,REG_DWORD)
    else:
        key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r'SOFTWARE\Adobe\Adobe ARM\1.0\ARM',sam=KEY_WRITE,create_if_missing=True)
        reg_setvalue(key,'icheckReader',0,REG_DWORD)

    print('Desactivation du module de mise a jour (cle de registre)')
    key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r'SOFTWARE\Policies\Adobe\Acrobat Reader\11.0\FeatureLockDown',sam=KEY_WRITE,create_if_missing=True)
    reg_setvalue(key,'bUpdater',0,REG_DWORD)

    print('Desactivation du mode protege au demarrage (cle de registre)')
    key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r'SOFTWARE\Policies\Adobe\Acrobat Reader\11.0\FeatureLockDown',sam=KEY_WRITE,create_if_missing=True)
    reg_setvalue(key,'bProtectedMode',0,REG_DWORD)

    print('Desactivation de la protection renforcee (cle de registre)')
    key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r'SOFTWARE\Policies\Adobe\Acrobat Reader\11.0\FeatureLockDown',sam=KEY_WRITE,create_if_missing=True)
    reg_setvalue(key,'bEnhancedSecurityStandalone',0,REG_DWORD)

    print('Desactivation de la protection renforcee dans le navigateur (cle de registre)')
    key=reg_openkey_noredir(HKEY_LOCAL_MACHINE,r'SOFTWARE\Policies\Adobe\Acrobat Reader\11.0\FeatureLockDown',sam=KEY_WRITE,create_if_missing=True)
    reg_setvalue(key,'bEnhancedSecurityInBrowser',0,REG_DWORD)
Locked