Adobe Creative Cloud
Informations
Creator | Message |
---|---|
corbindavenport
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks2 2 DescriptionThis is an installer for Adobe Creative Cloud (Wikipedia). Once installed, you can download Adobe applications through the Adobe Application Manager. This script can download the Creative Suite install file from Adobe's website, so you don't have to download the .exe file manually. A (free) Adobe ID is required to install additional applications. Most Adobe applications require a paid subscription. See also: AppDB.winehq.org (tests reports with Wine only).
List of apps available to download (as of October 2017): NOTE: Only Application Manager, Photoshop CC 2015, and Lightroom 5 have been extensively tested (2017).
ScreenshotsSource code#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 18.04 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # CHANGELOG: # [Corbin Davenport] (2017-10-03) # First script. Based on RoninDusette's script from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html # [Dadu042] (2019-10-28) # Wine 2.8-staging -> 3.0.3 (latest Wine version available with POL v4.2.12) # Set_OS winxp -> win7 # Changes in POL_SetupWindow_message # Warning: Installer (File Version: 4.0.1.188) does still fail to complete after 3%. # KNOWN ISSUES: # Wine x86 2.8-staging (2019), 3.21 and 4.0.2 and 4.15 (2019): Installer (Adobe Installation Manager) does crash at 3%. File Version: 4.0.1.188 (note: since the installer does crash, I have to use virustotal.com to see the file version). # Wine x86 3.0.3 (2019): Installer (Adobe Installation Manager) does stop after 3%, a error message appear showing 'Error 72'. https://helpx.adobe.com/creative-cloud/kb/Error-code-42-or-72-when-installing-or-updating-Creative-Cloud-desktop-app.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="3.0.3" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin_Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" # Determine Architecture # POL_System_SetArch "amd64" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_System_TmpCreate "AppManagerTmp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "http://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Manager will be installed and you finish logging in, come back to this setup window and click Next. This is because some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Monday 28 October 2019 at 10:21 |
Dadu042
|
InformationThis update has been approved by the team. MessageSome improvements, however Warning: Installer (File Version: 4.0.1.188) does still fail to complete after 3%. Differences@@ -39,13 +39,16 @@ # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "$WINEVERSION" -Set_OS "win7" -POL_System_TmpCreate "AppManagerTmp" # Determine Architecture # POL_System_SetArch "amd64" POL_System_SetArch "x86" + +POL_Wine_PrefixCreate "$WINEVERSION" +Set_OS "win7" + +POL_System_TmpCreate "AppManagerTmp" + # Install dependencies POL_Call POL_Install_atmlib New source code#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 18.04 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # CHANGELOG: # [Corbin Davenport] (2017-10-03) # First script. Based on RoninDusette's script from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html # [Dadu042] (2019-10-28) # Wine 2.8-staging -> 3.0.3 (latest Wine version available with POL v4.2.12) # Set_OS winxp -> win7 # Changes in POL_SetupWindow_message # Warning: Installer (File Version: 4.0.1.188) does still fail to complete after 3%. # KNOWN ISSUES: # Wine x86 2.8-staging (2019), 3.21 and 4.0.2 and 4.15 (2019): Installer (Adobe Installation Manager) does crash at 3%. File Version: 4.0.1.188 (note: since the installer does crash, I have to use virustotal.com to see the file version). # Wine x86 3.0.3 (2019): Installer (Adobe Installation Manager) does stop after 3%, a error message appear showing 'Error 72'. https://helpx.adobe.com/creative-cloud/kb/Error-code-42-or-72-when-installing-or-updating-Creative-Cloud-desktop-app.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="3.0.3" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin_Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" # Determine Architecture # POL_System_SetArch "amd64" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_System_TmpCreate "AppManagerTmp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "http://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Manager will be installed and you finish logging in, come back to this setup window and click Next. This is because some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesTuesday 19 November 2019 at 14:46
Tuesday 19 November 2019 at 19:36
Friday 8 May 2020 at 17:13
Tuesday 28 December 2021 at 12:49
Edited by Dadu042 |
Dadu042 | Monday 28 October 2019 at 9:56 |
Dadu042
|
MessageInstaller (Adobe Installation Program) does crash at 3%. File Version: 4.0.1.188 (note: since the installer does crash, I have to use virustotal.com to see the file version).
I switch this script page to 'testing'. RepliesEdited by Dadu042 |
Dadu042 | Sunday 2 June 2019 at 22:24 |
Dadu042
|
MessageI moved the picture to the right place and added some link in the Description. Replies |
oovyxd | Thursday 21 March 2019 at 13:13 |
oovyxd
|
WarningThis update has not been approved yet by the team. MessageFixed Download and patched for 2.8-staging Differences@@ -12,7 +12,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" -WINEVERSION="2.17-staging" +WINEVERSION="2.8-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" @@ -53,7 +53,7 @@ then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine - POL_Download "https://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" + POL_Download "http://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi New source code#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 17.10 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # Based on RoninDusette's script # from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="2.8-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_System_TmpCreate "AppManagerTmp" Set_OS "winxp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "http://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Application Manager is installed and you finish logging in, come back to this setup window and click Next. Some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" Set_OS "win7" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
oovyxd | Thursday 21 March 2019 at 12:51 |
oovyxd
|
WarningThis update has not been approved yet by the team. MessagePatch to 2.8-staging Differences@@ -12,7 +12,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" -WINEVERSION="2.17-staging" +WINEVERSION="2.8-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" New source code#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 17.10 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # Based on RoninDusette's script # from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="2.8-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_System_TmpCreate "AppManagerTmp" Set_OS "winxp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "https://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Application Manager is installed and you finish logging in, come back to this setup window and click Next. Some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" Set_OS "win7" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
ZombieMariachis | Sunday 27 January 2019 at 3:26 |
ZombieMariachis
|
MessagePhotoshop CC 2015 installed just fine with no problems. However pen pressure is intermittent for me. If I lift the pen off my tablet to start a new stroke there is no longer pen pressure or tilt features. But, if I select the brush again from the presets, pen pressure and tilt are active again. Here's a video of the behavior -- https://youtu.be/BfU5A4_PeXA [01/26/19 19:15:19] - Running wine-3.9 Photoshop.exe (Working directory : /home/josh/.PlayOnLinux/wineprefix/CreativeCloud/drive_c/Program Files/Adobe/Adobe Photoshop CC 2015 (32 Bit)) RepliesEdited by ZombieMariachis |
bipco | Sunday 31 December 2017 at 22:25 |
bipco
|
MessageHi Lightroom 5 is basically working for me on Ubuntu 16.04, but can't get it to login to Lightroom Mobile - login dialog freezes after entering id & password. Login of the app to Adobe ID does work. If that was working I'd be able to use it instead of running in VMWare. Certainly runs faster than in the VM. On 4K monitor some lettering gets scrambled in settings dialogs when increasing the Windows dpi to make the menus big enough (but that's a minor detail). Thanks Warren
Replies |
corbindavenport | Tuesday 3 October 2017 at 21:02 |
corbindavenport
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,73 @@ +#!/bin/bash +# Date : (2017-10-03) +# Distribution used to test : Ubuntu 17.10 x64 +# Author : Corbin Davenport +# Licence : GPLv3 +# PlayOnLinux: 4.2.12 + +# Based on RoninDusette's script +# from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="CreativeCloud" +WINEVERSION="2.17-staging" +TITLE="Adobe Creative Cloud" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Corbin Davenport" + +#Initialization +POL_SetupWindow_Init +POL_SetupWindow_SetID 3251 + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create prefix and temporary download folder +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" +POL_System_TmpCreate "AppManagerTmp" +Set_OS "winxp" + +# Install dependencies +POL_Call POL_Install_atmlib +POL_Call POL_Install_corefonts +POL_Call POL_Install_FontsSmoothRGB +POL_Call POL_Install_gdiplus + +# Get the installer +POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + # The normal Creative Cloud setup requires Windows 7 or higher + Set_OS "win7" + POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" + POL_SetupWindow_wait "Installation in progress..." "$TITLE" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine + POL_Download "https://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" + POL_SetupWindow_wait "Installation in progress..." "$TITLE" + INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" +fi + +# Installation +POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Application Manager is installed and you finish logging in, come back to this setup window and click Next. Some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$INSTALLER" +POL_Shortcut "PDapp.exe" "Adobe Application Manager" +Set_OS "win7" +POL_System_TmpDelete + +# All done +POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 17.10 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # Based on RoninDusette's script # from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="2.17-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_System_TmpCreate "AppManagerTmp" Set_OS "winxp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "https://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Application Manager is installed and you finish logging in, come back to this setup window and click Next. Some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" Set_OS "win7" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
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