Description:
Adobe PDF Reader
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
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
Steven Samson - Tranquil IT Systems
Feel free to leave us your opinion on Wapt in the forum, or to answer our questionnaires
.
Feel free to leave us your opinion on Wapt in the forum, or to answer our questionnaires
- Challans Town Hall
- Messages: 15
- Registered: July 7, 2014 - 3:52 PM
Hello,
I do not recommend the DC version.
We are still using version 11.03 which works well even under Win10, why change?
I do not recommend the DC version.
We are still using version 11.03 which works well even under Win10, why change?
- Challans Town Hall
- Messages: 15
- Registered: July 7, 2014 - 3:52 PM
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)
