Google Drive Sync Enterprise

Informations

Creator Message
MTres19 Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 42710
Wine: 2.22

Feedbacks

Description

Google Drive Sync synchronizes your files across devices through your Google account.
Warning: as of 2019, there is Linux native clients (search web engines: 'linux native google drive client').

Note: Google Drive Sync must be restarted upon each login, since Wine does not support autostart functions.

Appdb.winehq.org . Wikipedia.

Screenshots

MiniatureMiniatureMiniature

Source code

#!/bin/bash
# Date: 2016-01-09
# Author: MTres19
# Wine version used: 2.22
# Distribution used to test: Kubuntu 15.10 (amd64)

# CHANGELOG
# [MTres29] (2016-01-09)
#   First script.
# [Dadu042] (2019-11-09)
#   Wine 1.8.1 -> 2.22
#   Add vcrun2008 (according appdb.winehq.org)
#   Add warning: stability lower than native Linux clients.
# [Dadu042] (2019-11-09)
#   Set_OS "winxp" "sp3"


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Google Drive Sync"
PREFIX="GoogleDriveSync"
WINEVERSION="2.22"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "Google, Inc." "www.google.com" "MTres19" "$PREFIX"

POL_SetupWindow_message "$(eval_gettext '\nWarning:\nFor a better stability we (POL/POM scripters) recommend to use a native Linux client instead of this script.')" "$TITLE"

POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

Set_OS "winxp" "sp3"

POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
 
POL_Call POL_Install_LunaTheme
POL_Call POL_Install_vcrun2008

# IE 8 required to be able to authenticate
POL_Call POL_Install_ie8


POL_Download "https://dl.google.com/drive/gsync_enterprise.msi"
POL_Wine start msiexec /i "gsync_enterprise.msi"
 
# The MSI installer automatically starts GoogleUpdate.exe, making a synchronous POL_Wine command impossible.
POL_SetupWindow_wait "$(eval_gettext 'Waiting for installation to finish')" "$TITLE"
sleep 10
 
POL_SetupWindow_message "$(eval_gettext 'The Google Drive systray icon will disappear the first time you run it, though the sync will continue in the background. Close and restart Google Drive Sync in the PlayOnLinux/PlayOnMac window to make the icon appear.')" "$TITLE"
 
POL_Shortcut "googledrivesync.exe" "$TITLE" "" "" "Network;Utility;"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Roberto123 Saturday 9 October 2021 at 10:41
Roberto123 Anonymous

Warning

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

Message

Hello,

i used "google drive backup and sync" on ubuntu 20.04 until yesterday. Unfortunately, Google has decided to block the use to continue with "Google drive for desktop".

I trivially tried to replace the download link in the script with the new one:
https://dl.google.com/drive-file-stream/GoogleDriveSetup.exe but the installation crashes.

I hope you gurus can solve the problem.

For me, "Google drive backup and sync" on POL was the best solution because I live in an area not covered by a stable internet connection.
So I prefer to put in a little effort and attempt this installation.

Thanks for your help.

Differences

@@ -3,7 +3,7 @@
 # Author: MTres19
 # Wine version used: 2.22
 # Distribution used to test: Kubuntu 15.10 (amd64)
-
+ 
 # CHANGELOG
 # [MTres29] (2016-01-09)
 #   First script.
@@ -13,49 +13,53 @@
 #   Add warning: stability lower than native Linux clients.
 # [Dadu042] (2019-11-09)
 #   Set_OS "winxp" "sp3"
-
-
+# [Roberto123] (2021-11-06)
+#   Set_OS "win7"
+#   Changed download link
+ 
+ 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
- 
-TITLE="Google Drive Sync"
-PREFIX="GoogleDriveSync"
+  
+TITLE="Google Drive File Stream"
+PREFIX="GoogleDriveFS"
 WINEVERSION="2.22"
- 
+  
 POL_SetupWindow_Init
 POL_Debug_Init
- 
+  
 POL_SetupWindow_presentation "$TITLE" "Google, Inc." "www.google.com" "MTres19" "$PREFIX"
-
+ 
 POL_SetupWindow_message "$(eval_gettext '\nWarning:\nFor a better stability we (POL/POM scripters) recommend to use a native Linux client instead of this script.')" "$TITLE"
-
+ 
 POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
-
+ 
 Set_OS "winxp" "sp3"
-
+ 
 POL_System_TmpCreate "$PREFIX"
 cd "$POL_System_TmpDir"
- 
+  
 POL_Call POL_Install_LunaTheme
 POL_Call POL_Install_vcrun2008
-
+ 
 # IE 8 required to be able to authenticate
 POL_Call POL_Install_ie8
 
-
-POL_Download "https://dl.google.com/drive/gsync_enterprise.msi"
-POL_Wine start msiexec /i "gsync_enterprise.msi"
+Set_OS "win7"
  
+POL_Download "https://dl.google.com/drive-file-stream/GoogleDriveSetup.exe"
+POL_Wine start /unix "GoogleDriveSetup.exe"
+  
 # The MSI installer automatically starts GoogleUpdate.exe, making a synchronous POL_Wine command impossible.
 POL_SetupWindow_wait "$(eval_gettext 'Waiting for installation to finish')" "$TITLE"
 sleep 10
- 
+  
 POL_SetupWindow_message "$(eval_gettext 'The Google Drive systray icon will disappear the first time you run it, though the sync will continue in the background. Close and restart Google Drive Sync in the PlayOnLinux/PlayOnMac window to make the icon appear.')" "$TITLE"
- 
-POL_Shortcut "googledrivesync.exe" "$TITLE" "" "" "Network;Utility;"
- 
+  
+POL_Shortcut "GoogleDriveFS.exe" "$TITLE" "" "" "Network;Utility;"
+  
 POL_System_TmpDelete
 POL_SetupWindow_Close
-exit 0
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date: 2016-01-09
# Author: MTres19
# Wine version used: 2.22
# Distribution used to test: Kubuntu 15.10 (amd64)
 
# CHANGELOG
# [MTres29] (2016-01-09)
#   First script.
# [Dadu042] (2019-11-09)
#   Wine 1.8.1 -> 2.22
#   Add vcrun2008 (according appdb.winehq.org)
#   Add warning: stability lower than native Linux clients.
# [Dadu042] (2019-11-09)
#   Set_OS "winxp" "sp3"
# [Roberto123] (2021-11-06)
#   Set_OS "win7"
#   Changed download link
 
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Google Drive File Stream"
PREFIX="GoogleDriveFS"
WINEVERSION="2.22"
  
POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "Google, Inc." "www.google.com" "MTres19" "$PREFIX"
 
POL_SetupWindow_message "$(eval_gettext '\nWarning:\nFor a better stability we (POL/POM scripters) recommend to use a native Linux client instead of this script.')" "$TITLE"
 
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
Set_OS "winxp" "sp3"
 
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
  
POL_Call POL_Install_LunaTheme
POL_Call POL_Install_vcrun2008
 
# IE 8 required to be able to authenticate
POL_Call POL_Install_ie8

Set_OS "win7"
 
POL_Download "https://dl.google.com/drive-file-stream/GoogleDriveSetup.exe"
POL_Wine start /unix "GoogleDriveSetup.exe"
  
# The MSI installer automatically starts GoogleUpdate.exe, making a synchronous POL_Wine command impossible.
POL_SetupWindow_wait "$(eval_gettext 'Waiting for installation to finish')" "$TITLE"
sleep 10
  
POL_SetupWindow_message "$(eval_gettext 'The Google Drive systray icon will disappear the first time you run it, though the sync will continue in the background. Close and restart Google Drive Sync in the PlayOnLinux/PlayOnMac window to make the icon appear.')" "$TITLE"
  
POL_Shortcut "GoogleDriveFS.exe" "$TITLE" "" "" "Network;Utility;"
  
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies

Edited by Roberto123

Dadu042 Saturday 9 November 2019 at 23:12
Dadu042

Information

This update has been approved by the team.

Differences

@@ -11,6 +11,9 @@
 #   Wine 1.8.1 -> 2.22
 #   Add vcrun2008 (according appdb.winehq.org)
 #   Add warning: stability lower than native Linux clients.
+# [Dadu042] (2019-11-09)
+#   Set_OS "winxp" "sp3"
+
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
@@ -29,7 +32,9 @@
 POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
- 
+
+Set_OS "winxp" "sp3"
+
 POL_System_TmpCreate "$PREFIX"
 cd "$POL_System_TmpDir"
  
@@ -53,4 +58,4 @@
  
 POL_System_TmpDelete
 POL_SetupWindow_Close
-exit 0
\ No newline at end of file
+exit 0

New source code

#!/bin/bash
# Date: 2016-01-09
# Author: MTres19
# Wine version used: 2.22
# Distribution used to test: Kubuntu 15.10 (amd64)

# CHANGELOG
# [MTres29] (2016-01-09)
#   First script.
# [Dadu042] (2019-11-09)
#   Wine 1.8.1 -> 2.22
#   Add vcrun2008 (according appdb.winehq.org)
#   Add warning: stability lower than native Linux clients.
# [Dadu042] (2019-11-09)
#   Set_OS "winxp" "sp3"


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Google Drive Sync"
PREFIX="GoogleDriveSync"
WINEVERSION="2.22"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "Google, Inc." "www.google.com" "MTres19" "$PREFIX"

POL_SetupWindow_message "$(eval_gettext '\nWarning:\nFor a better stability we (POL/POM scripters) recommend to use a native Linux client instead of this script.')" "$TITLE"

POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

Set_OS "winxp" "sp3"

POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
 
POL_Call POL_Install_LunaTheme
POL_Call POL_Install_vcrun2008

# IE 8 required to be able to authenticate
POL_Call POL_Install_ie8


POL_Download "https://dl.google.com/drive/gsync_enterprise.msi"
POL_Wine start msiexec /i "gsync_enterprise.msi"
 
# The MSI installer automatically starts GoogleUpdate.exe, making a synchronous POL_Wine command impossible.
POL_SetupWindow_wait "$(eval_gettext 'Waiting for installation to finish')" "$TITLE"
sleep 10
 
POL_SetupWindow_message "$(eval_gettext 'The Google Drive systray icon will disappear the first time you run it, though the sync will continue in the background. Close and restart Google Drive Sync in the PlayOnLinux/PlayOnMac window to make the icon appear.')" "$TITLE"
 
POL_Shortcut "googledrivesync.exe" "$TITLE" "" "" "Network;Utility;"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies

Dadu042 Saturday 9 November 2019 at 5:48
Dadu042

Warning

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

Differences

@@ -1,43 +1,56 @@
 #!/bin/bash
-# Date: 2016-1-9
+# Date: 2016-01-09
 # Author: MTres19
-# Wine version used: 1.8
+# Wine version used: 2.22
 # Distribution used to test: Kubuntu 15.10 (amd64)
 
+# CHANGELOG
+# [MTres29] (2016-01-09)
+#   First script.
+# [Dadu042] (2019-11-09)
+#   Wine 1.8.1 -> 2.22
+#   Add vcrun2008 (according appdb.winehq.org)
+#   Add warning: stability lower than native Linux clients.
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITLE="Google Drive Sync"
 PREFIX="GoogleDriveSync"
-WINEVERSION="1.8.1"
-
+WINEVERSION="2.22"
+ 
 POL_SetupWindow_Init
 POL_Debug_Init
-
+ 
 POL_SetupWindow_presentation "$TITLE" "Google, Inc." "www.google.com" "MTres19" "$PREFIX"
 
+POL_SetupWindow_message "$(eval_gettext '\nWarning:\nFor a better stability we (POL/POM scripters) recommend to use a native Linux client instead of this script.')" "$TITLE"
+
 POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
-
+ 
 POL_System_TmpCreate "$PREFIX"
 cd "$POL_System_TmpDir"
-
+ 
 POL_Call POL_Install_LunaTheme
+POL_Call POL_Install_vcrun2008
+
 # IE 8 required to be able to authenticate
 POL_Call POL_Install_ie8
 
+
 POL_Download "https://dl.google.com/drive/gsync_enterprise.msi"
 POL_Wine start msiexec /i "gsync_enterprise.msi"
-
+ 
 # The MSI installer automatically starts GoogleUpdate.exe, making a synchronous POL_Wine command impossible.
 POL_SetupWindow_wait "$(eval_gettext 'Waiting for installation to finish')" "$TITLE"
 sleep 10
-
+ 
 POL_SetupWindow_message "$(eval_gettext 'The Google Drive systray icon will disappear the first time you run it, though the sync will continue in the background. Close and restart Google Drive Sync in the PlayOnLinux/PlayOnMac window to make the icon appear.')" "$TITLE"
-
-POL_Shortcut "googledrivesync.exe" "$TITLE"
-
+ 
+POL_Shortcut "googledrivesync.exe" "$TITLE" "" "" "Network;Utility;"
+ 
 POL_System_TmpDelete
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date: 2016-01-09
# Author: MTres19
# Wine version used: 2.22
# Distribution used to test: Kubuntu 15.10 (amd64)

# CHANGELOG
# [MTres29] (2016-01-09)
#   First script.
# [Dadu042] (2019-11-09)
#   Wine 1.8.1 -> 2.22
#   Add vcrun2008 (according appdb.winehq.org)
#   Add warning: stability lower than native Linux clients.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Google Drive Sync"
PREFIX="GoogleDriveSync"
WINEVERSION="2.22"
 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "Google, Inc." "www.google.com" "MTres19" "$PREFIX"

POL_SetupWindow_message "$(eval_gettext '\nWarning:\nFor a better stability we (POL/POM scripters) recommend to use a native Linux client instead of this script.')" "$TITLE"

POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
 
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
 
POL_Call POL_Install_LunaTheme
POL_Call POL_Install_vcrun2008

# IE 8 required to be able to authenticate
POL_Call POL_Install_ie8


POL_Download "https://dl.google.com/drive/gsync_enterprise.msi"
POL_Wine start msiexec /i "gsync_enterprise.msi"
 
# The MSI installer automatically starts GoogleUpdate.exe, making a synchronous POL_Wine command impossible.
POL_SetupWindow_wait "$(eval_gettext 'Waiting for installation to finish')" "$TITLE"
sleep 10
 
POL_SetupWindow_message "$(eval_gettext 'The Google Drive systray icon will disappear the first time you run it, though the sync will continue in the background. Close and restart Google Drive Sync in the PlayOnLinux/PlayOnMac window to make the icon appear.')" "$TITLE"
 
POL_Shortcut "googledrivesync.exe" "$TITLE" "" "" "Network;Utility;"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies

Caribou22 Thursday 7 November 2019 at 20:34
Caribou22 Anonymous

Message

Hello,

I am trying to install Google Drive Sync on Debian 10 Buster amd64.

The installer shows tiny empty Windows and it is impossible to continue. I have found that it could be caused by old Wine versions and libz.so. I have tryed to remove libz.so files in home/user/.PlayOnLinux/wine/linux-x86/1.8.1/lib/ but it makes the installer crash.

What can I do to install it ?

Thanks in advance :)

Replies

Thursday 7 November 2019 at 20:57
Screenshot please.
Anonymous
Thursday 7 November 2019 at 21:04
For better or for worse, this script has become obsolete, but I don't have the authority to remove it (even though I wrote it originally). I recommend using Gnome Online Accounts (if you are using the GNOME desktop) or KIO-GDrive (if you are using KDE Plasma). Both of these are native Linux solutions and should work much more reliably.
Saturday 9 November 2019 at 5:33
I may remove it. However because some else might recreate it, I think I will add some warnings. If you have more ideas, feel free to comment.

Edited by Caribou22

andersonbui Sunday 3 February 2019 at 18:17
andersonbui Anonymous

Message

Lo pude ejecutar  y funciona correctamente en el siguiente entorno:

SO: Linux localhost.localdomain 4.19.0-0.bpo.1-amd64 #1 SMP Debian 4.19.12-1~bpo9+1 (2018-12-30) x86_64 GNU/Linux

Distribucion: PRETTY_NAME="Debian GNU/Linux 9 (stretch)" NAME="Debian GNU/Linux" VERSION_ID="9" VERSION="9 (stretch)"

PlayOnLinux: 4.2.10

Wine: 3.1

Escritorio: KDE Plasma version 5.8.6

Version Qt 5.7.1

version del kernel: 4.19.0-0.bpo.1-amd64

Intrucciones: Instale google Drive Sync mediante el panel de instalacion de PlayOnlInux, desde el listado de programas, aunque en version de pruebas y con wine 1.8.1.

Despues de instalado lo pase a la version de wine 3.1, y seleccione a Windows 7 como version a imitar por wine. Ejecute el programa y listo funciono.

 

Replies

Edited by andersonbui

abubobe Friday 16 March 2018 at 15:44
abubobe Anonymous

Message

Hi,

I did a clean install on my wine and PlayOnLinux installation. Using POL version 4.2.10 from Ubuntu repository.

My host is : 

$ uname -a
Linux myhost 4.4.0-116-lowlatency #140-Ubuntu SMP PREEMPT Mon Feb 12 22:41:05 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

No error during installation except I skipped recommended windows reboot after IE8 installation. 

When I run googledrivesync the first time .. it crashed with debug messages like this:

[03/16/18 21:17:04] - Running wine-1.8.1 winecfg (Working directory : /usr/share/playonlinux/python)
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x32faec,(nil),(nil),(nil),0x32fafc,0x32faf8),stub!
[03/16/18 21:26:30] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/fahmy/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
[03/16/18 21:26:32] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/fahmy/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x75a40c,(nil),(nil),(nil),0x75a41c,0x75a418),stub!
fixme:system:SetProcessDPIAware stub!
wine: Call from 0x7bc55770 to unimplemented function KERNEL32.dll.GetVolumeInformationByHandleW, aborting
wine: Unimplemented function KERNEL32.dll.GetVolumeInformationByHandleW called at address 0x7bc55770 (thread 0043), starting debugger...

System information:
    Wine build: wine-1.8.1
    Platform: i386
    Version: Windows XP
    Host system: Linux
    Host version: 4.4.0-116-lowlatency

Can you advice what should I do to make it work?

Thanks.

 

Replies

Ju777 Tuesday 13 March 2018 at 21:32
Ju777 Anonymous

Message

Hi there,

 

I just installed PlayOnLinux plus Google Drive Sync. The software can't be launched.

Here is the content of playonlinux.log (hope it will help anyone to understand anything, because I got no clue what it is talkig about ... :) :

[03/13/18 21:00:34] - Running wine-1.8.1 --version (Working directory : /home/julien/.PlayOnLinux/wine/mono)
wine-1.8.1

PlayOnLinux logfile
-------------------
Date: 03/13/18 21:00:34

> PlayOnLinux Version
  4.2.10
> uname -a
  Linux Ubuntu-SATELLITE-U500 4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:26:51 UTC 2018 i686 i686 i686 GNU/Linux
> lsb_release -a
  
> wine --version
  wine-1.8.1
> POL_WINEVERSION
  1.8.1
> WINEPREFIX
  /home/julien/.PlayOnLinux//wineprefix/GoogleDriveSync
> Distribution
  Ubuntu 16.04.4 LTS
> glxinfo \| grep rendering
  direct rendering: Yes
> glxinfo \| grep renderer
      GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer, 
    GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer, 
Extended renderer info (GLX_MESA_query_renderer):
OpenGL renderer string: NVA8
> OpenGL libs (Direct rendering testing)
  check_dd_x86 missing, test skipped
  

[03/13/18 21:00:58] - Running wine-1.8.1 cmd /c echo %ProgramFiles% (Working directory : /home/julien/.PlayOnLinux/wine/mono)
C:\Program Files
[03/13/18 21:01:02] - ----- Starting function POL_Install_LunaTheme -----
[03/13/18 21:01:05] - Running wine-1.8.1 regedit /home/julien/.PlayOnLinux//ressources/luna.reg (Working directory : /home/julien/.PlayOnLinux/ressources)
[03/13/18 21:01:05] - Content of /home/julien/.PlayOnLinux//ressources/luna.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Control Panel\Colors]
"ActiveBorder"="212 208 200"
"ActiveTitle"="51 94 168"
"AppWorkSpace"="128 128 128"
"Background"="0 0 64"
"ButtonAlternateFace"="181 181 181"
"ButtonDkShadow"="133 135 140"
"ButtonFace"="235 233 237"
"ButtonHilight"="255 255 255"
"ButtonLight"="220 223 228"
"ButtonShadow"="167 166 170"
"ButtonText"="0 0 0"
"GradientActiveTitle"="112 177 235"
"GradientInactiveTitle"="131 183 227"
"GrayText"="167 166 170"
"Hilight"="51 94 168"
"HilightText"="255 255 255"
"HotTrackingColor"="0 0 200"
"InactiveBorder"="212 208 200"
"InactiveTitle"="111 161 217"
"InactiveTitleText"="255 255 255"
"InfoText"="0 0 0"
"InfoWindow"="255 255 225"
"Menu"="255 255 255"
"MenuBar"="235 233 237"
"MenuHilight"="51 94 168"
"MenuText"="0 0 0"
"Scrollbar"="212 208 200"
"TitleText"="255 255 255"
"Window"="255 255 255"
"WindowFrame"="0 0 0"
"WindowText"="0 0 0"

[HKEY_CURRENT_USER\Control Panel\Desktop]
"DragFullWindows"="0"
"FontSmoothing"="1"
"LowPowerActive"="0"
"MenuShowDelay"="400"
"SmoothScroll"=hex:00,00,00,00
"UserPreferenceMask"=hex:10,00,02,80

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager]
"ColorName"="NormalColor"
"DllName"="C:\\windows\\Resources\\Themes\\luna\\luna.msstyles"
"FlatMenu"=dword:00000000
"GradientCaption"=dword:00000001
"IconTitleFont"=hex:f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,\
  00,00,00,00,00,00,00,00,00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,\
  20,00,44,00,6c,00,67,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00
"NonClientMetrics"=hex:f8,01,00,00,01,00,00,00,10,00,00,00,10,00,00,00,12,00,\
  00,00,12,00,00,00,f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,bc,02,00,\
  00,00,00,00,00,00,00,00,00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,\
  20,00,44,00,6c,00,67,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,0d,00,\
  00,00,0f,00,00,00,f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,\
  00,00,00,00,00,00,00,00,00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,\
  20,00,44,00,6c,00,67,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,12,00,\
  00,00,12,00,00,00,f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,\
  00,00,00,00,00,00,00,00,00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,\
  20,00,44,00,6c,00,67,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,f5,ff,\
  ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,00,00,00,00,00,00,00,\
  00,4d,00,53,00,20,00,53,00,68,00,65,00,6c,00,6c,00,20,00,44,00,6c,00,67,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,f5,ff,ff,ff,00,00,00,00,00,00,\
  00,00,00,00,00,00,90,01,00,00,00,00,00,00,00,00,00,00,4d,00,53,00,20,00,53,\
  00,68,00,65,00,6c,00,6c,00,20,00,44,00,6c,00,67,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
  00,00,00,00,00,00,00,00,00,00,00
"SizeName"="NormalSize"
"ThemeActive"="1"

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager\Control Panel]

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager\Control Panel\Colors]
"ActiveBorder"="212 208 200"
"ActiveTitle"="10 36 106"
"AppWorkSpace"="128 128 128"
"Background"="58 110 165"
"ButtonAlternateFace"="181 181 181"
"ButtonDkShadow"="64 64 64"
"ButtonFace"="212 208 200"
"ButtonHilight"="255 255 255"
"ButtonLight"="212 208 200"
"ButtonShadow"="128 128 128"
"ButtonText"="0 0 0"
"GradientActiveTitle"="166 202 240"
"GradientInactiveTitle"="192 192 192"
"GrayText"="128 128 128"
"Hilight"="10 36 106"
"HilightText"="255 255 255"
"HotTrackingColor"="0 0 200"
"InactiveBorder"="212 208 200"
"InactiveTitle"="128 128 128"
"InactiveTitleText"="212 208 200"
"InfoText"="0 0 0"
"InfoWindow"="255 255 225"
"Menu"="212 208 200"
"MenuBar"="212 208 200"
"MenuHilight"="10 36 106"
"MenuText"="0 0 0"
"Scrollbar"="212 208 200"
"TitleText"="255 255 255"
"Window"="255 255 255"
"WindowFrame"="0 0 0"
"WindowText"="0 0 0"

-----------
[03/13/18 21:01:06] - ----- Ending function POL_Install_LunaTheme -----
[03/13/18 21:01:06] - ----- Starting function POL_Install_ie8 -----
[03/13/18 21:02:04] - ----- Starting function POL_Install_corefonts -----
[03/13/18 21:02:04] - ----- Starting function POL_Internal_InstallFonts -----
[03/13/18 21:05:12] - ----- Ending function POL_Internal_InstallFonts -----
[03/13/18 21:05:12] - ----- Ending function POL_Install_corefonts -----
[03/13/18 21:05:12] - ----- Starting function POL_Function_FontsSmoothRGB -----
[03/13/18 21:05:13] - Running wine-1.8.1 regedit /home/julien/.PlayOnLinux//tmp/fontsaa.reg (Working directory : /home/julien/.PlayOnLinux/tmp)
[03/13/18 21:05:13] - Content of /home/julien/.PlayOnLinux//tmp/fontsaa.reg
-----------
REGEDIT4
[HKEY_CURRENT_USER\Control Panel\Desktop]
"FontSmoothing"="2"
"FontSmoothingType"=dword:00000002
"FontSmoothingGamma"=dword:00000578
"FontSmoothingOrientation"=dword:00000001
-----------
[03/13/18 21:05:13] - ----- Ending function POL_Function_FontsSmoothRGB -----
[03/13/18 21:05:14] - ----- Starting function POL_Install_gdiplus -----
[03/13/18 21:05:16] - Running wine-1.8.1 WindowsXP-KB975337-x86-ENU.exe /extract:C:\Tmp /q (Working directory : /home/julien/.PlayOnLinux/ressources)
fixme:advapi:DecryptFileA ("C:\\Tmp\\", 00000000): stub
[03/13/18 21:05:18] - Running wine-1.8.1 regedit /home/julien/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Tmp)
[03/13/18 21:05:18] - Content of /home/julien/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*gdiplus"="native"
-----------
[03/13/18 21:05:18] - ----- Ending function POL_Install_gdiplus -----
[03/13/18 21:05:18] - ----- Starting function POL_Install_msls31 -----
[03/13/18 21:05:26] - ----- Ending function POL_Install_msls31 -----
[03/13/18 21:05:26] - ----- Starting function POL_Install_msxml3 -----
[03/13/18 21:05:28] - Running wine-1.8.1 regedit /home/julien/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/julien/.PlayOnLinux/ressources/msxml3)
[03/13/18 21:05:28] - Content of /home/julien/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*msxml3"="native"
-----------
[03/13/18 21:05:29] - Running wine-1.8.1 msiexec /i msxml3.msi /q (Working directory : /home/julien/.PlayOnLinux/ressources/msxml3)
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:setupapi:SetupQueryInfOriginalFileInformationW (0xb21258, 0, (nil), 0xb1bf8c): semi-stub
fixme:setupapi:SetupPromptReboot 0x1da938, (nil), 1: stub
[03/13/18 21:05:34] - ----- Ending function POL_Install_msxml3 -----
[03/13/18 21:05:35] - ----- Starting function POL_Install_riched20 -----
[03/13/18 21:05:35] - ----- Starting function POL_SP2_Extract -----
[03/13/18 21:10:44] - ----- Ending function POL_SP2_Extract -----
[03/13/18 21:10:44] - Running wine-1.8.1 regedit /home/julien/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/windows/system32)
[03/13/18 21:10:44] - Content of /home/julien/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*riched20"="native,builtin"
-----------
[03/13/18 21:10:45] - ----- Ending function POL_Install_riched20 -----
[03/13/18 21:10:45] - ----- Starting function POL_Install_DisableCrashDialog -----
[03/13/18 21:10:45] - Running wine-1.8.1 regedit /home/julien/.PlayOnLinux//tmp/disable_crash.reg (Working directory : /home/julien/.PlayOnLinux/tmp)
[03/13/18 21:10:45] - Content of /home/julien/.PlayOnLinux//tmp/disable_crash.reg
-----------
[HKEY_CURRENT_USER\Software\Wine\WineDbg]
"ShowCrashDialog"=dword:00000000
-----------
[03/13/18 21:10:45] - ----- Ending function POL_Install_DisableCrashDialog -----
[03/13/18 21:10:46] - Running wine-1.8.1 regedit /home/julien/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/windows/system32)
[03/13/18 21:10:46] - Content of /home/julien/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*browseui"="native,builtin"
"*crypt32"="native,builtin"
"*hhctrl.ocx"="native,builtin"
"*hlink"="native,builtin"
"*iernonce"="native,builtin"
"*iexplore.exe"="native,builtin"
"*itircl"="native,builtin"
"*itss"="native,builtin"
"*jscript"="native,builtin"
"*mlang"="native,builtin"
"*mshtml"="native,builtin"
"*msimtf"="native,builtin"
"*secur32"="native,builtin"
"*shdoclc"="native,builtin"
"*shdocvw"="native,builtin"
"*shlwapi"="native,builtin"
"*url"="native,builtin"
"*urlmon"="native,builtin"
"*usp10"="native,builtin"
"*uxtheme"="native,builtin"
"*wintrust"="native,builtin"
"*xmllite"="native,builtin"
-----------
[03/13/18 21:10:46] - Running wine-1.8.1 regedit /home/julien/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/windows/system32)
[03/13/18 21:10:46] - Content of /home/julien/.PlayOnLinux//tmp/override-dll.reg
-----------
REGEDIT4

[HKEY_CURRENT_USER\Software\Wine\DllOverrides]
"*wininet"="builtin"
-----------
[03/13/18 21:10:48] - Running wine-1.8.1 IE8-WindowsXP-x86-FRA.exe (Working directory : /home/julien/.PlayOnLinux/ressources)
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x32fb4c,(nil),(nil),(nil),0x32fb5c,0x32fb58),stub!
fixme:clusapi:GetNodeClusterState ((null),0x32eb74) stub!
fixme:advapi:DecryptFileA ("c:\\de148d8512f5a8fd9e9522b9573312\\", 00000000): stub
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33fb4c,(nil),(nil),(nil),0x33fb5c,0x33fb58),stub!
fixme:advapi:RegisterTraceGuidsW (0x6cd15f38, 0x6cd20180, {e2821408-c59d-418f-ad3f-aa4e792aeb79}, 1, 0x33f7f0, (null), (null), 0x6cd20188): stub
fixme:advapi:RegisterTraceGuidsW   register trace class {e2821408-c59d-418f-ad3f-aa4e792aeb79}
fixme:advapi:UnregisterTraceGuids deadbeef: stub
[03/13/18 21:10:56] - Running wine-1.8.1 wineboot (Working directory : /home/julien/.PlayOnLinux/ressources)
[03/13/18 21:10:56] - ----- Ending function POL_Install_ie8 -----
[03/13/18 21:11:42] - Running wine-1.8.1 start msiexec /i gsync_enterprise.msi (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/windows/system32)
fixme:exec:SHELL_execute flags ignored: 0x00000100
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33faec,(nil),(nil),(nil),0x33fafc,0x33faf8),stub!
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33f83c,(nil),(nil),(nil),0x33f84c,0x33f848),stub!
fixme:advapi:RegisterTraceGuidsW (0x1800f935, 0x750360, {9b18bff9-915e-4cc1-9c3e-f4ac112cb36c}, 1, 0x180b1ba0, (null), (null), 0x750378): stub
fixme:advapi:RegisterTraceGuidsW   register trace class {00000000-0000-0000-0000-000000000000}
fixme:advapi:LsaOpenPolicy ((null),0x33f974,0x00000001,0x33f96c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:process:SetProcessShutdownParameters (00000280, 00000001): partial stub.
fixme:advapi:LsaOpenPolicy ((null),0x33f504,0x00000001,0x33f4fc) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33f83c,(nil),(nil),(nil),0x33f84c,0x33f848),stub!
fixme:advapi:RegisterTraceGuidsW (0x1800f935, 0x750360, {9b18bff9-915e-4cc1-9c3e-f4ac112cb36c}, 1, 0x180b1ba0, (null), (null), 0x750378): stub
fixme:advapi:RegisterTraceGuidsW   register trace class {00000000-0000-0000-0000-000000000000}
fixme:advapi:LsaOpenPolicy ((null),0x33f974,0x00000001,0x33f96c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:process:SetProcessShutdownParameters (00000280, 00000001): partial stub.
err:service:validate_context_handle Access denied - handle created with access 1, needed 4
err:service:validate_context_handle Access denied - handle created with access 1, needed 4
fixme:advapi:UnregisterTraceGuids deadbeef: stub
fixme:mstask:MSTASK_ITaskScheduler_Activate Partial stub always returning COR_E_FILENOTFOUND
fixme:mstask:MSTASK_ITaskScheduler_Activate Partial stub always returning COR_E_FILENOTFOUND
fixme:mstask:MSTASK_IPersistFile_Save (0x15e3f4, (nil), 1): stub
fixme:mstask:MSTASK_ITaskScheduler_Activate Partial stub always returning COR_E_FILENOTFOUND
fixme:mstask:MSTASK_ITaskScheduler_Activate Partial stub always returning COR_E_FILENOTFOUND
fixme:advapi:LsaOpenPolicy ((null),0x33e9a4,0x00000001,0x33e99c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:mstask:MSTASK_IPersistFile_Save (0x15e5a4, (nil), 1): stub
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33f83c,(nil),(nil),(nil),0x33f84c,0x33f848),stub!
fixme:advapi:RegisterTraceGuidsW (0x1800f935, 0x750360, {9b18bff9-915e-4cc1-9c3e-f4ac112cb36c}, 1, 0x180b1ba0, (null), (null), 0x750378): stub
fixme:advapi:RegisterTraceGuidsW   register trace class {00000000-0000-0000-0000-000000000000}
fixme:advapi:LsaOpenPolicy ((null),0x33f974,0x00000001,0x33f96c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:process:SetProcessShutdownParameters (00000280, 00000001): partial stub.
fixme:advapi:UnregisterTraceGuids deadbeef: stub
fixme:mstask:MSTASK_ITaskScheduler_Delete 0x15e988, L"GoogleUpdateTask": stub
fixme:mstask:MSTASK_ITaskScheduler_Delete 0x15e988, L"GoogleUpdateTaskMachine": stub
fixme:mstask:MSTASK_ITaskScheduler_Activate Partial stub always returning COR_E_FILENOTFOUND
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33f83c,(nil),(nil),(nil),0x33f84c,0x33f848),stub!
fixme:advapi:RegisterTraceGuidsW (0x1800f935, 0x750360, {9b18bff9-915e-4cc1-9c3e-f4ac112cb36c}, 1, 0x180b1ba0, (null), (null), 0x750378): stub
fixme:advapi:RegisterTraceGuidsW   register trace class {00000000-0000-0000-0000-000000000000}
fixme:advapi:LsaOpenPolicy ((null),0x33f974,0x00000001,0x33f96c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:process:SetProcessShutdownParameters (00000280, 00000001): partial stub.
fixme:advapi:LsaOpenPolicy ((null),0x33f504,0x00000001,0x33f4fc) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:exec:SHELL_execute flags ignored: 0x00000100
fixme:advapi:LsaOpenPolicy ((null),0x33ec94,0x00000001,0x33ec8c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:exec:SHELL_execute flags ignored: 0x00000100
fixme:advapi:RegisterEventSourceW ((null),L"gupdate"): stub
fixme:advapi:ReportEventW (0xcafe4242,0x0004,0x0000,0x00000000,(nil),0x0001,0x00000000,0xc5e784,(nil)): stub
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
fixme:advapi:UnregisterTraceGuids deadbeef: stub
fixme:advapi:UnregisterTraceGuids deadbeef: stub
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33f83c,(nil),(nil),(nil),0x33f84c,0x33f848),stub!
fixme:advapi:RegisterTraceGuidsW (0x1800f935, 0x750360, {9b18bff9-915e-4cc1-9c3e-f4ac112cb36c}, 1, 0x180b1ba0, (null), (null), 0x750378): stub
fixme:advapi:RegisterTraceGuidsW   register trace class {00000000-0000-0000-0000-000000000000}
fixme:advapi:LsaOpenPolicy ((null),0x33f974,0x00000001,0x33f96c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:process:SetProcessShutdownParameters (00000280, 00000001): partial stub.
fixme:advapi:LsaOpenPolicy ((null),0x33f504,0x00000001,0x33f4fc) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:mstask:MSTASK_ITaskScheduler_Activate Partial stub always returning COR_E_FILENOTFOUND
fixme:advapi:LsaOpenPolicy ((null),0x33ef64,0x00000001,0x33ef5c) stub
fixme:advapi:LsaClose (0xcafe) stub
err:winediag:nulldrv_CreateWindow Application tried to create a window, but no driver could be loaded.
err:winediag:nulldrv_CreateWindow The explorer process failed to start.
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33f83c,(nil),(nil),(nil),0x33f84c,0x33f848),stub!
fixme:advapi:RegisterTraceGuidsW (0x1800f935, 0x750360, {9b18bff9-915e-4cc1-9c3e-f4ac112cb36c}, 1, 0x180b1ba0, (null), (null), 0x750378): stub
fixme:advapi:RegisterTraceGuidsW   register trace class {00000000-0000-0000-0000-000000000000}
fixme:advapi:LsaOpenPolicy ((null),0x33f974,0x00000001,0x33f96c) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:process:SetProcessShutdownParameters (00000280, 00000001): partial stub.
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
fixme:shell:SHChangeNotify ignoring unsupported flags: 2000
fixme:msvcrt:__clean_type_info_names_internal (0x1006fe94) stub
fixme:msvcrt:__clean_type_info_names_internal (0x10014a4c) stub
fixme:advapi:UnregisterTraceGuids deadbeef: stub
[03/13/18 21:15:46] - Running wine-1.8.1 winepath -u C:\\users\\julien\\Desktop (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/windows/system32)
/home/julien/.PlayOnLinux//wineprefix/GoogleDriveSync/dosdevices/c:/users/julien/Desktop
[03/13/18 21:15:59] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
[03/13/18 21:16:20] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
[03/13/18 21:16:30] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
[03/13/18 21:22:01] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
[03/13/18 21:22:27] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
[03/13/18 21:28:38] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
[03/13/18 21:30:02] - Running wine-1.8.1 googledrivesync.exe (Working directory : /home/julien/.PlayOnLinux/wineprefix/GoogleDriveSync/drive_c/Program Files/Google/Drive)
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x75a0bc,(nil),(nil),(nil),0x75a0cc,0x75a0c8),stub!
fixme:system:SetProcessDPIAware stub!
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:msvcrt:__clean_type_info_names_internal (0x1ed472d8) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1ec251d4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x866f11c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1eb671e8) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1eb9618c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1ebf94f4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x865670c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x8537b60) stub
fixme:msvcrt:__clean_type_info_names_internal (0x8525320) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1e984048) stub
fixme:msvcrt:__clean_type_info_names_internal (0x84e4810) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3f3a5e4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3f021d4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3f2a990) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1eaa94dc) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3ee0ff0) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1d120850) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3ea92a8) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3d6ca30) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1ea66c0c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x37d5870) stub
fixme:msvcrt:__clean_type_info_names_internal (0x37c5094) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1e9b6198) stub
fixme:msvcrt:__clean_type_info_names_internal (0x37a4798) stub
fixme:msvcrt:__clean_type_info_names_internal (0x379439c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3775220) stub
fixme:msvcrt:__clean_type_info_names_internal (0x37631c0) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1ec99ce4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1ea2d088) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3d509dc) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3c86a6c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3bc0b28) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3a161c4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3ab7628) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3748f6c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x2d3c0f0) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3549e48) stub
fixme:msvcrt:__clean_type_info_names_internal (0x33c8710) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3f4e58) stub
fixme:msvcrt:__clean_type_info_names_internal (0x2f3b638) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1e84b7f4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x2c28ba0) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3b9c2c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1e8d8068) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1e7ba8c4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x100dc368) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1d181730) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1d1b5210) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1e25c688) stub

 

Thanks for your consideration.

Julien

Replies

educj Thursday 8 March 2018 at 16:18
educj Anonymous

Message

Just installed in new Linux Lite 3.6 (Ubuntu base 16.04). This program runs well. Could not find how to make changes to the programs config screens once its installed, until you reinstall it again. So, to test first select only one directory to sync. Also, whenever I tried to change the default directory for the local GoogleDrive Directory, it seems it only accepts the location with in the windows virtual drive, and not somewhere else on the user directories of the linux system. I believe it has to do with the way the folders are mapped, as Back Up and Synch (google drive sync) does not allow locating the local copy on a network share due to not being notified of when changes on the file occur.

https://productforums.google.com/forum/#!topic/drive/Fg8X3WoEJrc

 

Replies

aramis254 Friday 4 August 2017 at 11:18
aramis254 Anonymous

Message

The program runs well.

But how can i open the programm windows you show here ?

If i  want to change some parameters, i have to uninstall and install again . Right click does not work.

Am using playonlinux with mint cinnamon 18.1

Replies

alterjsive Tuesday 16 May 2017 at 9:51
alterjsive Anonymous

Message

I'm getting the message "The Internet connection appears to be offline." when I try to login.

I'm using PlayOnLinux 4.2.10 on Kubuntu 17.04

Replies

jderrien Friday 7 April 2017 at 11:47
jderrien Anonymous

Message

Hello,

I used the code yesterday and it worked perfectly. But today, I retest it and when I click on the installation button, I have this message in firefox: 

"The address wasn't understood

Firefox doesn't know how to open this address, because one of the following protocols (playonlinux) isn't associated with any program or is not allowed in this context.

    You might need to install other software to open this address."

What is the problem?

Thank you,

Jonathan

Replies

tanisc Sunday 26 February 2017 at 23:41
tanisc Anonymous

Message

The installation and the program works perfect.

I have written a code to forward the gdoc file links (.gdoc, .gsheet, .gform, .gslide) to chromium browser. You can easily edit the code for your browser before installing. Enjoy!

https://github.com/tanisc/gdoc2chromium

Replies

Anonymous
Sunday 26 February 2017 at 23:43
tested in ubuntu 14.04 lts x64
Anonymous
Monday 27 February 2017 at 4:18
Really? I'm surprised, actually. Anyway, Phoenicis/POL v5 hopefully will come along eventually and there's KiO-gdrive for Plasma users and I think GNOME also has Google Drive integration, so those might be helpful if this ever breaks.
icomputo Wednesday 5 October 2016 at 23:55
icomputo

Message

PlayOnLinux: 4.2.10,

openSUSE TW in MATE


 

Replies

ColonelChocomel Sunday 6 March 2016 at 15:05
ColonelChocomel Anonymous

Message

It worked immediately on my laptop but I get this error on my desktop. Any idea what it could be?

Replies

Anonymous
Thursday 10 March 2016 at 2:47
Hmmm... I'm afraid that appears to be caused by an update to the Google Drive Sync program. Unfortunately, that's out of my control to fix, though perhaps I could post on Google Product Forums, though I can't expect much help.
Anonymous
Thursday 10 March 2016 at 17:11
Alright I understand. I did install it a few days earlier on my laptop so it might have been updated in that time. Still works on my laptop, so thanks anyway!
Anonymous
Saturday 12 March 2016 at 1:31
In the meantime, you could copy the Wineprefix from your laptop to your desktop.
MTres19 Tuesday 16 February 2016 at 21:40
MTres19 Anonymous

Warning

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

Message

Please see https://www.playonlinux.com/en/topic-13685.html for icon and screenshots.

Differences

@@ -0,0 +1,43 @@
+#!/bin/bash
+# Date: 2016-1-9
+# Author: MTres19
+# Wine version used: 1.8
+# Distribution used to test: Kubuntu 15.10 (amd64)
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Google Drive Sync"
+PREFIX="GoogleDriveSync"
+WINEVERSION="1.8.1"
+
+POL_SetupWindow_Init
+POL_Debug_Init
+
+POL_SetupWindow_presentation "$TITLE" "Google, Inc." "www.google.com" "MTres19" "$PREFIX"
+
+POL_System_SetArch "x86"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+
+POL_System_TmpCreate "$PREFIX"
+cd "$POL_System_TmpDir"
+
+POL_Call POL_Install_LunaTheme
+# IE 8 required to be able to authenticate
+POL_Call POL_Install_ie8
+
+POL_Download "https://dl.google.com/drive/gsync_enterprise.msi"
+POL_Wine start msiexec /i "gsync_enterprise.msi"
+
+# The MSI installer automatically starts GoogleUpdate.exe, making a synchronous POL_Wine command impossible.
+POL_SetupWindow_wait "$(eval_gettext 'Waiting for installation to finish')" "$TITLE"
+sleep 10
+
+POL_SetupWindow_message "$(eval_gettext 'The Google Drive systray icon will disappear the first time you run it, though the sync will continue in the background. Close and restart Google Drive Sync in the PlayOnLinux/PlayOnMac window to make the icon appear.')" "$TITLE"
+
+POL_Shortcut "googledrivesync.exe" "$TITLE"
+
+POL_System_TmpDelete
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date: 2016-1-9
# Author: MTres19
# Wine version used: 1.8
# Distribution used to test: Kubuntu 15.10 (amd64)

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Google Drive Sync"
PREFIX="GoogleDriveSync"
WINEVERSION="1.8.1"

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Google, Inc." "www.google.com" "MTres19" "$PREFIX"

POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"

POL_Call POL_Install_LunaTheme
# IE 8 required to be able to authenticate
POL_Call POL_Install_ie8

POL_Download "https://dl.google.com/drive/gsync_enterprise.msi"
POL_Wine start msiexec /i "gsync_enterprise.msi"

# The MSI installer automatically starts GoogleUpdate.exe, making a synchronous POL_Wine command impossible.
POL_SetupWindow_wait "$(eval_gettext 'Waiting for installation to finish')" "$TITLE"
sleep 10

POL_SetupWindow_message "$(eval_gettext 'The Google Drive systray icon will disappear the first time you run it, though the sync will continue in the background. Close and restart Google Drive Sync in the PlayOnLinux/PlayOnMac window to make the icon appear.')" "$TITLE"

POL_Shortcut "googledrivesync.exe" "$TITLE"

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies