Google Drive Sync Enterprise
Informations
Creator | Message |
---|---|
MTres19
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks4 3 DescriptionGoogle Drive Sync synchronizes your files across devices through your Google account. Note: Google Drive Sync must be restarted upon each login, since Wine does not support autostart functions. ScreenshotsSource 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:
ContributeMember | Message |
Roberto123 | Saturday 9 October 2021 at 10:41 |
Roberto123
|
WarningThis update has not been approved yet by the team. MessageHello, 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: 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. 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 RepliesEdited by Roberto123 |
Dadu042 | Saturday 9 November 2019 at 23:12 |
Dadu042
|
InformationThis 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
|
WarningThis update has not been approved yet by the team. 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
|
MessageHello, 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 :) RepliesThursday 7 November 2019 at 20:57
Thursday 7 November 2019 at 21:04
Saturday 9 November 2019 at 5:33
Edited by Caribou22 |
andersonbui | Sunday 3 February 2019 at 18:17 |
andersonbui
|
MessageLo 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.
RepliesEdited by andersonbui |
abubobe | Friday 16 March 2018 at 15:44 |
abubobe
|
MessageHi, 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 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
|
MessageHi 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) PlayOnLinux logfile > PlayOnLinux Version [03/13/18 21:00:58] - Running wine-1.8.1 cmd /c echo %ProgramFiles% (Working directory : /home/julien/.PlayOnLinux/wine/mono) [HKEY_CURRENT_USER\Control Panel\Colors] [HKEY_CURRENT_USER\Control Panel\Desktop] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager\Control Panel] [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager\Control Panel\Colors] ----------- [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides]
Thanks for your consideration. Julien Replies |
educj | Thursday 8 March 2018 at 16:18 |
educj
|
MessageJust 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
|
MessageThe 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
|
MessageI'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
|
MessageHello, 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
|
MessageThe 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 |
icomputo | Wednesday 5 October 2016 at 23:55 |
icomputo
|
MessagePlayOnLinux: 4.2.10, openSUSE TW in MATE
Replies |
ColonelChocomel | Sunday 6 March 2016 at 15:05 |
ColonelChocomel
|
MessageIt worked immediately on my laptop but I get this error on my desktop. Any idea what it could be? RepliesThursday 10 March 2016 at 2:47
Thursday 10 March 2016 at 17:11
Saturday 12 March 2016 at 1:31
|
MTres19 | Tuesday 16 February 2016 at 21:40 |
MTres19
|
WarningThis update has not been approved yet by the team. MessagePlease 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 |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com