Adobe Creative Cloud

Informations

Creator Nachricht
corbindavenport Anonymous

Warning

This installer is a beta script. It means that it might not work as expected

Informations

Platforms:
Downloads: 43216
Wine: 3.0.3

Feedbacks

Description

This 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).

  • Acrobat DC
  • Audition CS6
  • Bridge CC
  • Dreamweaver CC 2015
  • Edge Animate CC 2014.1
  • Edge Code CC (Preview)
  • Edge Inspect CC
  • Edge Reflow CC (Preview)
  • Extendscript Toolkit CC
  • Extension Manager CC
  • Fireworks CS6
  • Flash Builder Premium
  • Flash Professional CS6 and Mobile Device Packaging
  • Fuse CC (Beta)
  • Gaming SDK 1.4
  • Illustrator CC 2015
  • InCopy CC 2015
  • InDesign CC 2015
  • Lightroom 5
  • Muse CC
  • Photoshop CC 2015
  • Prelude CS6
  • Touch App Plugins

Screenshots

Miniature

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

Contributions

Filters:

Contribute
Member Nachricht
Dadu042 Monday 28 October 2019 at 10:21
Dadu042

Information

This update has been approved by the team.

Nachricht

Some 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

Antworten

Anonymous
Tuesday 19 November 2019 at 14:46
Hello thanks for this update, I tried now, and is still the 72 error code at the 3% install....I have found a solution on Adobe forum...

Group policy is enabled?

https://helpx.adobe.com/creative-cloud/kb/Error-code-42-or-72-when-installing-or-updating-Creative-Cloud-desktop-app.html

could this help i litte? I will try to research how to do this, or do you already know?

 
Tuesday 19 November 2019 at 19:36
I don't know, and I found nothing useful into winehq.org
Anonymous
Friday 8 May 2020 at 17:13
is there a way to install certificates from scripts before you start the adobe creative cloud installer?
Anonymous
Tuesday 28 December 2021 at 12:49
Error in POL_Wine
Wine seems to have crashed

If your program is running, just ignore this message

Editiert von: Dadu042

Dadu042 Monday 28 October 2019 at 9:56
Dadu042

Nachricht

Installer (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'.

Antworten

Editiert von: Dadu042

Dadu042 Sunday 2 June 2019 at 22:24
Dadu042

Nachricht

I moved the picture to the right place and added some link in the Description.

Antworten

oovyxd Thursday 21 March 2019 at 13:13
oovyxd Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Nachricht

Fixed 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

Antworten

Anonymous
Sunday 5 May 2019 at 18:05
its didn't download ...
Anonymous
Sunday 5 May 2019 at 18:05
or download failed plz help me
Anonymous
Wednesday 4 September 2019 at 17:19
Cant get this working on CentOS 7.6.. It does download. But I get an error 1 from the installer.
oovyxd Thursday 21 March 2019 at 12:51
oovyxd Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Nachricht

Patch 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

Antworten

ZombieMariachis Sunday 27 January 2019 at 3:26
ZombieMariachis

Nachricht

Photoshop 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

Ubuntu 18.04.1 LTS
PlayOnLinux 4.2.12
I've tried Wine versions from 2.17 to 3.9

I think the behavior is happening around "00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos"


[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))
00ca:err:shell:HCR_GetFolderAttributes should be called for simple PIDL's only!
00ca:fixme:win:EnumDisplayDevicesW ((null),0,0x32f338,0x00000000), stub!
00ca:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32f35c 1 C) semi-stub
00ca:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32e95c 1 C) semi-stub
00ca:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32e74c 1 C) semi-stub
00ca:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32f3fc 1 C) semi-stub
00ca:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32f4bc 1 C) semi-stub
00ca:fixme:ntdll:NtSetInformationToken unimplemented class 24
00ca:fixme:ver:GetCurrentPackageId (0x32f194 (nil)): stub
00ca:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
00ca:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32f41c 1 C) semi-stub
00cf:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
00cf:fixme:wbemprox:client_security_SetBlanket 0xf7740d54, 0xa10a298, 10, 0, (null), 3, 3, (nil), 0x00000000
00cf:fixme:wbemprox:client_security_Release 0xf7740d54
00d2:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fa8c 1 C) semi-stub
00d2:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f9bc 1 C) semi-stub
00d2:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f78c 1 C) semi-stub
00d2:fixme:win:EnumDisplayDevicesW ((null),0,0x33f508,0x00000000), stub!
00d2:fixme:win:EnumDisplayDevicesW ((null),0,0x33f6b8,0x00000000), stub!
00d2:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33eb5c 1 C) semi-stub
00cf:fixme:ver:GetCurrentPackageId (0xb3ef878 (nil)): stub
00cf:fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented
00cf:fixme:advapi:LsaOpenPolicy ((null),0xb3ef938,0x00000001,0xb3ef930) stub
00cf:fixme:advapi:LsaClose (0xcafe) stub
00cf:fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented
00cf:fixme:advapi:LsaOpenPolicy ((null),0xb3ef938,0x00000001,0xb3ef930) stub
00cf:fixme:advapi:LsaClose (0xcafe) stub
00d5:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),6,3,(nil),0,(nil)) - stub!
00d5:fixme:taskschd:regtasks_get_Count 0xbbe6910,0xbf2fe44: stub
00d2:fixme:win:EnumDisplayDevicesW ((null),0,0x33e7d8,0x00000000), stub!
00cf:fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented
00cf:fixme:advapi:LsaOpenPolicy ((null),0xb3efb88,0x00000001,0xb3efb80) stub
00cf:fixme:advapi:LsaClose (0xcafe) stub
00cf:fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented
00cf:fixme:advapi:LsaOpenPolicy ((null),0xb3efb88,0x00000001,0xb3efb80) stub
00cf:fixme:advapi:LsaClose (0xcafe) stub
00e6:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),6,3,(nil),0,(nil)) - stub!
00e6:fixme:taskschd:regtasks_get_Count 0xa112a38,0xc41fe44: stub
00cf:fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented
00cf:fixme:advapi:LsaOpenPolicy ((null),0xb3efae8,0x00000001,0xb3efae0) stub
00cf:fixme:advapi:LsaClose (0xcafe) stub
00cf:fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented
00cf:fixme:advapi:LsaOpenPolicy ((null),0xb3efae8,0x00000001,0xb3efae0) stub
00cf:fixme:advapi:LsaClose (0xcafe) stub
00e9:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),6,3,(nil),0,(nil)) - stub!
00e9:fixme:taskschd:TaskFolder_RegisterTaskDefinition 0xa113890,L"AdobeAAMUpdater-1.0-Hall-9000-josh",0xa11d820,6,0xbf2fcc0 {VT_BSTR: L""},0xbf2fcb0 {VT_EMPTY},0,0xbf2fca0 {VT_BSTR: L""},0xbf2fda4: stub
00e9:fixme:taskschd:RegistrationInfo_get_SecurityDescriptor 0xbbde938,0xbf2fb00: stub
00e9:fixme:taskschd:write_triggers stub
00e9:fixme:taskschd:write_settings stub
00e9:fixme:taskschd:write_actions stub
00d2:fixme:win:EnumDisplayDevicesW ((null),0,0x33e808,0x00000000), stub!
00d2:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
00d4:fixme:ntdll:EtwEventRegister ({5eec90ab-c022-44b2-a5dd-fd716a222a15}, 0x401123, 0x67b390, 0x67b3a8) stub.
00d4:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 0x664898, 43) stub
00d4:fixme:ntdll:EtwEventRegister ({5eec90ab-c022-44b2-a5dd-fd716a222a15}, 0x10001123, 0x101ae260, 0x101ae278) stub.
00d4:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 0x101a0c80, 43) stub
00d4:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
00d4:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
00d4:fixme:wbemprox:client_security_SetBlanket 0x7dde1d54, 0x154910, 10, 0, (null), 3, 3, (nil), 0x00000000
00d4:fixme:wbemprox:client_security_Release 0x7dde1d54
00d2:fixme:win:EnumDisplayDevicesW ((null),0,0x33e508,0x00000000), stub!
00d2:fixme:win:EnumDisplayDevicesW ((null),0,0x33e9d8,0x00000000), stub!
00d2:fixme:win:EnumDisplayDevicesW ((null),0,0x33ea28,0x00000000), stub!
00d2:fixme:win:EnumDisplayDevicesW ((null),1,0x33ea28,0x00000000), stub!
00d2:fixme:win:EnumDisplayDevicesW ((null),0,0x33ebd8,0x00000000), stub!
00ca:fixme:msvcrt:type_info_name_internal_method type_info_node parameter ignored
00d2:err:module:load_builtin_dll failed to load .so lib for builtin L"OpenCL.dll": libOpenCL.so.1: cannot open shared object file: No such file or directory
00d2:fixme:msvcrt:__clean_type_info_names_internal (0x3e0cbc) stub
00d2:fixme:msvcrt:__clean_type_info_names_internal (0x103016a0) stub
00d2:fixme:msvcrt:__clean_type_info_names_internal (0x37bf70) stub
00d4:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
00d4:fixme:wbemprox:client_security_SetBlanket 0x7dde1d54, 0x135ba8, 10, 0, (null), 3, 3, (nil), 0x00000000
00d4:fixme:wbemprox:client_security_Release 0x7dde1d54
00d4:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
00d4:fixme:wbemprox:client_security_SetBlanket 0x7dde1d54, 0x15a190, 10, 0, (null), 3, 3, (nil), 0x00000000
00d4:fixme:wbemprox:client_security_Release 0x7dde1d54
00ef:fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
00ef:fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
00f0:fixme:kerberos:kerberos_SpInstanceInit 65536,0x7ccc5a2c,(nil): stub
00f2:fixme:ver:GetCurrentPackageId (0xdfdfecc (nil)): stub
00f3:fixme:ver:GetCurrentPackageId (0xe0efecc (nil)): stub
00f3:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
00f3:fixme:wbemprox:client_security_SetBlanket 0xf7740d54, 0xbc3c3a0, 10, 0, (null), 3, 3, (nil), 0x00000000
00f3:fixme:wbemprox:client_security_Release 0xf7740d54
00ca:fixme:reg:GetActiveProcessorGroupCount semi-stub, always returning 1
00fb:fixme:kerberos:kerberos_SpInstanceInit 65536,0x7e198a2c,(nil): stub
00fb:fixme:ntdll:EtwEventRegister ({5eec90ab-c022-44b2-a5dd-fd716a222a15}, 0x401123, 0x533160, 0x533178) stub.
00fb:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 0x52aea8, 43) stub
00fb:fixme:crypt:CryptStringToBinaryW Unimplemented type 4
00fb:fixme:crypt:CryptStringToBinaryW Unimplemented type 4
00fb:fixme:crypt:CryptStringToBinaryW Unimplemented type 4
00fb:fixme:crypt:CryptStringToBinaryW Unimplemented type 4
00fb:fixme:ver:GetCurrentPackageId (0x33fe24 (nil)): stub
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00ca:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x32efac 1 C) semi-stub
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
00d4:fixme:ver:GetCurrentPackageId (0x33fe24 (nil)): stub
00d4:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
00d4:fixme:ntdll:EtwEventUnregister (0) stub.
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xf785638) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xf785638) stub
00ca:fixme:dwmapi:DwmIsCompositionEnabled 0x32f3a4
00ca:fixme:wtsapi:WTSRegisterSessionNotification Stub 0x20cf8 0x00000001
00ca:fixme:win:DisableProcessWindowsGhosting : stub
00ca:fixme:win:LockWindowUpdate (0x20cf8), partial stub!
00ca:fixme:win:LockWindowUpdate ((nil)), partial stub!
0103:fixme:kerberos:kerberos_SpInstanceInit 65536,0xf78ffa2c,(nil): stub
00ca:fixme:ole:CoResumeClassObjects stub
00ca:fixme:ver:GetCurrentPackageId (0x32ee14 (nil)): stub
00ca:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
00ca:fixme:wbemprox:client_security_SetBlanket 0xf7740d54, 0x1650fa98, 10, 0, (null), 3, 3, (nil), 0x00000000
00ca:fixme:wbemprox:client_security_Release 0xf7740d54
00ca:fixme:ole:CoInitializeSecurity ((nil),-1,(nil),(nil),0,3,(nil),0,(nil)) - stub!
00ca:fixme:wbemprox:client_security_SetBlanket 0xf7740d54, 0x164b6628, 10, 0, (null), 3, 3, (nil), 0x00000000
00ca:fixme:wbemprox:client_security_Release 0xf7740d54
0138:fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
0138:fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
0103:fixme:winhttp:request_query_option unimplemented option 34
2019-01-26 19:15:25 : INFO  Environment: Scale factor from PP is 1.000000
2019-01-26 19:15:25 : INFO  Environment: m_scaleFactor is 1.000000
0139:fixme:winhttp:set_cookies unhandled attribute L"secure"
0139:fixme:winhttp:set_cookies unhandled attribute L"HttpOnly"
013d:fixme:winhttp:set_cookies unhandled attribute L"secure"
013d:fixme:winhttp:set_cookies unhandled attribute L"HttpOnly"
013b:fixme:winhttp:set_cookies unhandled attribute L"secure"
013b:fixme:winhttp:set_cookies unhandled attribute L"HttpOnly"
00ca:fixme:win:GetPhysicalCursorPos (0x32f350) semi-stub: forwarding to GetCursorPos
0143:fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
0143:fixme:winsock:WS_EnterSingleProtocolW unknown Protocol <0x00000000>
0143:fixme:winsock:WS_EnterSingleProtocolW unknown Protocol <0x00000000>
0143:fixme:ntdll:EtwEventRegister ({77754e9b-264b-4d8d-b981-e4135c1ecb0c}, 0x456490, (nil), 0x900bd0) stub.
0143:fixme:advapi:PerfStartProviderEx {3a22a8ec-297c-48ac-ab15-33ec93033fd8} 0x33fd6c 0x903bf0: stub
Error: EINVAL, invalid argument
    at new Socket (net.js:157:18)
    at createWritableStdioStream (node.js:607:18)
    at process.stdout (node.js:646:16)
    at C:\Program Files\Adobe\Adobe Photoshop CC 2015 (32 Bit)\Required\Generator-builtin\app.js:35:40
    at Object. (C:\Program Files\Adobe\Adobe Photoshop CC 2015 (32 Bit)\Required\Generator-builtin\app.js:320:2)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)
00ca:fixme:win:LockWindowUpdate (0x20cf8), partial stub!
00ca:fixme:win:LockWindowUpdate ((nil)), partial stub!
00ca:fixme:win:GetPhysicalCursorPos (0x32eda0) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:LockWindowUpdate (0x20cf8), partial stub!
00ca:fixme:win:LockWindowUpdate ((nil)), partial stub!
00ca:fixme:win:GetPhysicalCursorPos (0x32efe0) semi-stub: forwarding to GetCursorPos
00ca:fixme:wbemprox:client_security_SetBlanket 0xf7740d54, 0x164f4ee0, 10, 0, (null), 3, 3, (nil), 0x00000000
00ca:fixme:wbemprox:client_security_Release 0xf7740d54
00ca:fixme:win:EnumDisplayDevicesW ((null),0,0x32dec8,0x00000000), stub!
00ca:fixme:win:EnumDisplayDevicesW ((null),0,0x32e098,0x00000000), stub!
00ca:fixme:win:EnumDisplayDevicesW ((null),0,0x32e248,0x00000000), stub!
00ca:fixme:win:LockWindowUpdate (0x20cf8), partial stub!
00ca:fixme:win:LockWindowUpdate ((nil)), partial stub!
00ca:fixme:win:EnumDisplayDevicesW ((null),0,0x32dab8,0x00000000), stub!
00ca:fixme:font:get_outline_text_metrics failed to read full_nameW for font L"Ani"!
00ca:fixme:driver:NamedEscape ((nil), L"ATMFDA.DLL", 9474, 0, (nil), 0, (nil))
00ca:fixme:driver:NamedEscape ((nil), L"ATMFD.DLL", 9474, 0, (nil), 0, (nil))
00ca:fixme:driver:NamedEscape ((nil), L"ATMFD.DLL", 9483, 194, 0x32ceb0, 194, 0x32ceb0)
00ca:fixme:driver:NamedEscape ((nil), L"ATMFD.DLL", 9483, 194, 0x32ccf4, 194, 0x32ccf4)
00ca:fixme:dciman:DCICreatePrimary 0x1004b 0x893141c
00ca:fixme:win:LockWindowUpdate (0x20cf8), partial stub!
00ca:fixme:win:LockWindowUpdate ((nil)), partial stub!
00ca:fixme:win:LockWindowUpdate (0x20cf8), partial stub!
00ca:fixme:win:LockWindowUpdate ((nil)), partial stub!
00ca:fixme:font:get_nearest_charset TCI failing on 20000000
00ca:fixme:font:get_nearest_charset returning DEFAULT_CHARSET face->fs.fsCsb[0] = 20000000 file = L"/usr/share/fonts/truetype/fonts-gujr-extra/aakar-medium.ttf"
00ca:fixme:win:GetPhysicalCursorPos (0x32f370) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f350) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f328) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:GetPhysicalCursorPos (0x32f188) semi-stub: forwarding to GetCursorPos
00ca:fixme:win:LockWindowUpdate (0x20cf8), partial stub!
00ca:fixme:win:LockWindowUpdate ((nil)), partial stub!
00ca:fixme:ole:CoSuspendClassObjects
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x15041fc0) stub
00ca:fixme:ntdll:EtwRegisterTraceGuidsW (0x21069675, (nil), {f7b697a3-4db5-4d3b-be71-c4d284e6592f}, 7, 0x210ccdcc, (null), (null), 0x210d4888): stub
00ca:fixme:ntdll:EtwRegisterTraceGuidsW   register trace class {72b14a7d-704c-423e-92f8-7e6d64bcb92a}
00ca:fixme:ntdll:EtwRegisterTraceGuidsW   register trace class {e2091f8a-1e0a-4731-84a2-0dd57c8a5261}
00ca:fixme:ntdll:EtwRegisterTraceGuidsW   register trace class {e8a3bf1f-a86b-4390-9c60-5390b969d22c}
00ca:fixme:ntdll:EtwRegisterTraceGuidsW   register trace class {5727a00f-50be-4519-8256-f7699871fecb}
00ca:fixme:ntdll:EtwRegisterTraceGuidsW   register trace class {7e854ec7-cdc4-405a-b5b2-aaf7c9e7d40c}
00ca:fixme:ntdll:EtwRegisterTraceGuidsW   register trace class {79a60dc6-5fc8-4952-a41c-1163aeec5eb8}
00ca:fixme:ntdll:EtwRegisterTraceGuidsW   register trace class {2718d25b-5bf5-4479-8e88-babc64bdbfca}
00ca:fixme:process:GetNumaHighestNodeNumber (0x32f44c): semi-stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xca07900) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xbf2b188) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xde47864) stub
0155:fixme:ver:GetCurrentPackageId (0x33f8a0 (nil)): stub
0155:fixme:kerberos:kerberos_SpInstanceInit 65536,0x7d7d0a2c,(nil): stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x217216a0) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xf7fa9ac) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x14c772f4) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x14b74af0) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xf71d498) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xb3ab7a4) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xdaa05a4) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0xb384e6c) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x89138a0) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x7d50cbc) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x1600774c) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x7614140) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x76b4f1c) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x72ec378) stub
00ca:fixme:msvcrt:__clean_type_info_names_internal (0x7558350) stub

Antworten

Editiert von: ZombieMariachis

bipco Sunday 31 December 2017 at 22:25
bipco Anonymous

Nachricht

Hi

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

 

Antworten

corbindavenport Tuesday 3 October 2017 at 21:02
corbindavenport Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Antworten

Anonymous
Friday 3 November 2017 at 2:58
I hope it will work in my Laptop ))
Anonymous
Sunday 5 November 2017 at 3:13
it gave only errors lol
Friday 8 June 2018 at 1:02
needed set arch x64
Anonymous
Monday 19 November 2018 at 15:04
Do I have to download win64 of Creative Cloud?
Anonymous
Wednesday 27 March 2019 at 17:52
Adobe Creative Cloud didn't update please fix problme
Anonymous
Friday 29 March 2019 at 12:55
Unhandled exception: page fault on read access to 0x00000050 in 32-bit code (0x7d670aea).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7d670aea ESP:0076e600 EBP:0076e658 EFLAGS:00210206( R- -- I - -P- )
EAX:00182a30 EBX:7d6df12c ECX:0017e360 EDX:00000000
ESI:0017e348 EDI:0076e690
Stack dump:
0x0076e600: 00182a30 0017e360 00000000 7bc448ed
0x0076e610: 00000020 00110000 0076e678 7bc58c87
0x0076e620: 00110060 00000600 0076e68c 00000001
0x0076e630: 0076e650 7bce95c4 0076e6a8 00000000
0x0076e640: 0017d208 00000002 0076e6a8 7d6df12c
0x0076e650: 0017e360 0076e7a0 0076e6c8 7d65003d
Backtrace:
=>0 0x7d670aea in msxml3 (+0x50aea) (0x0076e658)
1 0x7d65003d in msxml3 (+0x3003c) (0x0076e6c8)
2 0x7d671499 in msxml3 (+0x51498) (0x0076e748)
3 0x7d64a6ee in msxml3 (+0x2a6ed) (0x0076e780)
4 0x004c89d3 in creativecloudset-up (+0xc89d2) (0x0076e7a8)
5 0x004cb9f4 in creativecloudset-up (+0xcb9f3) (0x0076e7e4)
6 0x00429220 in creativecloudset-up (+0x2921f) (0x0076e8b0)
7 0x00427111 in creativecloudset-up (+0x27110) (0x0076e9e4)
8 0x00426b3e in creativecloudset-up (+0x26b3d) (0x0076e9f8)
9 0x7bc8d990 call_thread_func_wrapper+0xb() in ntdll (0x0076ea18)
10 0x7bc90cad call_thread_func+0x7c() in ntdll (0x0076eae8)
11 0x7bc8d96e RtlRaiseException+0x21() in ntdll (0x0076eb08)
12 0x7bc98bbc in ntdll (+0x78bbb) (0x0076f358)
13 0xf7cfb3a6 start_thread+0xf5() in libpthread.so.0 (0x0076f428)
14 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
15 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
16 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
17 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
18 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
19 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
20 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
21 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
22 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
23 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
24 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
25 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
26 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
27 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
28 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
29 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
30 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
31 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
32 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
33 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
34 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
35 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
36 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
37 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
38 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
39 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
40 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
41 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
42 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
43 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
44 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
45 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
46 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
47 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
48 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
49 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
50 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
51 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
52 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
53 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
54 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
55 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
56 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
57 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
58 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
59 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
60 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
61 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
62 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
63 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
64 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
65 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
66 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
67 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
68 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
69 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
70 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
71 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
72 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
73 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
74 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
75 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
76 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
77 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
78 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
79 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
80 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
81 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
82 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
83 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
84 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
85 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
86 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
87 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
88 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
89 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
90 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
91 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
92 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
93 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
94 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
95 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
96 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
97 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
98 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
99 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
100 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
101 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
102 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
103 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
104 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
105 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
106 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
107 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
108 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
109 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
110 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
111 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
112 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
113 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
114 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
115 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
116 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
117 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
118 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
119 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
120 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
121 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
122 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
123 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
124 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
125 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
126 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
127 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
128 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
129 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
130 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
131 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
132 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
133 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
134 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
135 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
136 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
137 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
138 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
139 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
140 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
141 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
142 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
143 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
144 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
145 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
146 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
147 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
148 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
149 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
150 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
151 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
152 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
153 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
154 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
155 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
156 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
157 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
158 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
159 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
160 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
161 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
162 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
163 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
164 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
165 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
166 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
167 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
168 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
169 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
170 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
171 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
172 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
173 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
174 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
175 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
176 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
177 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
178 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
179 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
180 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
181 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
182 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
183 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
184 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
185 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
186 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
187 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
188 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
189 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
190 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
191 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
192 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
193 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
194 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
195 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
196 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
197 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
198 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
199 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
200 0xf7c134d6 __clone+0x65() in libc.so.6 (0x00000000)
0x7d670aea: call *0x50(%edx)
Modules:
Module Address Debug info Name (150 modules)
PE 400000- 66a000 Export creativecloudset-up
ELF 79a56000-7b400000 Deferred libicudata.so.60
ELF 7b400000-7b7f3000 Deferred kernel32
\-PE 7b420000-7b7f3000 \ kernel32
ELF 7b9be000-7ba00000 Deferred rsaenh
\-PE 7b9c0000-7ba00000 \ rsaenh
ELF 7bb37000-7bc00000 Deferred libgnutls.so.26
ELF 7bc00000-7bd07000 Dwarf ntdll
\-PE 7bc20000-7bd07000 \ ntdll
ELF 7bd17000-7bd9c000 Deferred libgcrypt.so.11
ELF 7bd9c000-7bdcc000 Deferred netapi32
\-PE 7bda0000-7bdcc000 \ netapi32
ELF 7bdcc000-7be00000 Deferred secur32
\-PE 7bdd0000-7be00000 \ secur32
ELF 7bf0a000-7bf1f000 Deferred schannel
\-PE 7bf10000-7bf1f000 \ schannel
ELF 7bf1f000-7c000000 Deferred libgcrypt.so.20
ELF 7c000000-7c003000 Deferred
ELF 7c011000-7c018000 Deferred libnss_dns.so.2
ELF 7c018000-7c03b000 Deferred libgpg-error.so.0
ELF 7c03b000-7c05a000 Deferred liblz4.so.1
ELF 7c05a000-7c0ec000 Deferred libsystemd.so.0
ELF 7c0ec000-7c14a000 Deferred libdbus-1.so.3
ELF 7c14a000-7c1d7000 Deferred libgmp.so.10
ELF 7c1d7000-7c20e000 Deferred libhogweed.so.4
ELF 7c20e000-7c24b000 Deferred libnettle.so.6
ELF 7c24b000-7c260000 Deferred libtasn1.so.6
ELF 7c260000-7c3e2000 Deferred libunistring.so.2
ELF 7c3e2000-7c400000 Deferred libidn2.so.0
ELF 7c406000-7c40f000 Deferred libffi.so.6
ELF 7c40f000-7c55c000 Deferred libp11-kit.so.0
ELF 7c55c000-7c592000 Deferred libk5crypto.so.3
ELF 7c592000-7c671000 Deferred libkrb5.so.3
ELF 7c671000-7c685000 Deferred libavahi-client.so.3
ELF 7c685000-7c694000 Deferred libavahi-common.so.3
ELF 7c694000-7c82e000 Deferred libgnutls.so.30
ELF 7c82e000-7c883000 Deferred libgssapi_krb5.so.2
ELF 7c883000-7c917000 Deferred libcups.so.2
ELF 7c917000-7ca49000 Deferred opengl32
\-PE 7c940000-7ca49000 \ opengl32
ELF 7ca49000-7cb9b000 Deferred wined3d
\-PE 7ca60000-7cb9b000 \ wined3d
ELF 7cb9b000-7cbc5000 Deferred dxgi
\-PE 7cba0000-7cbc5000 \ dxgi
ELF 7cbc5000-7cbef000 Deferred iphlpapi
\-PE 7cbd0000-7cbef000 \ iphlpapi
ELF 7cbef000-7cc32000 Deferred winspool
\-PE 7cc00000-7cc32000 \ winspool
ELF 7cc32000-7cc6c000 Deferred wbemprox
\-PE 7cc40000-7cc6c000 \ wbemprox
ELF 7cc6c000-7ccb3000 Deferred libxslt.so.1
ELF 7ccb3000-7ccf1000 Deferred ws2_32
\-PE 7ccc0000-7ccf1000 \ ws2_32
ELF 7ccf1000-7cd6e000 Deferred wininet
\-PE 7cd00000-7cd6e000 \ wininet
ELF 7cd6e000-7ce13000 Deferred urlmon
\-PE 7cd80000-7ce13000 \ urlmon
ELF 7cf92000-7d151000 Deferred libicuuc.so.60
ELF 7d151000-7d41a000 Deferred libicui18n.so.60
ELF 7d41a000-7d607000 Deferred libxml2.so.2
ELF 7d607000-7d700000 Dwarf msxml3
\-PE 7d620000-7d700000 \ msxml3
ELF 7d800000-7d80d000 Deferred libkrb5support.so.0
ELF 7d80d000-7d825000 Deferred libresolv.so.2
ELF 7d825000-7d84d000 Deferred mpr
\-PE 7d830000-7d84d000 \ mpr
ELF 7d84d000-7d86b000 Deferred libgcc_s.so.1
ELF 7d86b000-7d897000 Deferred liblzma.so.5
ELF 7d8a5000-7d8b7000 Deferred libtasn1.so.3
ELF 7d9ef000-7da02000 Deferred api-ms-win-core-sysinfo-l1-2-1
\-PE 7da90000-7dac5000 \ uxtheme
ELF 7dac5000-7dad1000 Deferred libxcursor.so.1
ELF 7dad4000-7dad9000 Deferred libkeyutils.so.1
ELF 7dad9000-7dade000 Deferred libcom_err.so.2
ELF 7dade000-7daf1000 Deferred api-ms-win-core-synch-l1-2-0
\-PE 7df90000-7e010000 \ winex11
ELF 7e010000-7e035000 Deferred imm32
\-PE 7e020000-7e035000 \ imm32
ELF 7e035000-7e04c000 Deferred wtsapi32
\-PE 7e040000-7e04c000 \ wtsapi32
ELF 7e071000-7e078000 Deferred libxdmcp.so.6
ELF 7e078000-7e0ae000 Deferred wintrust
\-PE 7e080000-7e0ae000 \ wintrust
ELF 7e0ae000-7e0cb000 Deferred jsproxy
\-PE 7e0b0000-7e0cb000 \ jsproxy
ELF 7e0cb000-7e10b000 Deferred winhttp
\-PE 7e0d0000-7e10b000 \ winhttp
ELF 7e10b000-7e125000 Deferred aclui
\-PE 7e110000-7e125000 \ aclui
ELF 7e125000-7e1a1000 Deferred shlwapi
\-PE 7e130000-7e1a1000 \ shlwapi
ELF 7e1a1000-7e47a000 Deferred shell32
\-PE 7e1b0000-7e47a000 \ shell32
ELF 7e47a000-7e4ee000 Deferred setupapi
\-PE 7e490000-7e4ee000 \ setupapi
ELF 7e4ee000-7e636000 Deferred oleaut32
\-PE 7e510000-7e636000 \ oleaut32
ELF 7e636000-7e6bc000 Deferred rpcrt4
\-PE 7e640000-7e6bc000 \ rpcrt4
ELF 7e6bc000-7e804000 Deferred ole32
\-PE 7e6d0000-7e804000 \ ole32
ELF 7e804000-7e8d6000 Deferred crypt32
\-PE 7e810000-7e8d6000 \ crypt32
ELF 7e8d6000-7ea0b000 Deferred gdi32
\-PE 7e8e0000-7ea0b000 \ gdi32
ELF 7ea0b000-7eb70000 Deferred user32
\-PE 7ea20000-7eb70000 \ user32
ELF 7eb70000-7ec7f000 Deferred comctl32
\-PE 7eb80000-7ec7f000 \ comctl32
ELF 7ec7f000-7ecfc000 Deferred advapi32
\-PE 7ec90000-7ecfc000 \ advapi32
ELF 7ee97000-7eeab000 Deferred libnss_files.so.2
ELF 7eeab000-7eec6000 Deferred libnsl.so.1
ELF 7eec6000-7eed4000 Deferred libnss_nis.so.2
ELF 7eed4000-7eede000 Deferred libnss_compat.so.2
ELF 7eede000-7efe0000 Deferred libm.so.6
ELF 7efe2000-7efe6000 Deferred libxinerama.so.1
ELF 7efe6000-7f000000 Deferred version
\-PE 7eff0000-7f000000 \ version
ELF f7b10000-f7b15000 Deferred libxau.so.6
ELF f7b17000-f7b1c000 Deferred libdl.so.2
ELF f7b1c000-f7cf5000 Dwarf libc.so.6
ELF f7cf5000-f7d14000 Dwarf libpthread.so.0
ELF f7d16000-f7d20000 Deferred librt.so.1
ELF f7d34000-f7f02000 Dwarf libwine.so.1
ELF f7f04000-f7f2c000 Deferred ld-linux.so.2
ELF f7f2f000-f7f31000 Deferred [vdso].so
Threads:
process tid prio (all id:s are in hex)
00000008 (D) Z:\home\sajib_roy\.PlayOnLinux\tmp\AppManagerTmp\CreativeCloudSet-Up.exe
[Z:\home\sajib_roy\.PlayOnLinux\tmp\AppManagerTmp\CreativeCloudSet-Up.exe]
0000003c 0
00000037 0
00000036 0 <==
00000009 0
0000000e services.exe
[C:\windows\system32\services.exe]
0000002c 0
00000021 0
0000001a 0
00000014 0
00000010 0
0000000f 0
00000012 winedevice.exe
[C:\windows\system32\winedevice.exe]
00000020 0
00000019 0
00000018 0
00000013 0
0000001e plugplay.exe
[C:\windows\system32\plugplay.exe]
00000024 0
00000023 0
0000001f 0
0000002f explorer.exe
[C:\windows\system32\explorer.exe /desktop]
00000035 0
00000034 0
00000033 0
00000032 0
00000030 0
0000003f explorer.exe
[C:\windows\system32\explorer.exe /desktop]
00000044 0
00000043 0
00000042 0
00000041 0
00000040 0
System information:
Wine build: wine-2.8 (Staging)
Platform: i386
Version: Windows XP
Host system: Linux
Host version: 4.15.0-29deepin-generic
Anonymous
Wednesday 31 July 2019 at 22:01
I have same error. Unhandled exception: unimplemented function KERNEL32.dll.GetQueuedCompletionStatusEx called in 32-bit code (0x7bc7aee0).
My system is Kubuntu, 4.18.0-25-generic #26~18.04.1-Ubuntu SMP Thu Jun 27 07:28:31 UTC 2019
x86_64 x86_64 x86_64 GNU/Linux

 

   Wine build: wine-2.20 (Staging)
    Platform: i386
    Version: Windows Server 2008 R2
    Host system: Linux
    Host version: 4.18.0-25-generic