Adobe Acrobat Reader DC
Informatie
| Creator | Bericht | 
|---|---|
| martins 
 | InformationThis installer has been approved by the team. InformatiePlatforms:   Feedbacks13 11 OmschrijvingMore powerful than other PDF software, Adobe Acrobat Reader DC is the free, trusted standard for viewing, printing, and annotating PDFs. Known issues (2017) : 
 Broncode#!/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:
Contribute| Member | Bericht | 
| GuerreroAzul | Donderdag 14 Maart 2024 om 16:47 | 
| GuerreroAzul 
 | WarningThis update has not been approved yet by the team. BerichtUpdate 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
New source code#!/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 0AntwoordenAangepast door GuerreroAzul | 
| onecallednick | Zaterdag 8 Januari 2022 om 1:22 | 
| onecallednick   
 | BerichtCrashed on clicking the Fill and Sign button. That was the whole reason I installed it. Antwoorden | 
| playlinux_user | Dinsdag 27 April 2021 om 2:05 | 
| playlinux_user   
 | BerichtI 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. :( AntwoordenAangepast door playlinux_user | 
| YnotTman | Zondag 4 April 2021 om 18:51 | 
| YnotTman   
 | BerichtI 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? Antwoorden | 
| hvaria | Donderdag 25 Februari 2021 om 16:12 | 
| hvaria   
 | BerichtThe 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? Antwoorden | 
| Dadu042 | Maandag 3 Februari 2020 om 9:49 | 
| Dadu042   
 | InformationThis update has been approved by the team. 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 New source code#!/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
exitAntwoordenWoensdag 13 Mei 2020 om 0:46                                                                                     | 
| hvaria | Maandag 3 Februari 2020 om 7:35 | 
| hvaria   
 | BerichtSo 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 
 AntwoordenAangepast door hvaria | 
| Dadu042 | Woensdag 18 December 2019 om 22:01 | 
| Dadu042   
 | WarningThis update has not been approved yet by the team. 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
New source code#!/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
exitAntwoorden | 
| hvaria | Donderdag 14 November 2019 om 12:15 | 
| hvaria   
 | BerichtReader 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.  Antwoorden | 
| sukumi | Woensdag 25 September 2019 om 13:39 | 
| sukumi   
 | BerichtHi 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! Antwoorden | 
| greenhornet | Dinsdag 20 Augustus 2019 om 17:38 | 
| greenhornet   
 | BerichtIt 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 
 AntwoordenDinsdag 20 Augustus 2019 om 20:48                                                                                     Vrijdag 23 Augustus 2019 om 21:06                                                                                     Zondag 3 November 2019 om 13:32                                                                                     Maandag 3 Februari 2020 om 17:36                                                                                     Aangepast door greenhornet | 
| hvaria | Dinsdag 6 Augustus 2019 om 7:06 | 
| hvaria   
 | BerichtWorks 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 AntwoordenAangepast door hvaria | 
| LinuxScripter | Zaterdag 22 December 2018 om 11:05 | 
| LinuxScripter   
 | WarningThis update has not been approved yet by the team. BerichtUsing 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
New source code#!/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
exitAntwoordenZaterdag 22 December 2018 om 11:58                                                                                     Woensdag 2 Januari 2019 om 22:27                                                                                     | 
| fabiogvb | Donderdag 20 December 2018 om 16:27 | 
| fabiogvb   
 | WarningThis update has not been approved yet by the team. BerichtPlease 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
New source code#!/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
AntwoordenDonderdag 20 December 2018 om 18:46                                                                                     Aangepast door fabiogvb | 
| ThE_MarD | Dinsdag 7 Augustus 2018 om 5:46 | 
| ThE_MarD   
 | BerichtHeyyo, 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. Antwoorden | 
| hongchengni | Vrijdag 20 Juli 2018 om 10:59 | 
| hongchengni   
 | BerichtHello, 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 
 AntwoordenZaterdag 21 Juli 2018 om 11:44                                                                                     Zaterdag 21 Juli 2018 om 12:19                                                                                     Dinsdag 28 Augustus 2018 om 12:55                                                                                     | 
| anyb | Woensdag 20 Juni\ 2018 om 19:23 | 
| anyb   
 | BerichtI 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? Antwoorden | 
| David Stanford | Zondag 15 April 2018 om 20:12 | 
| David Stanford   
 | BerichtHello. 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! Antwoorden | 
| jppialasse | Vrijdag 16 Maart 2018 om 3:52 | 
| jppialasse   
 | Berichtworks great except for using the signature tool. The program crash every time you select the tool AntwoordenDinsdag 20 Augustus 2019 om 17:30                                                                                     Woensdag 13 Mei 2020 om 1:19                                                                                     | 
| ukos | Maandag 5 Februari 2018 om 22:59 | 
| ukos   
 | Berichtinstaller rev 2016-01-13 17-01 is not running on ubuntu 17.10 Antwoorden | 
| martins | Maandag 20 November 2017 om 11:56 | 
| martins 
 | WarningThis update has not been approved yet by the team. BerichtUpldated 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
New source code#!/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
exitAntwoorden | 
| inksi | Maandag 13 November 2017 om 14:52 | 
| inksi   
 | BerichtHi, 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 
 
 
 Antwoorden | 
| Nathan R | Maandag 27 Maart 2017 om 15:35 | 
| Nathan R   
 | BerichtI was able to get it on a reboot. Still no pkcs11 support that I can figure out but it looks good! Antwoorden | 
| Nathan R | Maandag 27 Maart 2017 om 14:39 | 
| Nathan R   
 | BerichtHi! 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 
 
 Antwoorden | 
| abraxas | Woensdag 24 Augustus 2016 om 22:24 | 
| abraxas   
 | BerichtObviously the download link has broken. AntwoordenVrijdag 6 Januari 2017 om 19:37                                                                                     | 
| 7z4r | Donderdag 28 Juli 2016 om 3:31 | 
| 7z4r   
 | BerichtMany 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... Antwoorden | 
| boeleman | Vrijdag 27 Mei 2016 om 2:55 | 
| boeleman   
 | BerichtThe 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 Antwoorden | 
| dev.kkan | Vrijdag 22 April 2016 om 12:22 | 
| dev.kkan   
 | BerichtHello , Its not able to install , please provide new file Thanks & regards Dev. 
 AntwoordenZaterdag 23 April 2016 om 20:27                                                                                     Zaterdag 23 April 2016 om 20:27                                                                                     Zaterdag 23 April 2016 om 20:32                                                                                     Donderdag 28 April 2016 om 13:36                                                                                     Zaterdag 7 Januari 2017 om 0:06                                                                                     Zaterdag 7 Januari 2017 om 0:07                                                                                     | 
| martins | Woensdag 13 Januari 2016 om 16:09 | 
| martins 
 | WarningThis update has not been approved yet by the team. 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
New source code#!/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
exitAntwoordenWoensdag 13 Januari 2016 om 16:13                                                                                     | 
| martins | Zaterdag 9 Januari 2016 om 20:53 | 
| martins 
 | WarningThis update has not been approved yet by the team. 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 New source code#!/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
exitAntwoorden | 
| martins | Maandag 2 November 2015 om 23:28 | 
| martins 
 | WarningThis update has not been approved yet by the team. 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 New source code#!/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
exitAntwoorden | 
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
 Installeer dit programma
 Installeer dit programma                        

