Adobe Acrobat Reader DC
Informations
| Créateur | Messages | 
|---|---|
| martins 
 | InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes :   Retours d'expérience13 11 DescriptionMore powerful than other PDF software, Adobe Acrobat Reader DC is the free, trusted standard for viewing, printing, and annotating PDFs. Known issues (2017) : 
 Code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02)
# Last revision : see changelog
# Wine version used : 1.9.0, 3.0.4, 4.0.3
# Distribution used to test : Kubuntu 18.04 amd64
# Author : Martins Bruvelis
#
# CHANGELOG
# [Martins Bruvelis] (2015-11-02)
#   First script.
# [LinuxScripter] (2018-12-21 11-04)
#   Using the latest sable version of wine at this time, removing the SetOS lines (program works fine on win7), updated the download link.
# [Dadu042] (2019-12-18)
#   Wine 3.0.4 -> 4.0.3
#   POL_RequiredVersion 4.3.4
#   Add shortcut categories.
# [Dadu042] (2020-02-03)
#   Set_OS "winxp" -> win7
#
#
# KNOWN ISSUES:
#
# KNOWN ISSUES with version 2015.010.20056:
#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: no text displayed in Preferences window (menu Edit -> Preferences). Tried: corefonts. Fix: OS win7 -> winxp (hint from: https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266&iTestingId=104412 ).
#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: crash when exit (even if no documents opened).
#
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="4.0.3"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
  
  
# Initialization
POL_SetupWindow_Init
  
POL_Debug_Init
  
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "Note: this script will was successfully tested with Reader DC version 2015.010.20056" "$TITLE"    
POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
  
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
    INSTALLER_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_SetupWindow_message "Note: this script will download version 2015.010" "$TITLE"
    cd "$POL_System_TmpDir"
    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
fi
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
Set_OS "win7"
  
# Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
  
# Installation
POL_Wine_WaitBefore "$TITLE"
  
POL_Wine "$INSTALLER_EXE"
  
POL_Wine_WaitExit "$TITLE"
  
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
  
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
  
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
  
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
  
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
  
POL_Wine regedit disable-online-features.reg
 
POL_Wine_reboot
POL_System_TmpDelete
  
POL_Shortcut "AcroRd32.exe" "$TITLE" "" "" "Office;Viewer;"
POL_Shortcut_QuietDebug "$TITLE"
POL_Shortcut_Document "$TITLE" "ReadMe.htm"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
  
POL_SetupWindow_Close
exit | 
Contributions
Filters:
Contribuer| Membre | Messages | 
| GuerreroAzul | Jeudi 14 Mars 2024 à 16:47 | 
| GuerreroAzul 
 | WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdate Adobe Acrobat Reader DC (2020.013.20064)  Screenshots
 
 
 Differences@@ -1,157 +1,182 @@
 #!/usr/bin/env playonlinux-bash
-# Date : (2015-11-02)
-# Last revision : see changelog
-# Wine version used : 1.9.0, 3.0.4, 4.0.3
-# Distribution used to test : Kubuntu 18.04 amd64
-# Author : Martins Bruvelis
-#
-# CHANGELOG
-# [Martins Bruvelis] (2015-11-02)
-#   First script.
-# [LinuxScripter] (2018-12-21 11-04)
-#   Using the latest sable version of wine at this time, removing the SetOS lines (program works fine on win7), updated the download link.
-# [Dadu042] (2019-12-18)
-#   Wine 3.0.4 -> 4.0.3
-#   POL_RequiredVersion 4.3.4
-#   Add shortcut categories.
-# [Dadu042] (2020-02-03)
-#   Set_OS "winxp" -> win7
-#
-#
-# KNOWN ISSUES:
-#
-# KNOWN ISSUES with version 2015.010.20056:
-#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: no text displayed in Preferences window (menu Edit -> Preferences). Tried: corefonts. Fix: OS win7 -> winxp (hint from: https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266&iTestingId=104412 ).
-#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: crash when exit (even if no documents opened).
-#
-
+: '
+Date: See changelog.
+Last revision: See changelog.
+Wine version used: See changelog.
+Distribution used to test: See changelog.
+Author: GuerreroAzul
+Script licence : GPL3
+License: Retail
+
+CHANGELOG
+[GuerrreroAzul] (2024-03-14 07:47 GMT-6) Wine 9.0 / Linux Mint 21.3 x86_64
+  Version test software: Adobe Reader DC 2001320064
+  Update version wine: 4.0.3 --> 9.0
+  Update version OS: win7 --> win10
+  Code: Code ordering for better understanding and improving loading times.
+[Martins Bruvelis] (2015-11-02)
+  First script.
+[LinuxScripter] (2018-12-21 11-04)
+  Using the latest sable version of wine at this time, removing the SetOS lines (program works fine on win7), updated the download link.
+[Dadu042] (2019-12-18)
+  Wine 3.0.4 -> 4.0.3
+  POL_RequiredVersion 4.3.4
+  Add shortcut categories.
+[Dadu042] (2020-02-03)
+  Set_OS "winxp" -> win7
+[Martins Bruvelis] (2015-11-02)
+    wine: 1.9.0
+    system: Kubuntu 18.04 amd64
+
+REFERENCE
+GuerreroAzul: Documentation Ref.
+  https://www.playonlinux.com/en/app-2653-Adobe_Acrobat_Reader_DC.html
+  https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266
+GuerreroAzul: Link Download. - https://get.adobe.com/es/reader/enterprise/
+
+KNOWN ISSUES:
+
+KNOWN ISSUES with version 2015.010.20056:
+ - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: no text displayed in Preferences window (menu Edit -> Preferences). Tried: corefonts. Fix: OS win7 -> winxp (hint from: https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266&iTestingId=104412 ).
+ - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: crash when exit (even if no documents opened).
+'
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-  
+
+#Setting
 TITLE="Adobe Acrobat Reader DC"
 PREFIX="AdobeAcrobatReaderDC"
-WINEVERSION="4.0.3"
-EDITOR="Adobe Systems Inc."
-GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
-AUTHOR="Martins Bruvelis"
-  
-  
-# Initialization
+CATEGORY="Office;Viewer;"
+WINEVERSION="9.0"
+OSVERSION="win10"
+EDITHOR="Martins Bruvelis, Dadu042, LinuxScripter and GuerreroAzul"
+COMPANY="Adobe Systems Inc."
+HOMEPAGE="https://www.adobe.com"
+LOGO="https://i.imgur.com/JuXnwmZ.png"
+BANNER="https://i.imgur.com/YqdIiG1.png"
+DOWNLOAD_URL="https://download.adobe.com/pub/adobe/reader/win/AcrobatDC/2001320064/AcroRdrDC2001320064_en_US.exe"
+FILE_INSTALL="AcroRdrDC2001320064_en_US.exe"
+MD5_CHECKSUM="c3cc3d8c3f536bc28851ed230ea963aa"
+
+#Setup Image
+POL_GetSetupImages "$LOGO" "$BANNER" "$TITLE"
+
+# Starting the script
 POL_SetupWindow_Init
-  
 POL_Debug_Init
-  
-# Presentation
-# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
-POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
-POL_SetupWindow_message "Note: this script will was successfully tested with Reader DC version 2015.010.20056" "$TITLE"    
+# Welcome message
+POL_SetupWindow_presentation "$TITLE" "$COMPANY" "$HOMEPAGE" "$EDITHOR" "$PREFIX"
 
-POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+# PlayOnLinux Version Check
+POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$(eval_gettext 'TITLE wont work with $APPLICATION_TITLE $VERSION\nPlease update!')"
 
-# Create Prefix
-POL_System_TmpCreate "$PREFIX"
-  
-POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
-  
-if [ "$INSTALL_METHOD" = "LOCAL" ]
-then
-    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
-    INSTALLER_EXE="$APP_ANSWER"
-elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
-then
-    POL_SetupWindow_message "Note: this script will download version 2015.010" "$TITLE"
-    cd "$POL_System_TmpDir"
-    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
-    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
+# Check winbind library is installed.
+if [ "$POL_OS" = "Linux" ]; then
+  wbinfo -V || POL_Debug_Fatal "$(eval_gettext 'Please install winbind before installing.')" "$TITLE!"
 fi
- 
+
+# Prepare resources for installation!
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
-
-Set_OS "win7"
-  
+Set_OS "$OSVERSION"
+   
 # Dependencies
+POL_Call POL_Install_atmlib
 POL_Call POL_Install_mspatcha
+POL_Call POL_Install_riched20
 POL_Call POL_Install_vcrun2013
 POL_Call POL_Install_FontsSmoothRGB
-  
-# Installation
-POL_Wine_WaitBefore "$TITLE"
-  
-POL_Wine "$INSTALLER_EXE"
-  
-POL_Wine_WaitExit "$TITLE"
-  
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_DisableCrashDialog
+POL_Wine_OverrideDLL "native,builtin" "msftedit"
+
+# Script start
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
+  POL_System_TmpCreate "$PREFIX"
+  cd "$POL_System_TmpDir"
+  POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM"
+  INSTALLER="$POL_System_TmpDir/$FILE_INSTALL"
+else
+  cd "$HOME"
+  POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
+  INSTALLER="$APP_ANSWER"
+fi
+
+# Install Program
+POL_Wine start /unix "$INSTALLER" "/sAll" "/rs" "/l${LANG}"
+POL_Wine_WaitExit "$INSTALLER"
+
 # Fix crashes
 # Disable and delete update service
 POL_Wine --ignore-errors sc stop "AdobeARMservice"
 POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
 POL_Wine --ignore-errors sc delete "AdobeARMservice"
-  
+   
 # Disable update service executables
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv armsvc.exe armsvc.exe_disabled
 mv AdobeARM.exe AdobeARM.exe_disabled
 mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
-  
+   
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
 mv RdrCEF.exe RdrCEF.exe_disabled
-  
+   
 # Disable update and online services in registry settings
 cd "$POL_System_TmpDir"
 echo -e 'REGEDIT4
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
 "bisFirstLaunch"=dword:00000000
 "bRHPSticky"=dword:00000001
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
 "bLastExitNormal"=dword:00000000
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
 "bShowInstallFTE"=dword:00000001
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
 @="acrord32.dll"
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
 @="acrord32.dll"
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
 "bUseMUI"=dword:00000000
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
 "bProtectedMode"=dword:00000000
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
 "iRememberView"=dword:00000002
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
 "bEnhancedSecurityInBrowser"=dword:00000000
 "bEnhancedSecurityStandalone"=dword:00000000
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
 "bNeedSynchronizer"=dword:00000000
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
-  
+   
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
 "bAcroSuppressUpsell"=dword:00000001
 "bUpdater"=dword:00000000
 "bUsageMeasurement"=dword:00000000
 "iProtectedView"=dword:00000000
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
 "bAllowUserToChangeMsgPrefs"=dword:00000000
 "bDontShowMsgWhenViewingDoc"=dword:00000000
 "bShowMsgAtLaunch"=dword:00000000
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
 "bAdobeSendPluginToggle"=dword:00000000
 "bDisableWebmail"=dword:00000001
@@ -160,14 +185,14 @@
 "bTogglePrefsSync"=dword:00000001
 "bToggleWebConnectors"=dword:00000001
 "bUpdater"=dword:00000000
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
 "bDisableSharePointFeatures"=dword:00000001
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
 "bNeedSynchronizer"=dword:00000000
 "bAdobeSendPluginToggle"=dword:00000000
-  
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
 "bCommercialPDF"=dword:00000001
 "bDisableWebmail"=dword:00000001
@@ -175,29 +200,26 @@
 "bFindMoreCustomizationsOnline"=dword:00000000
 "bFindMoreWorkflowsOnline"=dword:00000000
 "bUpdater"=dword:00000000
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
 "iCheckReader"=dword:00000000
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
 "Enabled"="NO"
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
 "EULA"=dword:00000001
-  
+   
 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
 "Adobe ARM"=-' > disable-online-features.reg
-  
+   
 POL_Wine regedit disable-online-features.reg
- 
-POL_Wine_reboot
-POL_System_TmpDelete
-  
-POL_Shortcut "AcroRd32.exe" "$TITLE" "" "" "Office;Viewer;"
-POL_Shortcut_QuietDebug "$TITLE"
-POL_Shortcut_Document "$TITLE" "ReadMe.htm"
 
-POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
+# Shortcut 
+POL_Shortcut "AcroRd32.exe" "$TITLE" "" "$CATEGORY"
+POL_Extension_Write pdf "$TITLE"
   
+POL_System_TmpDelete
+POL_Wine_reboot
 POL_SetupWindow_Close
-exit
\ No newline at end of file
+exit 0
\ No newline at end of file
Nouveau code source#!/usr/bin/env playonlinux-bash
: '
Date: See changelog.
Last revision: See changelog.
Wine version used: See changelog.
Distribution used to test: See changelog.
Author: GuerreroAzul
Script licence : GPL3
License: Retail
CHANGELOG
[GuerrreroAzul] (2024-03-14 07:47 GMT-6) Wine 9.0 / Linux Mint 21.3 x86_64
  Version test software: Adobe Reader DC 2001320064
  Update version wine: 4.0.3 --> 9.0
  Update version OS: win7 --> win10
  Code: Code ordering for better understanding and improving loading times.
[Martins Bruvelis] (2015-11-02)
  First script.
[LinuxScripter] (2018-12-21 11-04)
  Using the latest sable version of wine at this time, removing the SetOS lines (program works fine on win7), updated the download link.
[Dadu042] (2019-12-18)
  Wine 3.0.4 -> 4.0.3
  POL_RequiredVersion 4.3.4
  Add shortcut categories.
[Dadu042] (2020-02-03)
  Set_OS "winxp" -> win7
[Martins Bruvelis] (2015-11-02)
    wine: 1.9.0
    system: Kubuntu 18.04 amd64
REFERENCE
GuerreroAzul: Documentation Ref.
  https://www.playonlinux.com/en/app-2653-Adobe_Acrobat_Reader_DC.html
  https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266
GuerreroAzul: Link Download. - https://get.adobe.com/es/reader/enterprise/
KNOWN ISSUES:
KNOWN ISSUES with version 2015.010.20056:
 - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: no text displayed in Preferences window (menu Edit -> Preferences). Tried: corefonts. Fix: OS win7 -> winxp (hint from: https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266&iTestingId=104412 ).
 - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: crash when exit (even if no documents opened).
'
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
#Setting
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
CATEGORY="Office;Viewer;"
WINEVERSION="9.0"
OSVERSION="win10"
EDITHOR="Martins Bruvelis, Dadu042, LinuxScripter and GuerreroAzul"
COMPANY="Adobe Systems Inc."
HOMEPAGE="https://www.adobe.com"
LOGO="https://i.imgur.com/JuXnwmZ.png"
BANNER="https://i.imgur.com/YqdIiG1.png"
DOWNLOAD_URL="https://download.adobe.com/pub/adobe/reader/win/AcrobatDC/2001320064/AcroRdrDC2001320064_en_US.exe"
FILE_INSTALL="AcroRdrDC2001320064_en_US.exe"
MD5_CHECKSUM="c3cc3d8c3f536bc28851ed230ea963aa"
#Setup Image
POL_GetSetupImages "$LOGO" "$BANNER" "$TITLE"
# Starting the script
POL_SetupWindow_Init
POL_Debug_Init
# Welcome message
POL_SetupWindow_presentation "$TITLE" "$COMPANY" "$HOMEPAGE" "$EDITHOR" "$PREFIX"
# PlayOnLinux Version Check
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$(eval_gettext 'TITLE wont work with $APPLICATION_TITLE $VERSION\nPlease update!')"
# Check winbind library is installed.
if [ "$POL_OS" = "Linux" ]; then
  wbinfo -V || POL_Debug_Fatal "$(eval_gettext 'Please install winbind before installing.')" "$TITLE!"
fi
# Prepare resources for installation!
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
Set_OS "$OSVERSION"
   
# Dependencies
POL_Call POL_Install_atmlib
POL_Call POL_Install_mspatcha
POL_Call POL_Install_riched20
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
POL_Call POL_Install_corefonts
POL_Call POL_Install_DisableCrashDialog
POL_Wine_OverrideDLL "native,builtin" "msftedit"
# Script start
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
  POL_System_TmpCreate "$PREFIX"
  cd "$POL_System_TmpDir"
  POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM"
  INSTALLER="$POL_System_TmpDir/$FILE_INSTALL"
else
  cd "$HOME"
  POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
  INSTALLER="$APP_ANSWER"
fi
# Install Program
POL_Wine start /unix "$INSTALLER" "/sAll" "/rs" "/l${LANG}"
POL_Wine_WaitExit "$INSTALLER"
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
   
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
   
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
   
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
   
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
   
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
   
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
   
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
   
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
   
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
   
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
   
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
   
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
   
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
   
POL_Wine regedit disable-online-features.reg
# Shortcut 
POL_Shortcut "AcroRd32.exe" "$TITLE" "" "$CATEGORY"
POL_Extension_Write pdf "$TITLE"
  
POL_System_TmpDelete
POL_Wine_reboot
POL_SetupWindow_Close
exit 0RéponsesEdité par GuerreroAzul | 
| onecallednick | Samedi 8 Janvier 2022 à 1:22 | 
| onecallednick   
 | MessagesCrashed on clicking the Fill and Sign button. That was the whole reason I installed it. Réponses | 
| playlinux_user | Mardi 27 Avril 2021 à 2:05 | 
| playlinux_user   
 | MessagesI can't download the "missing font package" from the link: https://supportdownloads.adobe.com/detail.jsp?ftpID=5877 
 
 
 Sorry, it didn't work. And the first link still don't open. :( RéponsesEdité par playlinux_user | 
| YnotTman | Dimanche 4 Avril 2021 à 18:51 | 
| YnotTman   
 | MessagesI am attempting to install Adobe Acrobat Pro DC 2015 release on Mate 20.1. Error during installation: "Error in main Adobe crashed" Any thoughts on how to install this from CD? Réponses | 
| hvaria | Jeudi 25 Février 2021 à 16:12 | 
| hvaria   
 | MessagesThe script works perfectly fine for version upto 19.010.20099. After that for some reason the program installs but does not open any PDFs. Over on the Wine Reader DC page people have posted new instructions on how to get the newer versions working. Can we please work that into this script? Réponses | 
| Dadu042 | Lundi 3 Février 2020 à 9:49 | 
| Dadu042   
 | InformationCette mise à jour a été acceptée par l'équipe Differences@@ -14,6 +14,8 @@ # Wine 3.0.4 -> 4.0.3 # POL_RequiredVersion 4.3.4 # Add shortcut categories. +# [Dadu042] (2020-02-03) +# Set_OS "winxp" -> win7 # # # KNOWN ISSUES: @@ -67,7 +69,7 @@ POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" -Set_OS "winxp" +Set_OS "win7" # Dependencies POL_Call POL_Install_mspatcha Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02)
# Last revision : see changelog
# Wine version used : 1.9.0, 3.0.4, 4.0.3
# Distribution used to test : Kubuntu 18.04 amd64
# Author : Martins Bruvelis
#
# CHANGELOG
# [Martins Bruvelis] (2015-11-02)
#   First script.
# [LinuxScripter] (2018-12-21 11-04)
#   Using the latest sable version of wine at this time, removing the SetOS lines (program works fine on win7), updated the download link.
# [Dadu042] (2019-12-18)
#   Wine 3.0.4 -> 4.0.3
#   POL_RequiredVersion 4.3.4
#   Add shortcut categories.
# [Dadu042] (2020-02-03)
#   Set_OS "winxp" -> win7
#
#
# KNOWN ISSUES:
#
# KNOWN ISSUES with version 2015.010.20056:
#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: no text displayed in Preferences window (menu Edit -> Preferences). Tried: corefonts. Fix: OS win7 -> winxp (hint from: https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266&iTestingId=104412 ).
#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: crash when exit (even if no documents opened).
#
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="4.0.3"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
  
  
# Initialization
POL_SetupWindow_Init
  
POL_Debug_Init
  
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "Note: this script will was successfully tested with Reader DC version 2015.010.20056" "$TITLE"    
POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
  
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
    INSTALLER_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_SetupWindow_message "Note: this script will download version 2015.010" "$TITLE"
    cd "$POL_System_TmpDir"
    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
fi
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
Set_OS "win7"
  
# Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
  
# Installation
POL_Wine_WaitBefore "$TITLE"
  
POL_Wine "$INSTALLER_EXE"
  
POL_Wine_WaitExit "$TITLE"
  
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
  
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
  
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
  
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
  
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
  
POL_Wine regedit disable-online-features.reg
 
POL_Wine_reboot
POL_System_TmpDelete
  
POL_Shortcut "AcroRd32.exe" "$TITLE" "" "" "Office;Viewer;"
POL_Shortcut_QuietDebug "$TITLE"
POL_Shortcut_Document "$TITLE" "ReadMe.htm"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
  
POL_SetupWindow_Close
exitRéponsesMercredi 13 Mai 2020 à 0:46                                                                                     | 
| hvaria | Lundi 3 Février 2020 à 7:35 | 
| hvaria   
 | MessagesSo I recently tried to reinstall this on my Pixelbook and found out that the installer did not work anymore. It was not installing Reader DC as it was saying that version is not supported on Windows XP. I have a workaround but this should be fixed if possible. Workaround 
 RéponsesEdité par hvaria | 
| Dadu042 | Mercredi 18 Décembre 2019 à 22:01 | 
| Dadu042   
 | WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -1,130 +1,155 @@
 #!/usr/bin/env playonlinux-bash
-# Date : (2015-11-02 15-09)
-# Last revision : (2018-12-21 11-04)
-# Wine version used : 1.9.0, 3.0.4
-# Distribution used to test : Ubuntu 14.04 LTS, Ubuntu 18.10
+# Date : (2015-11-02)
+# Last revision : see changelog
+# Wine version used : 1.9.0, 3.0.4, 4.0.3
+# Distribution used to test : Kubuntu 18.04 amd64
 # Author : Martins Bruvelis
- 
+#
+# CHANGELOG
+# [Martins Bruvelis] (2015-11-02)
+#   First script.
+# [LinuxScripter] (2018-12-21 11-04)
+#   Using the latest sable version of wine at this time, removing the SetOS lines (program works fine on win7), updated the download link.
+# [Dadu042] (2019-12-18)
+#   Wine 3.0.4 -> 4.0.3
+#   POL_RequiredVersion 4.3.4
+#   Add shortcut categories.
+#
+#
+# KNOWN ISSUES:
+#
+# KNOWN ISSUES with version 2015.010.20056:
+#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: no text displayed in Preferences window (menu Edit -> Preferences). Tried: corefonts. Fix: OS win7 -> winxp (hint from: https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266&iTestingId=104412 ).
+#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: crash when exit (even if no documents opened).
+#
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
- 
+  
 TITLE="Adobe Acrobat Reader DC"
 PREFIX="AdobeAcrobatReaderDC"
-WINEVERSION="3.0.4"
+WINEVERSION="4.0.3"
 EDITOR="Adobe Systems Inc."
 GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
 AUTHOR="Martins Bruvelis"
- 
- 
+  
+  
 # Initialization
 POL_SetupWindow_Init
- 
+  
 POL_Debug_Init
- 
+  
 # Presentation
 # POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
- 
+
+POL_SetupWindow_message "Note: this script will was successfully tested with Reader DC version 2015.010.20056" "$TITLE"    
+
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 # Create Prefix
 POL_System_TmpCreate "$PREFIX"
- 
-POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
- 
+  
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+  
 if [ "$INSTALL_METHOD" = "LOCAL" ]
 then
     POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
     INSTALLER_EXE="$APP_ANSWER"
 elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
 then
+    POL_SetupWindow_message "Note: this script will download version 2015.010" "$TITLE"
     cd "$POL_System_TmpDir"
     POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
     INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
 fi
-
+ 
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
- 
+
+Set_OS "winxp"
+  
 # Dependencies
 POL_Call POL_Install_mspatcha
 POL_Call POL_Install_vcrun2013
 POL_Call POL_Install_FontsSmoothRGB
- 
+  
 # Installation
 POL_Wine_WaitBefore "$TITLE"
- 
+  
 POL_Wine "$INSTALLER_EXE"
- 
+  
 POL_Wine_WaitExit "$TITLE"
- 
+  
 # Fix crashes
 # Disable and delete update service
 POL_Wine --ignore-errors sc stop "AdobeARMservice"
 POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
 POL_Wine --ignore-errors sc delete "AdobeARMservice"
- 
+  
 # Disable update service executables
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv armsvc.exe armsvc.exe_disabled
 mv AdobeARM.exe AdobeARM.exe_disabled
 mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
- 
+  
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
 mv RdrCEF.exe RdrCEF.exe_disabled
- 
+  
 # Disable update and online services in registry settings
 cd "$POL_System_TmpDir"
 echo -e 'REGEDIT4
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
 "bisFirstLaunch"=dword:00000000
 "bRHPSticky"=dword:00000001
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
 "bLastExitNormal"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
 "bShowInstallFTE"=dword:00000001
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
 @="acrord32.dll"
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
 @="acrord32.dll"
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
 "bUseMUI"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
 "bProtectedMode"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
 "iRememberView"=dword:00000002
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
 "bEnhancedSecurityInBrowser"=dword:00000000
 "bEnhancedSecurityStandalone"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
 "bNeedSynchronizer"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
 "bAcroSuppressUpsell"=dword:00000001
 "bUpdater"=dword:00000000
 "bUsageMeasurement"=dword:00000000
 "iProtectedView"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
 "bAllowUserToChangeMsgPrefs"=dword:00000000
 "bDontShowMsgWhenViewingDoc"=dword:00000000
 "bShowMsgAtLaunch"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
 "bAdobeSendPluginToggle"=dword:00000000
 "bDisableWebmail"=dword:00000001
@@ -133,14 +158,14 @@
 "bTogglePrefsSync"=dword:00000001
 "bToggleWebConnectors"=dword:00000001
 "bUpdater"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
 "bDisableSharePointFeatures"=dword:00000001
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
 "bNeedSynchronizer"=dword:00000000
 "bAdobeSendPluginToggle"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
 "bCommercialPDF"=dword:00000001
 "bDisableWebmail"=dword:00000001
@@ -148,28 +173,29 @@
 "bFindMoreCustomizationsOnline"=dword:00000000
 "bFindMoreWorkflowsOnline"=dword:00000000
 "bUpdater"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
 "iCheckReader"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
 "Enabled"="NO"
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
 "EULA"=dword:00000001
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
 "Adobe ARM"=-' > disable-online-features.reg
- 
+  
 POL_Wine regedit disable-online-features.reg
-
+ 
 POL_Wine_reboot
 POL_System_TmpDelete
- 
-POL_Shortcut "AcroRd32.exe" "$TITLE"
+  
+POL_Shortcut "AcroRd32.exe" "$TITLE" "" "" "Office;Viewer;"
 POL_Shortcut_QuietDebug "$TITLE"
- 
+POL_Shortcut_Document "$TITLE" "ReadMe.htm"
+
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
- 
+  
 POL_SetupWindow_Close
 exit
\ No newline at end of file
Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02)
# Last revision : see changelog
# Wine version used : 1.9.0, 3.0.4, 4.0.3
# Distribution used to test : Kubuntu 18.04 amd64
# Author : Martins Bruvelis
#
# CHANGELOG
# [Martins Bruvelis] (2015-11-02)
#   First script.
# [LinuxScripter] (2018-12-21 11-04)
#   Using the latest sable version of wine at this time, removing the SetOS lines (program works fine on win7), updated the download link.
# [Dadu042] (2019-12-18)
#   Wine 3.0.4 -> 4.0.3
#   POL_RequiredVersion 4.3.4
#   Add shortcut categories.
#
#
# KNOWN ISSUES:
#
# KNOWN ISSUES with version 2015.010.20056:
#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: no text displayed in Preferences window (menu Edit -> Preferences). Tried: corefonts. Fix: OS win7 -> winxp (hint from: https://appdb.winehq.org/objectManager.php?sClass=version&iId=32266&iTestingId=104412 ).
#  - Wine x86 3.0.3, 4.0.3, 4.21, 5.0-rc1: crash when exit (even if no documents opened).
#
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="4.0.3"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
  
  
# Initialization
POL_SetupWindow_Init
  
POL_Debug_Init
  
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "Note: this script will was successfully tested with Reader DC version 2015.010.20056" "$TITLE"    
POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
  
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
    INSTALLER_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_SetupWindow_message "Note: this script will download version 2015.010" "$TITLE"
    cd "$POL_System_TmpDir"
    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
fi
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
Set_OS "winxp"
  
# Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
  
# Installation
POL_Wine_WaitBefore "$TITLE"
  
POL_Wine "$INSTALLER_EXE"
  
POL_Wine_WaitExit "$TITLE"
  
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
  
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
  
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
  
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
  
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
  
POL_Wine regedit disable-online-features.reg
 
POL_Wine_reboot
POL_System_TmpDelete
  
POL_Shortcut "AcroRd32.exe" "$TITLE" "" "" "Office;Viewer;"
POL_Shortcut_QuietDebug "$TITLE"
POL_Shortcut_Document "$TITLE" "ReadMe.htm"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
  
POL_SetupWindow_Close
exitRéponses | 
| hvaria | Jeudi 14 Novembre 2019 à 12:15 | 
| hvaria   
 | MessagesReader version 19.010.x works perfectly fine but the new 19.012.x and beyond is crashing and unable to open PDF files. Not sure what the issue is. Not a big problem now but in a year or two we will be on outdated versions. Can someone please look at this. I tried to open a bug for wine developers and they are not going to support it since I'm using play on Linux.  Réponses | 
| sukumi | Mercredi 25 September 2019 à 13:39 | 
| sukumi   
 | MessagesHi folks, first of all playonlinux and the Adobe Reader DC works most of the time pretty neat. Recently we are getting a lot of XFA based documents. Used by people with Windows and Linux. So now, when a Linux starts with working on that one XFA based doucment, everything is fine. When the goverment uses Adobe Reader on their Microsoft Machines and sends us them back nothing works. We get the message of "missing font package". I tried installing all the font setups you can get on playonlinux. Nothing really helps/ works. I guessed, maybe this file will help me: https://supportdownloads.adobe.com/detail.jsp?ftpID=5877. And indeed, it helped!! In playonlinux: Install - Install a non-listed-program - update your Adobe Reader DC virtual drive - select the msi file. And tada! The file opens. Maybe it is possible to build this msi out of the box into the Adobe DC installer setup workflow? Would have saved me so much time. Thanks for the great work! Réponses | 
| greenhornet | Mardi 20 Aoüt 2019 à 17:38 | 
| greenhornet   
 | MessagesIt runs well for viewing PDFs, and is slightly better than Evince for its ability to fill out forms (with duplication working as expected). But the signature functions, or working with Secure documents, or browsing preferences result in some strange boxes. Maybe this is just a missing font issue or something? 
 When clicking a signature field: https://imgur.com/yaal6UC 
 When pulling up preferences: https://imgur.com/BNwU8xX 
 RéponsesMardi 20 Aoüt 2019 à 20:48                                                                                     Vendredi 23 Aoüt 2019 à 21:06                                                                                     Dimanche 3 Novembre 2019 à 13:32                                                                                     Lundi 3 Février 2020 à 17:36                                                                                     Edité par greenhornet | 
| hvaria | Mardi 6 Aoüt 2019 à 7:06 | 
| hvaria   
 | MessagesWorks exceptionally well guys... You saved my $1000 pixelbook. I ran into a major issue recently where government forms like USCIS/IRS forms don't work correctly on any other PDF readers except Adobe. Without major hacking and installing a virtual machine I was at a loss on what to do. You saved me from going back to windows. Two suggestions 
 Also I am running this with Wine 4.0.1 and no having any issues... seems to open faster if anything. FYI RéponsesEdité par hvaria | 
| LinuxScripter | Samedi 22 Décembre 2018 à 11:05 | 
| LinuxScripter   
 | WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUsing the latest sable version of wine at this time, removing the SetOS lines (program works fine on win7), updated the download links. Differences@@ -1,35 +1,35 @@
 #!/usr/bin/env playonlinux-bash
 # Date : (2015-11-02 15-09)
-# Last revision : (2016-01-13 17-01)
-# Wine version used : 1.9.0
-# Distribution used to test : Ubuntu 14.04 LTS
+# Last revision : (2018-12-21 11-04)
+# Wine version used : 1.9.0, 3.0.4
+# Distribution used to test : Ubuntu 14.04 LTS, Ubuntu 18.10
 # Author : Martins Bruvelis
-
+ 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITLE="Adobe Acrobat Reader DC"
 PREFIX="AdobeAcrobatReaderDC"
-WINEVERSION="1.9.0"
+WINEVERSION="3.0.4"
 EDITOR="Adobe Systems Inc."
 GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
 AUTHOR="Martins Bruvelis"
-
-
+ 
+ 
 # Initialization
 POL_SetupWindow_Init
-
+ 
 POL_Debug_Init
-
+ 
 # Presentation
 # POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
-
+ 
 # Create Prefix
 POL_System_TmpCreate "$PREFIX"
-
+ 
 POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
-
+ 
 if [ "$INSTALL_METHOD" = "LOCAL" ]
 then
     POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
@@ -41,96 +41,90 @@
     INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
 fi
 
-# Create Prefix
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
-
-# Configuration
-Set_OS "winxp"
-
+ 
 # Dependencies
 POL_Call POL_Install_mspatcha
 POL_Call POL_Install_vcrun2013
 POL_Call POL_Install_FontsSmoothRGB
-
+ 
 # Installation
 POL_Wine_WaitBefore "$TITLE"
-
-Set_OS "win7"
-
+ 
 POL_Wine "$INSTALLER_EXE"
-
+ 
 POL_Wine_WaitExit "$TITLE"
-
+ 
 # Fix crashes
 # Disable and delete update service
 POL_Wine --ignore-errors sc stop "AdobeARMservice"
 POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
 POL_Wine --ignore-errors sc delete "AdobeARMservice"
-
+ 
 # Disable update service executables
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv armsvc.exe armsvc.exe_disabled
 mv AdobeARM.exe AdobeARM.exe_disabled
 mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
-
+ 
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
 mv RdrCEF.exe RdrCEF.exe_disabled
-
+ 
 # Disable update and online services in registry settings
 cd "$POL_System_TmpDir"
 echo -e 'REGEDIT4
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
 "bisFirstLaunch"=dword:00000000
 "bRHPSticky"=dword:00000001
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
 "bLastExitNormal"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
 "bShowInstallFTE"=dword:00000001
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
 @="acrord32.dll"
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
 @="acrord32.dll"
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
 "bUseMUI"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
 "bProtectedMode"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
 "iRememberView"=dword:00000002
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
 "bEnhancedSecurityInBrowser"=dword:00000000
 "bEnhancedSecurityStandalone"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
 "bNeedSynchronizer"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
 "bAcroSuppressUpsell"=dword:00000001
 "bUpdater"=dword:00000000
 "bUsageMeasurement"=dword:00000000
 "iProtectedView"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
 "bAllowUserToChangeMsgPrefs"=dword:00000000
 "bDontShowMsgWhenViewingDoc"=dword:00000000
 "bShowMsgAtLaunch"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
 "bAdobeSendPluginToggle"=dword:00000000
 "bDisableWebmail"=dword:00000001
@@ -139,14 +133,14 @@
 "bTogglePrefsSync"=dword:00000001
 "bToggleWebConnectors"=dword:00000001
 "bUpdater"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
 "bDisableSharePointFeatures"=dword:00000001
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
 "bNeedSynchronizer"=dword:00000000
 "bAdobeSendPluginToggle"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
 "bCommercialPDF"=dword:00000001
 "bDisableWebmail"=dword:00000001
@@ -154,29 +148,28 @@
 "bFindMoreCustomizationsOnline"=dword:00000000
 "bFindMoreWorkflowsOnline"=dword:00000000
 "bUpdater"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
 "iCheckReader"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
 "Enabled"="NO"
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
 "EULA"=dword:00000001
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
 "Adobe ARM"=-' > disable-online-features.reg
-
+ 
 POL_Wine regedit disable-online-features.reg
 
-Set_OS "winxp"
 POL_Wine_reboot
 POL_System_TmpDelete
-
+ 
 POL_Shortcut "AcroRd32.exe" "$TITLE"
 POL_Shortcut_QuietDebug "$TITLE"
-
+ 
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
-
+ 
 POL_SetupWindow_Close
 exit
\ No newline at end of file
Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2018-12-21 11-04)
# Wine version used : 1.9.0, 3.0.4
# Distribution used to test : Ubuntu 14.04 LTS, Ubuntu 18.10
# Author : Martins Bruvelis
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="3.0.4"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
 
 
# Initialization
POL_SetupWindow_Init
 
POL_Debug_Init
 
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_System_TmpCreate "$PREFIX"
 
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
 
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
    INSTALLER_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
# Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
 
# Installation
POL_Wine_WaitBefore "$TITLE"
 
POL_Wine "$INSTALLER_EXE"
 
POL_Wine_WaitExit "$TITLE"
 
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
 
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
 
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
 
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
 
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
 
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
 
POL_Wine regedit disable-online-features.reg
POL_Wine_reboot
POL_System_TmpDelete
 
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
 
POL_SetupWindow_Close
exitRéponsesSamedi 22 Décembre 2018 à 11:58                                                                                     Mercredi 2 Janvier 2019 à 22:27                                                                                     | 
| fabiogvb | Jeudi 20 Décembre 2018 à 16:27 | 
| fabiogvb   
 | WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesPlease correct the script. It works with http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe
 install with playonlinux  wine version 3.0.2 windows 7 Differences@@ -1,35 +1,35 @@
 #!/usr/bin/env playonlinux-bash
 # Date : (2015-11-02 15-09)
 # Last revision : (2018-12-21 11-04)
-# Wine version used : 1.9.0, 3.0.4
+# Wine version used : 1.9.0, 3.0.2
 # Distribution used to test : Ubuntu 14.04 LTS, Ubuntu 18.10
 # Author : Martins Bruvelis
- 
+  
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
- 
+  
 TITLE="Adobe Acrobat Reader DC"
 PREFIX="AdobeAcrobatReaderDC"
-WINEVERSION="3.0.4"
+WINEVERSION="3.0.2"
 EDITOR="Adobe Systems Inc."
 GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
 AUTHOR="Martins Bruvelis"
- 
- 
+  
+  
 # Initialization
 POL_SetupWindow_Init
- 
+  
 POL_Debug_Init
- 
+  
 # Presentation
 # POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
- 
+  
 # Create Prefix
 POL_System_TmpCreate "$PREFIX"
- 
+  
 POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
- 
+  
 if [ "$INSTALL_METHOD" = "LOCAL" ]
 then
     POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
@@ -40,91 +40,91 @@
     POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
     INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
 fi
-
+ 
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
- 
+  
 # Dependencies
 POL_Call POL_Install_mspatcha
 POL_Call POL_Install_vcrun2013
 POL_Call POL_Install_FontsSmoothRGB
- 
+  
 # Installation
 POL_Wine_WaitBefore "$TITLE"
- 
+  
 POL_Wine "$INSTALLER_EXE"
- 
+  
 POL_Wine_WaitExit "$TITLE"
- 
+  
 # Fix crashes
 # Disable and delete update service
 POL_Wine --ignore-errors sc stop "AdobeARMservice"
 POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
 POL_Wine --ignore-errors sc delete "AdobeARMservice"
- 
+  
 # Disable update service executables
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv armsvc.exe armsvc.exe_disabled
 mv AdobeARM.exe AdobeARM.exe_disabled
 mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
- 
+  
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
 mv RdrCEF.exe RdrCEF.exe_disabled
- 
+  
 # Disable update and online services in registry settings
 cd "$POL_System_TmpDir"
 echo -e 'REGEDIT4
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
 "bisFirstLaunch"=dword:00000000
 "bRHPSticky"=dword:00000001
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
 "bLastExitNormal"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
 "bShowInstallFTE"=dword:00000001
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
 @="acrord32.dll"
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
 @="acrord32.dll"
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
 "bUseMUI"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
 "bProtectedMode"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
 "iRememberView"=dword:00000002
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
 "bEnhancedSecurityInBrowser"=dword:00000000
 "bEnhancedSecurityStandalone"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
 "bNeedSynchronizer"=dword:00000000
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
- 
+  
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
 "bAcroSuppressUpsell"=dword:00000001
 "bUpdater"=dword:00000000
 "bUsageMeasurement"=dword:00000000
 "iProtectedView"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
 "bAllowUserToChangeMsgPrefs"=dword:00000000
 "bDontShowMsgWhenViewingDoc"=dword:00000000
 "bShowMsgAtLaunch"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
 "bAdobeSendPluginToggle"=dword:00000000
 "bDisableWebmail"=dword:00000001
@@ -133,14 +133,14 @@
 "bTogglePrefsSync"=dword:00000001
 "bToggleWebConnectors"=dword:00000001
 "bUpdater"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
 "bDisableSharePointFeatures"=dword:00000001
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
 "bNeedSynchronizer"=dword:00000000
 "bAdobeSendPluginToggle"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
 "bCommercialPDF"=dword:00000001
 "bDisableWebmail"=dword:00000001
@@ -148,28 +148,28 @@
 "bFindMoreCustomizationsOnline"=dword:00000000
 "bFindMoreWorkflowsOnline"=dword:00000000
 "bUpdater"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
 "iCheckReader"=dword:00000000
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
 "Enabled"="NO"
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
 "EULA"=dword:00000001
- 
+  
 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
 "Adobe ARM"=-' > disable-online-features.reg
- 
+  
 POL_Wine regedit disable-online-features.reg
-
+ 
 POL_Wine_reboot
 POL_System_TmpDelete
- 
+  
 POL_Shortcut "AcroRd32.exe" "$TITLE"
 POL_Shortcut_QuietDebug "$TITLE"
- 
+  
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
- 
+  
 POL_SetupWindow_Close
-exit
\ No newline at end of file
+exit
Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2018-12-21 11-04)
# Wine version used : 1.9.0, 3.0.2
# Distribution used to test : Ubuntu 14.04 LTS, Ubuntu 18.10
# Author : Martins Bruvelis
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="3.0.2"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
  
  
# Initialization
POL_SetupWindow_Init
  
POL_Debug_Init
  
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
  
# Create Prefix
POL_System_TmpCreate "$PREFIX"
  
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
    INSTALLER_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
fi
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
  
# Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
  
# Installation
POL_Wine_WaitBefore "$TITLE"
  
POL_Wine "$INSTALLER_EXE"
  
POL_Wine_WaitExit "$TITLE"
  
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
  
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
  
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
  
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
  
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
  
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
  
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
  
POL_Wine regedit disable-online-features.reg
 
POL_Wine_reboot
POL_System_TmpDelete
  
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
  
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
  
POL_SetupWindow_Close
exit
RéponsesJeudi 20 Décembre 2018 à 18:46                                                                                     Edité par fabiogvb | 
| ThE_MarD | Mardi 7 Aoüt 2018 à 5:46 | 
| ThE_MarD   
 | MessagesHeyyo, current release script does not work. Please update the script to the one from Monday 20 November 2017 at 11:56 as that one works with Adobe Acrobat Reader DC. Réponses | 
| hongchengni | Vendredi 20 Juillet 2018 à 10:59 | 
| hongchengni   
 | MessagesHello, I want to install Adobe Acrobat Reader DC on my desktop, but the installation failed. Could you please help me? The following is the debugging info: 
 PlayOnLinux debugging tool (v4.2.10) Warning: This is a PlayOnLinux script logfile. It does not contain everything that happened in your program\'s virtual drive (wineprefix) Date: 07/20/18 10:52:38 > uname -a 
 
 It seems the downloaded wine does not work. If I change to this directory "/home/nih/.PlayOnLinux//wine/linux-x86/1.9.0/bin/", and try to run "./wine", bash also tells me: "No such file or directory". It is strange. But the file "wine" does exist. "ll" of this directory shows: total 4672 
 RéponsesSamedi 21 Juillet 2018 à 11:44                                                                                     Samedi 21 Juillet 2018 à 12:19                                                                                     Mardi 28 Aoüt 2018 à 12:55                                                                                     | 
| anyb | Mercredi 20 Juin 2018 à 19:23 | 
| anyb   
 | MessagesI updated my wine config to 3.9 (x86) on Ubuntu 18.04 and it still runs well (from my limited testing). Can anyone find a reason/bug not to update this script to a newer wine version? Réponses | 
| David Stanford | Dimanche 15 Avril 2018 à 20:12 | 
| David Stanford   
 | MessagesHello. How do I fix a stalled installation of Adobe Reader DC using PlayonLinux in Xubuntu 17.10? I have tried to download and install Adobe Reader DC using PlayonLinux. I was able to install PlayonLinux and successfully started downloading all the files, including Wine. (I think it also installed a version of Windows XP... but I'm not sure.) However, at some point (while I was out of the room) the process of installing Adobe Reader DC got hung up, with this message from PlayonLinux: "PlayonLinux has encountered a fatal error. PlayonLinux will stop the installation process. ... Error in main. Could not find program directory!" I have no idea what this means. I'm not a techy person and I have no knowledge of using command lines. Is there a solution that might work for me please? Thank you! Réponses | 
| jppialasse | Vendredi 16 Mars 2018 à 3:52 | 
| jppialasse   
 | Messagesworks great except for using the signature tool. The program crash every time you select the tool RéponsesMardi 20 Aoüt 2019 à 17:30                                                                                     Mercredi 13 Mai 2020 à 1:19                                                                                     | 
| ukos | Lundi 5 Février 2018 à 22:59 | 
| ukos   
 | Messagesinstaller rev 2016-01-13 17-01 is not running on ubuntu 17.10 Réponses | 
| martins | Lundi 20 Novembre 2017 à 11:56 | 
| martins 
 | WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpldated download URL, md5sum, and Wine versions. Differences@@ -1,35 +1,35 @@
 #!/usr/bin/env playonlinux-bash
 # Date : (2015-11-02 15-09)
-# Last revision : (2016-01-13 17-01)
-# Wine version used : 1.9.0
-# Distribution used to test : Ubuntu 14.04 LTS
+# Last revision : (2017-11-20 11-38)
+# Wine version used : 2.21
+# Distribution used to test : Ubuntu 16.04 LTS
 # Author : Martins Bruvelis
-
+ 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITLE="Adobe Acrobat Reader DC"
 PREFIX="AdobeAcrobatReaderDC"
-WINEVERSION="1.9.0"
+WINEVERSION="2.21"
 EDITOR="Adobe Systems Inc."
 GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
 AUTHOR="Martins Bruvelis"
-
-
+ 
+ 
 # Initialization
 POL_SetupWindow_Init
-
+ 
 POL_Debug_Init
-
+ 
 # Presentation
 # POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
-
+ 
 # Create Prefix
 POL_System_TmpCreate "$PREFIX"
-
+ 
 POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
-
+ 
 if [ "$INSTALL_METHOD" = "LOCAL" ]
 then
     POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
@@ -37,100 +37,100 @@
 elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
 then
     cd "$POL_System_TmpDir"
-    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
-    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
+    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1800920044/AcroRdrDC1800920044_en_US.exe" "784b5f664e5917e233d925726e393a52"
+    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1800920044_en_US.exe"
 fi
-
+ 
 # Create Prefix
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
-
+ 
 # Configuration
 Set_OS "winxp"
-
+ 
 # Dependencies
 POL_Call POL_Install_mspatcha
 POL_Call POL_Install_vcrun2013
 POL_Call POL_Install_FontsSmoothRGB
-
+ 
 # Installation
 POL_Wine_WaitBefore "$TITLE"
-
-Set_OS "win7"
-
+ 
+Set_OS "win10"
+ 
 POL_Wine "$INSTALLER_EXE"
-
+ 
 POL_Wine_WaitExit "$TITLE"
-
+ 
 # Fix crashes
 # Disable and delete update service
 POL_Wine --ignore-errors sc stop "AdobeARMservice"
 POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
 POL_Wine --ignore-errors sc delete "AdobeARMservice"
-
+ 
 # Disable update service executables
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv armsvc.exe armsvc.exe_disabled
 mv AdobeARM.exe AdobeARM.exe_disabled
 mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
-
+ 
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
 mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
 mv RdrCEF.exe RdrCEF.exe_disabled
-
+ 
 # Disable update and online services in registry settings
 cd "$POL_System_TmpDir"
 echo -e 'REGEDIT4
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
 "bisFirstLaunch"=dword:00000000
 "bRHPSticky"=dword:00000001
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
 "bLastExitNormal"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
 "bShowInstallFTE"=dword:00000001
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
 @="acrord32.dll"
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
 @="acrord32.dll"
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
 "bUseMUI"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
 "bProtectedMode"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
 "iRememberView"=dword:00000002
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
 "bEnhancedSecurityInBrowser"=dword:00000000
 "bEnhancedSecurityStandalone"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
 "bNeedSynchronizer"=dword:00000000
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
-
+ 
 [HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
 "bAcroSuppressUpsell"=dword:00000001
 "bUpdater"=dword:00000000
 "bUsageMeasurement"=dword:00000000
 "iProtectedView"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
 "bAllowUserToChangeMsgPrefs"=dword:00000000
 "bDontShowMsgWhenViewingDoc"=dword:00000000
 "bShowMsgAtLaunch"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
 "bAdobeSendPluginToggle"=dword:00000000
 "bDisableWebmail"=dword:00000001
@@ -139,14 +139,14 @@
 "bTogglePrefsSync"=dword:00000001
 "bToggleWebConnectors"=dword:00000001
 "bUpdater"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
 "bDisableSharePointFeatures"=dword:00000001
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
 "bNeedSynchronizer"=dword:00000000
 "bAdobeSendPluginToggle"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
 "bCommercialPDF"=dword:00000001
 "bDisableWebmail"=dword:00000001
@@ -154,29 +154,29 @@
 "bFindMoreCustomizationsOnline"=dword:00000000
 "bFindMoreWorkflowsOnline"=dword:00000000
 "bUpdater"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
 "iCheckReader"=dword:00000000
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
 "Enabled"="NO"
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
 "EULA"=dword:00000001
-
+ 
 [HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
 "Adobe ARM"=-' > disable-online-features.reg
-
+ 
 POL_Wine regedit disable-online-features.reg
-
+ 
 Set_OS "winxp"
 POL_Wine_reboot
 POL_System_TmpDelete
-
+ 
 POL_Shortcut "AcroRd32.exe" "$TITLE"
 POL_Shortcut_QuietDebug "$TITLE"
-
+ 
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
-
+ 
 POL_SetupWindow_Close
 exit
\ No newline at end of file
Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2017-11-20 11-38)
# Wine version used : 2.21
# Distribution used to test : Ubuntu 16.04 LTS
# Author : Martins Bruvelis
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="2.21"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
 
 
# Initialization
POL_SetupWindow_Init
 
POL_Debug_Init
 
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_System_TmpCreate "$PREFIX"
 
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
 
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
    INSTALLER_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1800920044/AcroRdrDC1800920044_en_US.exe" "784b5f664e5917e233d925726e393a52"
    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1800920044_en_US.exe"
fi
 
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
# Configuration
Set_OS "winxp"
 
# Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
 
# Installation
POL_Wine_WaitBefore "$TITLE"
 
Set_OS "win10"
 
POL_Wine "$INSTALLER_EXE"
 
POL_Wine_WaitExit "$TITLE"
 
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
 
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
 
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
 
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
 
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
 
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
 
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
 
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
 
POL_Wine regedit disable-online-features.reg
 
Set_OS "winxp"
POL_Wine_reboot
POL_System_TmpDelete
 
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
 
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
 
POL_SetupWindow_Close
exitRéponses | 
| inksi | Lundi 13 Novembre 2017 à 14:52 | 
| inksi   
 | MessagesHi, We ran this well on Mint 17 but on an upgrade (full backup and install) to Mint 18.2 we cannot get this to run. I installed from the package manner then have uninstalled all Wine and PlayOnLinux and reinstalled from the tar file on this site (PlayOnLinux_4.2.12.tar.gz) I have downloaded the correct file from Adobe thus trying to get a working install from POL default as well as using my own Adobe file. No success. I have POL 4.2.12 which installed Wine 1.9.0 for this Adobe Reader DC. The previous Mint 17 install was only done ealier this year so not very far back in the chain. I note that we get the same error everytime from first install attempt. "Error in POL_Wine If your program is running, just ignore this message" .. but not running. I note the following logged: wine client error:0: version mismatch 491/447. Not sure what to do here since I thought that POL installs its own wine version as needed? Thanks for any help. inksi 
 
 
 Réponses | 
| Nathan R | Lundi 27 Mars 2017 à 15:35 | 
| Nathan R   
 | MessagesI was able to get it on a reboot. Still no pkcs11 support that I can figure out but it looks good! Réponses | 
| Nathan R | Lundi 27 Mars 2017 à 14:39 | 
| Nathan R   
 | MessagesHi! Gave this a shot and was not able to install. Here are my logs: 
 
 PlayOnLinux debugging tool (v4.2.10) Warning: This is a PlayOnLinux script logfile. It does not contain everything that happened in your program\'s virtual drive (wineprefix) Date: 03/27/17 08:27:03 > uname -a 
 
 Réponses | 
| abraxas | Mercredi 24 Aoüt 2016 à 22:24 | 
| abraxas   
 | MessagesObviously the download link has broken. RéponsesVendredi 6 Janvier 2017 à 19:37                                                                                     | 
| 7z4r | Jeudi 28 Juillet 2016 à 3:31 | 
| 7z4r   
 | MessagesMany thanks, you saved me lots of trouble! I had one specific .pdf to edit and certain parts work only in adobe - not on other alternatives... Réponses | 
| boeleman | Vendredi 27 Mai 2016 à 2:55 | 
| boeleman   
 | MessagesThe program seems to run well. I found one issue however. I made a shortcut on my desktop and when I run acrobat by clicking on this shortcut I get the following message when I exit: Error in POL_Wine If your program is running, just ignore this message Réponses | 
| dev.kkan | Vendredi 22 Avril 2016 à 12:22 | 
| dev.kkan   
 | MessagesHello , Its not able to install , please provide new file Thanks & regards Dev. 
 RéponsesSamedi 23 Avril 2016 à 20:27                                                                                     Samedi 23 Avril 2016 à 20:27                                                                                     Samedi 23 Avril 2016 à 20:32                                                                                     Jeudi 28 Avril 2016 à 13:36                                                                                     Samedi 7 Janvier 2017 à 0:06                                                                                     Samedi 7 Janvier 2017 à 0:07                                                                                     | 
| martins | Mercredi 13 Janvier 2016 à 16:09 | 
| martins 
 | WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -1,7 +1,7 @@
 #!/usr/bin/env playonlinux-bash
 # Date : (2015-11-02 15-09)
-# Last revision : (2016-01-92 21-35)
-# Wine version used : 1.7.54
+# Last revision : (2016-01-13 17-01)
+# Wine version used : 1.9.0
 # Distribution used to test : Ubuntu 14.04 LTS
 # Author : Martins Bruvelis
 
@@ -37,8 +37,8 @@
 elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
 then
     cd "$POL_System_TmpDir"
-    POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/1500920069/AcroRdrDC1500920069_en_US.exe" "7dcf9068798b90fae0b25b5e99a36678"
-    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1500920069_en_US.exe"
+    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
+    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
 fi
 
 # Create Prefix
Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2016-01-13 17-01)
# Wine version used : 1.9.0
# Distribution used to test : Ubuntu 14.04 LTS
# Author : Martins Bruvelis
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="1.9.0"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
    INSTALLER_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1501020056/AcroRdrDC1501020056_en_US.exe" "3a28dc6cb03067b0609b6007c16eec4a"
    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1501020056_en_US.exe"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
# Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
# Installation
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_Wine "$INSTALLER_EXE"
POL_Wine_WaitExit "$TITLE"
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
POL_Wine regedit disable-online-features.reg
Set_OS "winxp"
POL_Wine_reboot
POL_System_TmpDelete
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
POL_SetupWindow_Close
exitRéponsesMercredi 13 Janvier 2016 à 16:13                                                                                     | 
| martins | Samedi 9 Janvier 2016 à 20:53 | 
| martins 
 | WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,182 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2015-11-02 15-09) +# Last revision : (2016-01-92 21-35) +# Wine version used : 1.7.54 +# Distribution used to test : Ubuntu 14.04 LTS +# Author : Martins Bruvelis + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Adobe Acrobat Reader DC" +PREFIX="AdobeAcrobatReaderDC" +WINEVERSION="1.9.0" +EDITOR="Adobe Systems Inc." +GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html" +AUTHOR="Martins Bruvelis" + + +# Initialization +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" + INSTALLER_EXE="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/1500920069/AcroRdrDC1500920069_en_US.exe" "7dcf9068798b90fae0b25b5e99a36678" + INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1500920069_en_US.exe" +fi + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +# Dependencies +POL_Call POL_Install_mspatcha +POL_Call POL_Install_vcrun2013 +POL_Call POL_Install_FontsSmoothRGB + +# Installation +POL_Wine_WaitBefore "$TITLE" + +Set_OS "win7" + +POL_Wine "$INSTALLER_EXE" + +POL_Wine_WaitExit "$TITLE" + +# Fix crashes +# Disable and delete update service +POL_Wine --ignore-errors sc stop "AdobeARMservice" +POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled +POL_Wine --ignore-errors sc delete "AdobeARMservice" + +# Disable update service executables +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')" +mv armsvc.exe armsvc.exe_disabled +mv AdobeARM.exe AdobeARM.exe_disabled +mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled + +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')" +mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled +mv RdrCEF.exe RdrCEF.exe_disabled + +# Disable update and online services in registry settings +cd "$POL_System_TmpDir" +echo -e 'REGEDIT4 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral] +"bisFirstLaunch"=dword:00000000 +"bRHPSticky"=dword:00000001 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection] +"bLastExitNormal"=dword:00000000 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog] +"bShowInstallFTE"=dword:00000001 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current] +@="acrord32.dll" + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next] +@="acrord32.dll" + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI] +"bUseMUI"=dword:00000000 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged] +"bProtectedMode"=dword:00000000 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews] +"iRememberView"=dword:00000002 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager] +"bEnhancedSecurityInBrowser"=dword:00000000 +"bEnhancedSecurityStandalone"=dword:00000000 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows] +"bNeedSynchronizer"=dword:00000000 + +[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC] + +[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com] + +[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2] + +[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown] +"bAcroSuppressUpsell"=dword:00000001 +"bUpdater"=dword:00000000 +"bUsageMeasurement"=dword:00000000 +"iProtectedView"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM] +"bAllowUserToChangeMsgPrefs"=dword:00000000 +"bDontShowMsgWhenViewingDoc"=dword:00000000 +"bShowMsgAtLaunch"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices] +"bAdobeSendPluginToggle"=dword:00000000 +"bDisableWebmail"=dword:00000001 +"bToggleAdobeDocumentServices"=dword:00000001 +"bToggleAdobeSign"=dword:00000001 +"bTogglePrefsSync"=dword:00000001 +"bToggleWebConnectors"=dword:00000001 +"bUpdater"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint] +"bDisableSharePointFeatures"=dword:00000001 + +[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud] +"bNeedSynchronizer"=dword:00000000 +"bAdobeSendPluginToggle"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles] +"bCommercialPDF"=dword:00000001 +"bDisableWebmail"=dword:00000001 +"bEnableFlash"=dword:00000000 +"bFindMoreCustomizationsOnline"=dword:00000000 +"bFindMoreWorkflowsOnline"=dword:00000000 +"bUpdater"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM] +"iCheckReader"=dword:00000000 + +[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization] +"Enabled"="NO" + +[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer] +"EULA"=dword:00000001 + +[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run] +"Adobe ARM"=-' > disable-online-features.reg + +POL_Wine regedit disable-online-features.reg + +Set_OS "winxp" +POL_Wine_reboot +POL_System_TmpDelete + +POL_Shortcut "AcroRd32.exe" "$TITLE" +POL_Shortcut_QuietDebug "$TITLE" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2016-01-92 21-35)
# Wine version used : 1.7.54
# Distribution used to test : Ubuntu 14.04 LTS
# Author : Martins Bruvelis
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="1.9.0"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
    INSTALLER_EXE="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/1500920069/AcroRdrDC1500920069_en_US.exe" "7dcf9068798b90fae0b25b5e99a36678"
    INSTALLER_EXE="$POL_System_TmpDir/AcroRdrDC1500920069_en_US.exe"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
# Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
# Installation
POL_Wine_WaitBefore "$TITLE"
Set_OS "win7"
POL_Wine "$INSTALLER_EXE"
POL_Wine_WaitExit "$TITLE"
# Fix crashes
# Disable and delete update service
POL_Wine --ignore-errors sc stop "AdobeARMservice"
POL_Wine --ignore-errors sc config "AdobeARMservice" start=disabled
POL_Wine --ignore-errors sc delete "AdobeARMservice"
# Disable update service executables
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Common Files/Adobe/ARM/1.0" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv armsvc.exe armsvc.exe_disabled
mv AdobeARM.exe AdobeARM.exe_disabled
mv AdobeARMHelper.exe AdobeARMHelper.exe_disabled
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Adobe/Acrobat Reader DC/Reader/AcroCEF" || POL_Debug_Fatal "$(eval_gettext 'Could not find program directory!')"
mv RdrServicesUpdater.exe RdrServicesUpdater.exe_disabled
mv RdrCEF.exe RdrCEF.exe_disabled
# Disable update and online services in registry settings
cd "$POL_System_TmpDir"
echo -e 'REGEDIT4
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\AVGeneral]
"bisFirstLaunch"=dword:00000000
"bRHPSticky"=dword:00000001
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\ExitSection]
"bLastExitNormal"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\FTEDialog]
"bShowInstallFTE"=dword:00000001
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\current]
@="acrord32.dll"
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\next]
@="acrord32.dll"
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Language\\UseMUI]
"bUseMUI"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Privileged]
"bProtectedMode"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\RememberedViews]
"iRememberView"=dword:00000002
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\TrustManager]
"bEnhancedSecurityInBrowser"=dword:00000000
"bEnhancedSecurityStandalone"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Acrobat Reader\\DC\\Workflows]
"bNeedSynchronizer"=dword:00000000
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC]
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com]
[HKEY_CURRENT_USER\\Software\\Adobe\\Adobe Synchronizer\\DC\\Acrobat.com.v2]
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown]
"bAcroSuppressUpsell"=dword:00000001
"bUpdater"=dword:00000000
"bUsageMeasurement"=dword:00000000
"iProtectedView"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cIPM]
"bAllowUserToChangeMsgPrefs"=dword:00000000
"bDontShowMsgWhenViewingDoc"=dword:00000000
"bShowMsgAtLaunch"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cServices]
"bAdobeSendPluginToggle"=dword:00000000
"bDisableWebmail"=dword:00000001
"bToggleAdobeDocumentServices"=dword:00000001
"bToggleAdobeSign"=dword:00000001
"bTogglePrefsSync"=dword:00000001
"bToggleWebConnectors"=dword:00000001
"bUpdater"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cSharePoint]
"bDisableSharePointFeatures"=dword:00000001
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cCloud]
"bNeedSynchronizer"=dword:00000000
"bAdobeSendPluginToggle"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Policies\\Adobe\\Acrobat Reader\\DC\\FeatureLockDown\\cWebmailProfiles]
"bCommercialPDF"=dword:00000001
"bDisableWebmail"=dword:00000001
"bEnableFlash"=dword:00000000
"bFindMoreCustomizationsOnline"=dword:00000000
"bFindMoreWorkflowsOnline"=dword:00000000
"bUpdater"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Adobe ARM\\1.0\\ARM]
"iCheckReader"=dword:00000000
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\Installer\\Optimization]
"Enabled"="NO"
[HKEY_LOCAL_MACHINE\\Software\\Adobe\\Acrobat Reader\\DC\\AdobeViewer]
"EULA"=dword:00000001
[HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Run]
"Adobe ARM"=-' > disable-online-features.reg
POL_Wine regedit disable-online-features.reg
Set_OS "winxp"
POL_Wine_reboot
POL_System_TmpDelete
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and services do not work.')" "$TITLE"
POL_SetupWindow_Close
exitRéponses | 
| martins | Lundi 2 Novembre 2015 à 23:28 | 
| martins 
 | WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,78 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2015-11-02 15-09) +# Last revision : (2015-11-02 23-41) +# Wine version used : 1.7.54 +# Distribution used to test : Ubuntu 14.04 LTS +# Author : Martins Bruvelis + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Adobe Acrobat Reader DC" +PREFIX="AdobeAcrobatReaderDC" +WINEVERSION="1.7.54" +EDITOR="Adobe Systems Inc." +GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html" +AUTHOR="Martins Bruvelis" + + +#Initialization +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select $TITLE (windows installer package file, MSI)." "$TITLE" + INSTALLER_MSI="$APP_ANSWER" + POL_SetupWindow_browse "Please select $TITLE update file (windows installer patch file, MSP)." "$TITLE" + INSTALLER_MSP="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/1500720033/AcroRdrDC1500720033_en_US.msi" "03602e4c6f342f6cf8253661c72c6638" + POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/1500920077/AcroRdrDCUpd1500920077.msp" "775a31da0a4d38b773e97b1f54f138a4" + INSTALLER_MSI="$POL_System_TmpDir/AcroRdrDC1500720033_en_US.msi" + INSTALLER_MSP="$POL_System_TmpDir/AcroRdrDCUpd1500920077.msp" +fi + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +#Dependencies +POL_Call POL_Install_mspatcha +POL_Call POL_Install_vcrun2013 +POL_Call POL_Install_FontsSmoothRGB + +# Installation +POL_SetupWindow_wait "Installation in progress." "$TITLE installation" +Set_OS "win7" +# Do quiet install +POL_Wine msiexec /i "$INSTALLER_MSI" /quiet +# Do quiet update of installation +POL_Wine msiexec /p "$INSTALLER_MSP" /quiet +POL_Wine_reboot +Set_OS "winxp" + +POL_System_TmpDelete + +POL_Shortcut "AcroRd32.exe" "$TITLE" +POL_Shortcut_QuietDebug "$TITLE" + +POL_SetupWindow_message "NOTICE: $TITLE cannot open in Protected Mode, on first run select 'Always open with Protected Mode disabled'. Online services and updates do not work." "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : (2015-11-02 15-09)
# Last revision : (2015-11-02 23-41)
# Wine version used : 1.7.54
# Distribution used to test : Ubuntu 14.04 LTS
# Author : Martins Bruvelis
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Adobe Acrobat Reader DC"
PREFIX="AdobeAcrobatReaderDC"
WINEVERSION="1.7.54"
EDITOR="Adobe Systems Inc."
GAME_URL="https://acrobat.adobe.com/us/en/products/pdf-reader.html"
AUTHOR="Martins Bruvelis"
#Initialization
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
# POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "Please select $TITLE (windows installer package file, MSI)." "$TITLE"
    INSTALLER_MSI="$APP_ANSWER"
    POL_SetupWindow_browse "Please select $TITLE update file (windows installer patch file, MSP)." "$TITLE"
    INSTALLER_MSP="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/1500720033/AcroRdrDC1500720033_en_US.msi" "03602e4c6f342f6cf8253661c72c6638"
    POL_Download "ftp://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/1500920077/AcroRdrDCUpd1500920077.msp" "775a31da0a4d38b773e97b1f54f138a4"
    INSTALLER_MSI="$POL_System_TmpDir/AcroRdrDC1500720033_en_US.msi"
    INSTALLER_MSP="$POL_System_TmpDir/AcroRdrDCUpd1500920077.msp"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_mspatcha
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_FontsSmoothRGB
# Installation
POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
Set_OS "win7"
# Do quiet install
POL_Wine msiexec /i "$INSTALLER_MSI" /quiet
# Do quiet update of installation
POL_Wine msiexec /p "$INSTALLER_MSP" /quiet
POL_Wine_reboot
Set_OS "winxp"
POL_System_TmpDelete
POL_Shortcut "AcroRd32.exe" "$TITLE"
POL_Shortcut_QuietDebug "$TITLE"
POL_SetupWindow_message "NOTICE: $TITLE cannot open in Protected Mode, on first run select 'Always open with Protected Mode disabled'. Online services and updates do not work." "$TITLE"
POL_SetupWindow_Close
exitRéponses | 
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
 Installer ce programme
 Installer ce programme                        

