Microsoft Office 2013
Informations
Créateur | Messages |
---|---|
Quentin PÂRIS
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience18 19 DescriptionOffice 2013 testing installer. Code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version # [Dadu042] (2020-01-02) # Wine 2.8-staging (outdated) -> 3.0.3 (OK with POL v4.2.x) # [Dadu042] (2020-01-02) # Wine 3.0.3 -> 4.0.4 (REQ POL v4.3.x) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="4.0.4" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
Lio | Jeudi 29 September 2022 à 21:38 |
Lio
|
Messagesscript do not work on msoffice 2013 pro retail :( any help to fix this is welcome :( ``` RéponsesEdité par Lio |
Dadu042 | Mercredi 11 Mai 2022 à 0:18 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -5,12 +5,16 @@ # Initial version # [Dadu042] (2020-01-02) # Wine 2.8-staging (outdated) -> 3.0.3 (OK with POL v4.2.x) +# [Dadu042] (2020-01-02) +# Wine 3.0.3 -> 4.0.4 (REQ POL v4.3.x) + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" -WINEVERSION="3.0.3" +WINEVERSION="4.0.4" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" @@ -20,7 +24,7 @@ POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" -POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" +POL_RequiredVersion 4.3 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version # [Dadu042] (2020-01-02) # Wine 2.8-staging (outdated) -> 3.0.3 (OK with POL v4.2.x) # [Dadu042] (2020-01-02) # Wine 3.0.3 -> 4.0.4 (REQ POL v4.3.x) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="4.0.4" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit Réponses |
am1234 | Vendredi 25 Juin 2021 à 7:44 |
am1234
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesBy changing the Wine version from 3.0.3 to 3.19, I got Word, Excel, Publisher and Access working. Only Powerpoint gives an error of (Insufficient memory to run program) Differences@@ -10,7 +10,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" -WINEVERSION="3.0.3" +WINEVERSION="3.19" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version # [Dadu042] (2020-01-02) # Wine 2.8-staging (outdated) -> 3.0.3 (OK with POL v4.2.x) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="3.19" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit RéponsesMercredi 11 Mai 2022 à 0:16
|
am1234 | Vendredi 25 Juin 2021 à 7:36 |
am1234
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesIf I'm using Wine 3.0.3, only Word starts up with limited functionality. However, changing the Wine version from 3.0.3 to 3.19 will make Word, Excel, Access, Outlook and Publisher to run fine. The only problem was with Powerpoint with the error (Not sufficient memory). Hope this helps :-) Differences@@ -10,7 +10,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" -WINEVERSION="3.0.3" +WINEVERSION="3.19" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version # [Dadu042] (2020-01-02) # Wine 2.8-staging (outdated) -> 3.0.3 (OK with POL v4.2.x) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="3.19" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit Réponses |
jatin sukhija | Samedi 4 Janvier 2020 à 14:45 |
jatin sukhija
|
Messagesonenote error- ' you will need desktop experience...' https://drive.google.com/file/d/1UnkzNboEy14XEkXb3rfsrd8-0qN8CW3b/view?usp=sharing https://drive.google.com/file/d/1KvAqGBqNA1N1Z8QWX6Ntsi3_FPRemETL/view?usp=sharing RéponsesEdité par jatin sukhija |
Dadu042 | Jeudi 2 Janvier 2020 à 23:29 |
Dadu042
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -3,12 +3,14 @@ # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version - +# [Dadu042] (2020-01-02) +# Wine 2.8-staging (outdated) -> 3.0.3 (OK with POL v4.2.x) + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" -WINEVERSION="2.8-staging" +WINEVERSION="3.0.3" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version # [Dadu042] (2020-01-02) # Wine 2.8-staging (outdated) -> 3.0.3 (OK with POL v4.2.x) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="3.0.3" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit Réponses |
flecom | Dimanche 29 Décembre 2019 à 9:32 |
flecom
|
MessagesOutlook complains about a metered connection so it won't connect to any kind of mail servers, and the Mail control panel seems to be broken trying to add an ActiveSync account Réponses |
GotToBeThere | Mercredi 30 Octobre 2019 à 14:59 |
GotToBeThere
|
MessagesWord and Excel are working well. I only wish it could start faster, it needs around 5 seconds to open, on Windows its less then 1 second. Power Point when starting shows error - not enough memory or system resources. OneNote and Outlook not starting at all.
RéponsesMardi 4 Février 2020 à 21:46
Edité par GotToBeThere |
txutxifel | Dimanche 20 Octobre 2019 à 5:49 |
txutxifel
|
MessagesHi, Any idea? RéponsesMardi 4 Février 2020 à 21:47
Dimanche 8 Mars 2020 à 16:33
Mardi 10 Mai 2022 à 22:39
|
bastos77 | Vendredi 30 Aoüt 2019 à 16:23 |
bastos77
|
MessagesSeems that Excel hangs if a Word document is opened and Word hangs if an Excel document is opened Réponses |
bastos77 | Mardi 30 Juillet 2019 à 14:48 |
bastos77
|
MessagesInstallation worked out of the box. But due to "black mirror bug" (https://askubuntu.com/questions/875991/black-screen-issue-in-office-2013-using-wine-2-0) I changed the winde version to 3.2.1 Now everything seems fine until now but without productivity testing Réponses |
avbartolomeo | Mardi 9 Juillet 2019 à 4:44 |
avbartolomeo
|
MessagesExcel tried to start but never finish. Réponses |
oovyxd | Jeudi 21 Mars 2019 à 12:24 |
oovyxd
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI made it work for WINE 2.8-staging... Differences@@ -8,7 +8,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" -WINEVERSION="1.8-staging" +WINEVERSION="2.8-staging" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="2.8-staging" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit RéponsesLundi 1 Avril 2019 à 17:45
Edité par oovyxd |
Md. Habibur Rahman | Lundi 3 Décembre 2018 à 5:02 |
Md. Habibur Rahman
|
MessagesThis programe is very useful. Réponses |
coleco | Samedi 27 Octobre 2018 à 23:04 |
coleco
|
MessagesJust to let you know that seems to work the same pol "Office 2010 Activation" file for the Office 2013. I just downloaded and edited the POL file. The changes were to replace "2010" by "2013" and simply did all the "known" steps to activate 2010. RéponsesMardi 11 Décembre 2018 à 19:28
|
eduardolucioac | Vendredi 23 Février 2018 à 2:22 |
eduardolucioac
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesNew version! "Set_Managed \"Off\"" -> Fix "move and change the window size (maximize/minimize/restore/resize etc...) bugs". Differences@@ -1,84 +1,182 @@ #!/bin/bash - + # CHANGELOG -# [Quentin PÂRIS] (2015-11-26 22-01) -# Initial version - +# [Quentin Pâris and Eduardo Lucio (Questor)] (2018-02-17 15-24) +# Version 1.1.0.0 +# Paris/Brazil + +# >>>>>>>>>> +# Under BSD License! + +# Copyright (c) 2018, Quentin Pâris and Eduardo Lucio +# All rights reserved. + +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the free software community nor the +# names of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. + +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL Quentin Pâris and Eduardo Lucio BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# <<<<<<<<<< + +# NOTE: Complete liste of references! By Questor +# https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib +# https://www.playonlinux.com/en/app-2665-Microsoft_Office_2013.html +# http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions +# http://wiki.playonlinux.com/index.php/Components_and_Functions +# https://www.playonlinux.com/repository/source.php?script=822 +# https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/scripts.lib +# https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/wine.lib +# https://askubuntu.com/questions/879304/wine-2-0-says-it-supports-office-2013-how-do-i-actually-install-it +# https://github.com/RobertJames/playonlinux/blob/75ef37523f299255a539a89b63dc87d7afc096d4/template.POL + +# >>>>>>>>>> +# Initialization! + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - -PREFIX="Office2013" -WINEVERSION="1.8-staging" + +PREFIX="office2013" + +WINEVERSION="3.0" + TITLE="Microsoft Office 2013" - -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" - + +# NOTE: Images to use! By Questor +POL_GetSetupImages "https://i.imgur.com/licFVuF.png" "https://i.imgur.com/ff6PkEZ.png" "$TITLE" + POL_SetupWindow_Init POL_SetupWindow_SetID 2665 - -POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" - -POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" - -if [ "$POL_OS" = "Linux" ]; then - wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" -fi + +POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin Pâris and Eduardo Lucio" "$PREFIX" + POL_Debug_Init -POL_System_SetArch "x86" - - -POL_SetupWindow_InstallMethod "LOCAL,DVD" - -if [ "$INSTALL_METHOD" = "DVD" ]; then - POL_SetupWindow_cdrom - POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" - SetupIs="$CDROM_SETUP" - cd "$CDROM" -else - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SetupIs="$APP_ANSWER" -fi - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "$WINEVERSION" -Set_OS "win7" +# <<<<<<<<<< + +# >>>>>>>>>> +# Perform some validations! + +POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION!\nPlease update!" + +if [ "$POL_OS" = "Linux" ]; then + wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" +fi if [ "$POL_OS" = "Mac" ]; then - # Samba support + + # NOTE: Samba support! By Quentin Pâris POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" + fi - - + POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" - + if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then - POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; + POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry!")"; +fi + +# NOTE: Check if "winetricks" is present! By Questor +winetricks -V || POL_Debug_Fatal "Please install winetricks before installing $TITLE!" + +POL_System_SetArch "x86" +POL_SetupWindow_InstallMethod "LOCAL,DVD" + +if [ "$INSTALL_METHOD" = "DVD" ]; then + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" + SetupIs="$CDROM_SETUP" + cd "$CDROM" +else + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run!')" "$TITLE" + SetupIs="$APP_ANSWER" fi + +# <<<<<<<<<< + +# >>>>>>>>>> +# Prepare resources for installation! + +# NOTE: Install wine version if isn't available. This is necessary because +# even though "POL_Wine_PrefixCreate" solves this, we end up having +# problems when the required version is not available and it tries to +# install it! Questor +# [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] +POL_Wine_InstallVersion "$WINEVERSION" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +Set_OS "win7" + +# <<<<<<<<<< + +# >>>>>>>>>> +# Install! + +# NOTE: Installs office! By Questor POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" - -# See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 + +# <<<<<<<<<< + +# >>>>>>>>>> +# Prepare resources for applications! + +# NOTE: Uses native special version of "riched20" installed by Office 2013! +# Fix the "black fields" issue! By Questor +# [Ref.: http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555] POL_Wine_OverrideDLL "native,builtin" "riched20" - -# Fix a crash when loading a file -# POL_Call POL_Install_msxml6 - + +# NOTE: Fix "move and change the window size (maximize/minimize/restore/resize +# etc...) bugs"! By Questor +# [Ref.: https://bugs.winehq.org/show_bug.cgi?id=44552] +Set_Managed "Off" + +# <<<<<<<<<< + +# >>>>>>>>>> +# Create shortcuts, entries to extensions and finalize! + +# NOTE: Create shortcuts! By Questor POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" -POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? -POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p - + +# NOTE: No category for collaborative work? By Quentin Pâris +POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" + +# NOTE: "Calendar;ContactManagement;"? By Quentin Pâris +POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" + +# NOTE: Add an entry to PlayOnLinux's extension file. If the entry already +# exists, it will replace it! By Questor +# [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/playonlinux.lib] POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" - + if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" @@ -86,7 +184,10 @@ POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi - -POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully!\n\nThanks!\nBy Quentin Pâris and Eduardo Lucio')" "$TITLE" POL_SetupWindow_Close -exit \ No newline at end of file + +# <<<<<<<<<< + +exit 0 Nouveau code source#!/bin/bash # CHANGELOG # [Quentin Pâris and Eduardo Lucio (Questor)] (2018-02-17 15-24) # Version 1.1.0.0 # Paris/Brazil # >>>>>>>>>> # Under BSD License! # Copyright (c) 2018, Quentin Pâris and Eduardo Lucio # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the free software community nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL Quentin Pâris and Eduardo Lucio BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # <<<<<<<<<< # NOTE: Complete liste of references! By Questor # https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib # https://www.playonlinux.com/en/app-2665-Microsoft_Office_2013.html # http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions # http://wiki.playonlinux.com/index.php/Components_and_Functions # https://www.playonlinux.com/repository/source.php?script=822 # https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/scripts.lib # https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/wine.lib # https://askubuntu.com/questions/879304/wine-2-0-says-it-supports-office-2013-how-do-i-actually-install-it # https://github.com/RobertJames/playonlinux/blob/75ef37523f299255a539a89b63dc87d7afc096d4/template.POL # >>>>>>>>>> # Initialization! [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="office2013" WINEVERSION="3.0" TITLE="Microsoft Office 2013" # NOTE: Images to use! By Questor POL_GetSetupImages "https://i.imgur.com/licFVuF.png" "https://i.imgur.com/ff6PkEZ.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin Pâris and Eduardo Lucio" "$PREFIX" POL_Debug_Init # <<<<<<<<<< # >>>>>>>>>> # Perform some validations! POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION!\nPlease update!" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" fi if [ "$POL_OS" = "Mac" ]; then # NOTE: Samba support! By Quentin Pâris POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry!")"; fi # NOTE: Check if "winetricks" is present! By Questor winetricks -V || POL_Debug_Fatal "Please install winetricks before installing $TITLE!" POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run!')" "$TITLE" SetupIs="$APP_ANSWER" fi # <<<<<<<<<< # >>>>>>>>>> # Prepare resources for installation! # NOTE: Install wine version if isn't available. This is necessary because # even though "POL_Wine_PrefixCreate" solves this, we end up having # problems when the required version is not available and it tries to # install it! Questor # [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] POL_Wine_InstallVersion "$WINEVERSION" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" # <<<<<<<<<< # >>>>>>>>>> # Install! # NOTE: Installs office! By Questor POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # <<<<<<<<<< # >>>>>>>>>> # Prepare resources for applications! # NOTE: Uses native special version of "riched20" installed by Office 2013! # Fix the "black fields" issue! By Questor # [Ref.: http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555] POL_Wine_OverrideDLL "native,builtin" "riched20" # NOTE: Fix "move and change the window size (maximize/minimize/restore/resize # etc...) bugs"! By Questor # [Ref.: https://bugs.winehq.org/show_bug.cgi?id=44552] Set_Managed "Off" # <<<<<<<<<< # >>>>>>>>>> # Create shortcuts, entries to extensions and finalize! # NOTE: Create shortcuts! By Questor POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" # NOTE: No category for collaborative work? By Quentin Pâris POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # NOTE: "Calendar;ContactManagement;"? By Quentin Pâris POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # NOTE: Add an entry to PlayOnLinux's extension file. If the entry already # exists, it will replace it! By Questor # [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/playonlinux.lib] POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully!\n\nThanks!\nBy Quentin Pâris and Eduardo Lucio')" "$TITLE" POL_SetupWindow_Close # <<<<<<<<<< exit 0 RéponsesMercredi 7 Mars 2018 à 18:12
Mercredi 7 Mars 2018 à 18:13
Mercredi 7 Mars 2018 à 18:18
Jeudi 8 Mars 2018 à 13:37
Jeudi 8 Mars 2018 à 13:42
Jeudi 8 Mars 2018 à 13:43
Jeudi 8 Mars 2018 à 13:46
Lundi 12 Mars 2018 à 15:41
Lundi 30 Juillet 2018 à 20:48
Mardi 2 Octobre 2018 à 16:00
Mercredi 7 Novembre 2018 à 7:03
Samedi 16 Février 2019 à 3:55
|
eduardolucioac | Vendredi 23 Février 2018 à 1:34 |
eduardolucioac
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesNew version! Unnecessary packages have been removed. Updated installer images. Added "POL_Wine_OverrideDLL \"native,builtin\" \"riched20\"" to fix the "black fields" issue! [Ref.: https://askubuntu.com/questions/879304/wine-2-0-says-it-supports-office-2013-how-do-i-actually-install-it/1007243#1007243] Differences@@ -1,84 +1,177 @@ #!/bin/bash - + # CHANGELOG -# [Quentin PÂRIS] (2015-11-26 22-01) -# Initial version - +# [Quentin Pâris and Eduardo Lucio (Questor)] (2018-02-17 15-24) +# Version 1.1.0.0 +# Paris/Brazil + +# >>>>>>>>>> +# Under BSD License! + +# Copyright (c) 2018, Quentin Pâris and Eduardo Lucio +# All rights reserved. + +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the free software community nor the +# names of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. + +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL Quentin Pâris and Eduardo Lucio BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# <<<<<<<<<< + +# NOTE: Complete liste of references! By Questor +# https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib +# https://www.playonlinux.com/en/app-2665-Microsoft_Office_2013.html +# http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions +# http://wiki.playonlinux.com/index.php/Components_and_Functions +# https://www.playonlinux.com/repository/source.php?script=822 +# https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/scripts.lib +# https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/wine.lib +# https://askubuntu.com/questions/879304/wine-2-0-says-it-supports-office-2013-how-do-i-actually-install-it +# https://github.com/RobertJames/playonlinux/blob/75ef37523f299255a539a89b63dc87d7afc096d4/template.POL + +# >>>>>>>>>> +# Initialization! + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - -PREFIX="Office2013" -WINEVERSION="1.8-staging" + +PREFIX="office2013" + +WINEVERSION="3.0" + TITLE="Microsoft Office 2013" - -POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" - + +# NOTE: Images to use! By Questor +POL_GetSetupImages "https://i.imgur.com/licFVuF.png" "https://i.imgur.com/ff6PkEZ.png" "$TITLE" + POL_SetupWindow_Init POL_SetupWindow_SetID 2665 - -POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" - -POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" - -if [ "$POL_OS" = "Linux" ]; then - wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" -fi + +POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin Pâris and Eduardo Lucio" "$PREFIX" + POL_Debug_Init -POL_System_SetArch "x86" - - -POL_SetupWindow_InstallMethod "LOCAL,DVD" - -if [ "$INSTALL_METHOD" = "DVD" ]; then - POL_SetupWindow_cdrom - POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" - SetupIs="$CDROM_SETUP" - cd "$CDROM" -else - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SetupIs="$APP_ANSWER" -fi - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "$WINEVERSION" -Set_OS "win7" +# <<<<<<<<<< + +# >>>>>>>>>> +# Perform some validations! + +POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION!\nPlease update!" + +if [ "$POL_OS" = "Linux" ]; then + wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" +fi if [ "$POL_OS" = "Mac" ]; then - # Samba support + + # NOTE: Samba support! By Quentin Pâris POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" + fi - - + POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" - + if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then - POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; + POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry!")"; +fi + +# NOTE: Check if "winetricks" is present! By Questor +winetricks -V || POL_Debug_Fatal "Please install winetricks before installing $TITLE!" + +POL_System_SetArch "x86" +POL_SetupWindow_InstallMethod "LOCAL,DVD" + +if [ "$INSTALL_METHOD" = "DVD" ]; then + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" + SetupIs="$CDROM_SETUP" + cd "$CDROM" +else + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run!')" "$TITLE" + SetupIs="$APP_ANSWER" fi + +# <<<<<<<<<< + +# >>>>>>>>>> +# Prepare resources for installation! + +# NOTE: Install wine version if isn't available. This is necessary because +# even though "POL_Wine_PrefixCreate" solves this, we end up having +# problems when the required version is not available and it tries to +# install it! Questor +# [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] +POL_Wine_InstallVersion "$WINEVERSION" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +Set_OS "win7" + +# <<<<<<<<<< + +# >>>>>>>>>> +# Install! + +# NOTE: Installs office! By Questor POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" - -# See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 + +# <<<<<<<<<< + +# >>>>>>>>>> +# Prepare resources for applications! + +# NOTE: Uses native special version of "riched20" installed by Office 2013! +# Fix the "black fields" issue! By Questor +# [Ref.: http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555] POL_Wine_OverrideDLL "native,builtin" "riched20" - -# Fix a crash when loading a file -# POL_Call POL_Install_msxml6 - + +# <<<<<<<<<< + +# >>>>>>>>>> +# Create shortcuts, entries to extensions and finalize! + +# NOTE: Create shortcuts! By Questor POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" -POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? -POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p - + +# NOTE: No category for collaborative work? By Quentin Pâris +POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" + +# NOTE: "Calendar;ContactManagement;"? By Quentin Pâris +POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" + +# NOTE: Add an entry to PlayOnLinux's extension file. If the entry already +# exists, it will replace it! By Questor +# [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/playonlinux.lib] POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" - + if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" @@ -86,7 +179,10 @@ POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi - -POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully!\n\nThanks!\nBy Quentin Pâris and Eduardo Lucio')" "$TITLE" POL_SetupWindow_Close -exit \ No newline at end of file + +# <<<<<<<<<< + +exit 0 Nouveau code source#!/bin/bash # CHANGELOG # [Quentin Pâris and Eduardo Lucio (Questor)] (2018-02-17 15-24) # Version 1.1.0.0 # Paris/Brazil # >>>>>>>>>> # Under BSD License! # Copyright (c) 2018, Quentin Pâris and Eduardo Lucio # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the free software community nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL Quentin Pâris and Eduardo Lucio BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # <<<<<<<<<< # NOTE: Complete liste of references! By Questor # https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib # https://www.playonlinux.com/en/app-2665-Microsoft_Office_2013.html # http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions # http://wiki.playonlinux.com/index.php/Components_and_Functions # https://www.playonlinux.com/repository/source.php?script=822 # https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/scripts.lib # https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/wine.lib # https://askubuntu.com/questions/879304/wine-2-0-says-it-supports-office-2013-how-do-i-actually-install-it # https://github.com/RobertJames/playonlinux/blob/75ef37523f299255a539a89b63dc87d7afc096d4/template.POL # >>>>>>>>>> # Initialization! [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="office2013" WINEVERSION="3.0" TITLE="Microsoft Office 2013" # NOTE: Images to use! By Questor POL_GetSetupImages "https://i.imgur.com/licFVuF.png" "https://i.imgur.com/ff6PkEZ.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin Pâris and Eduardo Lucio" "$PREFIX" POL_Debug_Init # <<<<<<<<<< # >>>>>>>>>> # Perform some validations! POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION!\nPlease update!" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" fi if [ "$POL_OS" = "Mac" ]; then # NOTE: Samba support! By Quentin Pâris POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry!")"; fi # NOTE: Check if "winetricks" is present! By Questor winetricks -V || POL_Debug_Fatal "Please install winetricks before installing $TITLE!" POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run!')" "$TITLE" SetupIs="$APP_ANSWER" fi # <<<<<<<<<< # >>>>>>>>>> # Prepare resources for installation! # NOTE: Install wine version if isn't available. This is necessary because # even though "POL_Wine_PrefixCreate" solves this, we end up having # problems when the required version is not available and it tries to # install it! Questor # [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] POL_Wine_InstallVersion "$WINEVERSION" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" # <<<<<<<<<< # >>>>>>>>>> # Install! # NOTE: Installs office! By Questor POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # <<<<<<<<<< # >>>>>>>>>> # Prepare resources for applications! # NOTE: Uses native special version of "riched20" installed by Office 2013! # Fix the "black fields" issue! By Questor # [Ref.: http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555] POL_Wine_OverrideDLL "native,builtin" "riched20" # <<<<<<<<<< # >>>>>>>>>> # Create shortcuts, entries to extensions and finalize! # NOTE: Create shortcuts! By Questor POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" # NOTE: No category for collaborative work? By Quentin Pâris POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # NOTE: "Calendar;ContactManagement;"? By Quentin Pâris POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # NOTE: Add an entry to PlayOnLinux's extension file. If the entry already # exists, it will replace it! By Questor # [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/playonlinux.lib] POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully!\n\nThanks!\nBy Quentin Pâris and Eduardo Lucio')" "$TITLE" POL_SetupWindow_Close # <<<<<<<<<< exit 0 Réponses |
eduardolucioac | Dimanche 18 Février 2018 à 16:29 |
eduardolucioac
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesOkay Guys!
Problems now:
Can't move application's window; Can't minimise an application's window and maximise it again.
Thanks!
Totally based on Quentin PÂRIS work, here's my contribution...
Differences@@ -1,84 +1,218 @@ #!/bin/bash - + # CHANGELOG -# [Quentin PÂRIS] (2015-11-26 22-01) -# Initial version - +# [Quentin Pâris and Eduardo Lucio (Questor)] (2018-02-17 15-24) +# Version 1.1.0.0 +# Paris/Brazil + +# >>>>>>>>>> +# Under BSD License! + +# Copyright (c) 2018, Quentin Pâris and Eduardo Lucio +# All rights reserved. + +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the free software community nor the +# names of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. + +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL Quentin Pâris and Eduardo Lucio BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# <<<<<<<<<< + +# NOTE: Complete liste of references! By Questor +# https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib +# https://www.playonlinux.com/en/app-2665-Microsoft_Office_2013.html +# http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions +# http://wiki.playonlinux.com/index.php/Components_and_Functions +# https://www.playonlinux.com/repository/source.php?script=822 +# https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/scripts.lib +# https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/wine.lib +# https://askubuntu.com/questions/879304/wine-2-0-says-it-supports-office-2013-how-do-i-actually-install-it +# https://github.com/RobertJames/playonlinux/blob/75ef37523f299255a539a89b63dc87d7afc096d4/template.POL + +# >>>>>>>>>> +# Initialization! + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - -PREFIX="Office2013" -WINEVERSION="1.8-staging" + +PREFIX="office2013" + +# NOTE: For installer only! With this version of wine the installer does not +# crash! By Questor +WINEVERSION_I="3.2" + +# NOTE: For Office 2013 applications! With this version of wine the Office +# 2013 applications does not crash! By Questor +WINEVERSION_II="2.22" + TITLE="Microsoft Office 2013" - + +# NOTE: Images to use! By Questor POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2665 - -POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" - -POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" - -if [ "$POL_OS" = "Linux" ]; then - wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" -fi + +POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin Pâris and Eduardo Lucio" "$PREFIX" + POL_Debug_Init -POL_System_SetArch "x86" - - -POL_SetupWindow_InstallMethod "LOCAL,DVD" - -if [ "$INSTALL_METHOD" = "DVD" ]; then - POL_SetupWindow_cdrom - POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" - SetupIs="$CDROM_SETUP" - cd "$CDROM" -else - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SetupIs="$APP_ANSWER" -fi - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "$WINEVERSION" -Set_OS "win7" +# <<<<<<<<<< + +# >>>>>>>>>> +# Perform some validations! + +POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION!\nPlease update!" + +if [ "$POL_OS" = "Linux" ]; then + wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" +fi if [ "$POL_OS" = "Mac" ]; then - # Samba support + + # NOTE: Samba support! By Quentin Pâris POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" + fi - - + POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" - + if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then - POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; + POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry!")"; fi + +# NOTE: Check if "winetricks" is present! By Questor +winetricks -V || POL_Debug_Fatal "Please install winetricks before installing $TITLE!" + +POL_System_SetArch "x86" +POL_SetupWindow_InstallMethod "LOCAL,DVD" + +if [ "$INSTALL_METHOD" = "DVD" ]; then + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" + SetupIs="$CDROM_SETUP" + cd "$CDROM" +else + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run!')" "$TITLE" + SetupIs="$APP_ANSWER" +fi + +# <<<<<<<<<< + +# >>>>>>>>>> +# Prepare resources for installation! + +# NOTE: Install wine version if isn't available. This is necessary because +# even though "POL_Wine_PrefixCreate" solves this, we end up having +# problems when the required version is not available and it tries to +# install it! Questor +# [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] +POL_Wine_InstallVersion "$WINEVERSION_I" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION_I" + +Set_OS "win7" + +# <<<<<<<<<< + +# >>>>>>>>>> +# Install! + +# NOTE: Installs office! By Questor POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" - -# See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 -POL_Wine_OverrideDLL "native,builtin" "riched20" - -# Fix a crash when loading a file -# POL_Call POL_Install_msxml6 - + +# <<<<<<<<<< + +# >>>>>>>>>> +# Prepare resources for applications! + +# NOTE: Install wine version if isn't available. This is necessary because +# even though "POL_Wine_SetVersionPrefix" solves this, we end up having +# problems when the required version is not available and it tries to +# install it! Questor +# [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] +POL_Wine_InstallVersion "$WINEVERSION_II" + +# NOTE: Setting wine prefix version! By Questor +# [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] +POL_Wine_SetVersionPrefix "$WINEVERSION_II" + +# NOTE: Fix "black window" problem. Must be done shortly after creating the +# prefix! By Questor +# [Ref.: https://askubuntu.com/a/882084/134723] +cat << EOF > "Direct3D.reg" +Windows Registry Editor Version 5.00 + +[HKEY_CURRENT_USER\Software\Wine\Direct3D] +"MaxVersionGL"=dword:00030002 + + +EOF +POL_Wine regedit "Direct3D.reg" +rm -f "Direct3D.reg" + +POL_SetupWindow_pulsebar "Installing some components/functions..." "Installing" + +# NOTE: Some of this maybe isn't needed! By Questor + +POL_SetupWindow_pulse "0" +winetricks -q msxml6 + +# NOTE: Fix the PowerPoint "not enough memory or system resources" issue and +# "black fields" issue! By Questor +# [Ref.: https://askubuntu.com/a/964712/134723] +# [Ref.: https://www.playonlinux.com/en/app-2665-Microsoft_Office_2013.html] +POL_SetupWindow_pulse "25" +winetricks -q msftedit +POL_SetupWindow_pulse "50" +winetricks -q riched30 +POL_SetupWindow_pulse "75" +winetricks -q vb6run +POL_SetupWindow_pulse "100" + +# <<<<<<<<<< + +# >>>>>>>>>> +# Create shortcuts, entries to extensions and finalize! + +# NOTE: Create shortcuts! By Questor POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p - + +# NOTE: Add an entry to PlayOnLinux's extension file. If the entry already +# exists, it will replace it! By Questor +# [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/playonlinux.lib] POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" - + if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" @@ -86,7 +220,10 @@ POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi - -POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully!\n\nThanks!\nBy Quentin Pâris and Eduardo Lucio')" "$TITLE" POL_SetupWindow_Close -exit \ No newline at end of file + +# <<<<<<<<<< + +exit 0 Nouveau code source#!/bin/bash # CHANGELOG # [Quentin Pâris and Eduardo Lucio (Questor)] (2018-02-17 15-24) # Version 1.1.0.0 # Paris/Brazil # >>>>>>>>>> # Under BSD License! # Copyright (c) 2018, Quentin Pâris and Eduardo Lucio # All rights reserved. # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the free software community nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL Quentin Pâris and Eduardo Lucio BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # <<<<<<<<<< # NOTE: Complete liste of references! By Questor # https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib # https://www.playonlinux.com/en/app-2665-Microsoft_Office_2013.html # http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions # http://wiki.playonlinux.com/index.php/Components_and_Functions # https://www.playonlinux.com/repository/source.php?script=822 # https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/scripts.lib # https://github.com/PlayOnLinux/POL-POM-4/blob/367e50865168b5b931611fa33b0c1d8426143a90/lib/wine.lib # https://askubuntu.com/questions/879304/wine-2-0-says-it-supports-office-2013-how-do-i-actually-install-it # https://github.com/RobertJames/playonlinux/blob/75ef37523f299255a539a89b63dc87d7afc096d4/template.POL # >>>>>>>>>> # Initialization! [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="office2013" # NOTE: For installer only! With this version of wine the installer does not # crash! By Questor WINEVERSION_I="3.2" # NOTE: For Office 2013 applications! With this version of wine the Office # 2013 applications does not crash! By Questor WINEVERSION_II="2.22" TITLE="Microsoft Office 2013" # NOTE: Images to use! By Questor POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin Pâris and Eduardo Lucio" "$PREFIX" POL_Debug_Init # <<<<<<<<<< # >>>>>>>>>> # Perform some validations! POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION!\nPlease update!" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" fi if [ "$POL_OS" = "Mac" ]; then # NOTE: Samba support! By Quentin Pâris POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry!")"; fi # NOTE: Check if "winetricks" is present! By Questor winetricks -V || POL_Debug_Fatal "Please install winetricks before installing $TITLE!" POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run!')" "$TITLE" SetupIs="$APP_ANSWER" fi # <<<<<<<<<< # >>>>>>>>>> # Prepare resources for installation! # NOTE: Install wine version if isn't available. This is necessary because # even though "POL_Wine_PrefixCreate" solves this, we end up having # problems when the required version is not available and it tries to # install it! Questor # [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] POL_Wine_InstallVersion "$WINEVERSION_I" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION_I" Set_OS "win7" # <<<<<<<<<< # >>>>>>>>>> # Install! # NOTE: Installs office! By Questor POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # <<<<<<<<<< # >>>>>>>>>> # Prepare resources for applications! # NOTE: Install wine version if isn't available. This is necessary because # even though "POL_Wine_SetVersionPrefix" solves this, we end up having # problems when the required version is not available and it tries to # install it! Questor # [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] POL_Wine_InstallVersion "$WINEVERSION_II" # NOTE: Setting wine prefix version! By Questor # [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/wine.lib] POL_Wine_SetVersionPrefix "$WINEVERSION_II" # NOTE: Fix "black window" problem. Must be done shortly after creating the # prefix! By Questor # [Ref.: https://askubuntu.com/a/882084/134723] cat << EOF > "Direct3D.reg" Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Wine\Direct3D] "MaxVersionGL"=dword:00030002 EOF POL_Wine regedit "Direct3D.reg" rm -f "Direct3D.reg" POL_SetupWindow_pulsebar "Installing some components/functions..." "Installing" # NOTE: Some of this maybe isn't needed! By Questor POL_SetupWindow_pulse "0" winetricks -q msxml6 # NOTE: Fix the PowerPoint "not enough memory or system resources" issue and # "black fields" issue! By Questor # [Ref.: https://askubuntu.com/a/964712/134723] # [Ref.: https://www.playonlinux.com/en/app-2665-Microsoft_Office_2013.html] POL_SetupWindow_pulse "25" winetricks -q msftedit POL_SetupWindow_pulse "50" winetricks -q riched30 POL_SetupWindow_pulse "75" winetricks -q vb6run POL_SetupWindow_pulse "100" # <<<<<<<<<< # >>>>>>>>>> # Create shortcuts, entries to extensions and finalize! # NOTE: Create shortcuts! By Questor POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p # NOTE: Add an entry to PlayOnLinux's extension file. If the entry already # exists, it will replace it! By Questor # [Ref.: https://github.com/PlayOnLinux/POL-POM-4/blob/master/lib/playonlinux.lib] POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully!\n\nThanks!\nBy Quentin Pâris and Eduardo Lucio')" "$TITLE" POL_SetupWindow_Close # <<<<<<<<<< exit 0 Réponses |
jayveer singh | Vendredi 26 Janvier 2018 à 1:30 |
jayveer singh
|
Messageshow can i install this program with linux ubntu RéponsesVendredi 26 Janvier 2018 à 2:02
|
soareku | Jeudi 18 Janvier 2018 à 15:17 |
soareku
|
Messagesi recive this mesage ...
Error in main what to do next? thx RéponsesDimanche 21 Janvier 2018 à 10:09
|
sblandford | Mardi 9 Janvier 2018 à 16:58 |
sblandford
|
MessagesTried the latest version of the office_2013.pol but still unable to activate after entering valid key. I have 5 days left... RéponsesDimanche 21 Janvier 2018 à 10:33
|
maroc | Jeudi 23 Novembre 2017 à 4:48 |
maroc
|
MessagesI made some updates others might find useful: https://github.com/maroc81/playonlinux/tree/master/office The reg file in that directory needs to be imported after install. I may be able to do it from the pol. Until then, use the reg or manually edit registry after install.
Réponses |
bastos77 | Mardi 16 Mai 2017 à 12:41 |
bastos77
|
MessagesI finally get Office 2013 running.
RéponsesMercredi 17 Mai 2017 à 9:33
Mercredi 17 Mai 2017 à 9:33
Mercredi 17 Mai 2017 à 9:35
Samedi 20 Mai 2017 à 21:16
Mardi 6 Juin 2017 à 23:19
Mardi 6 Juin 2017 à 23:20
Mardi 6 Juin 2017 à 23:21
Mardi 6 Juin 2017 à 23:21
Lundi 13 Novembre 2017 à 20:11
|
chicco | Mardi 7 Février 2017 à 15:50 |
chicco
|
MessagesThe program installs with no problems using Wine 2.0, but when it runs, it just shows a black screen. Réponses |
avamk | Lundi 30 Janvier 2017 à 0:32 |
avamk
|
|
cheech | Jeudi 22 Décembre 2016 à 15:43 |
cheech
|
|
avamk | Lundi 19 Décembre 2016 à 16:34 |
avamk
|
MessagesUnfortunately this doesn't work for me at all on Manjaro Linux. Will there be an updated version of this script for Wine 2.0? Réponses |
göpsy | Jeudi 20 Octobre 2016 à 13:23 |
göpsy
|
MessagesWhen I changed LinuxMint from 17.3 to 18 I had to delete all my windows-programs. Maybe you can help me!
Réponses |
AntoSVK | Samedi 15 Octobre 2016 à 2:26 |
AntoSVK
|
MessagesI can install Office 2013, but I can't activate it, because there's no internet connection. Réponses |
niasse | Dimanche 29 Mai 2016 à 23:31 |
niasse
|
MessagesAloha! Your effort is much appreciated, but unfortunately the installer did not fulfill its intended purpose for me. Copy of the error log below [spoiler]
Cheers, niasse (Linux newbie after 20yrs on Windows) Réponses |
qpoKycHuK | Mardi 26 Avril 2016 à 11:28 |
qpoKycHuK
|
MessagesHey. I installed Office 2013 on Ubuntu. Start the app word, I saw that the menu is not displayed text. Screenshot can be viewed at the following link: http://imglink.ru/show-image.php?id=8380595071f9dbcd52b2bdc28c0c6109 I need help. Help get rid of this bug, and fix the problem. RéponsesMercredi 27 Avril 2016 à 6:05
|
TuxDroid | Samedi 19 Mars 2016 à 16:24 |
TuxDroid
|
Messagesi recive this error Unhandled exception: 0xe0000002 in 32-bit code (0x7b83ea52). Réponses |
sho | Vendredi 18 Mars 2016 à 15:42 |
sho
|
MessagesHi! Supported English version only? I have Office2013 ProPlus x86 disk Japanese version and setup.exe installer doesn't work. What should I do to install? Thanks! Réponses |
aguilucho | Samedi 5 Mars 2016 à 23:57 |
aguilucho
|
MessagesI have create a new vdrive with the windows version 10. My next step wars, I have installed, all the programms from the playonlinux commponents. Now I have started the DVD setup.exe installer from the Office 2013 Disc. The programm is not crashed, but it needs a signature for office-products. Here is the problem: andy@MSI:~$ playonlinux
Réponses |
Rainmaker | Samedi 20 Février 2016 à 22:17 |
Rainmaker
|
MessagesIt did not work for me, because I am using intel graphics drivers. Because of this, wine reports shader 3, whereas the setup crashes if it does not get shader model 4. Please add the regkey HKCU\Software\Wine\Direct3D\MaxVersionGL (DWORD) Value 30002 (Hex) This allowed me to install Office 2013. Source: https://bugs.winehq.org/show_bug.cgi?id=38648#c22 Réponses |
jiskin | Samedi 30 Janvier 2016 à 14:42 |
jiskin
|
MessagesI've been able to install and launch correctly Word and Excel. However lot of bugs are still present: - Insert > Equation > the symbols do not appears correctly and make even crash Word - Many menus in the top bar are not always displayed correctly - In Excel, not possible to rename the cells through the list menu on the left of formula bar input. I've stopped my tests here. Thank you for your work. Réponses |
Shabur | Mardi 19 Janvier 2016 à 11:20 |
Shabur
|
MessagesGuys! Which installer did you use??????
Please provide a link. RéponsesMardi 19 Janvier 2016 à 11:42
Mercredi 20 Janvier 2016 à 14:31
Mercredi 20 Janvier 2016 à 14:32
Mercredi 20 Janvier 2016 à 17:14
Mercredi 27 Janvier 2016 à 17:04
Dimanche 31 Janvier 2016 à 11:19
|
overflyer | Samedi 16 Janvier 2016 à 19:03 |
overflyer
|
MessagesOffice 2013 installation fails with the new POL 4.2.10 RéponsesSamedi 16 Janvier 2016 à 20:18
|
göpsy | Vendredi 15 Janvier 2016 à 7:39 |
göpsy
|
MessagesI just have installed ms office 13 on my linux mint rosa. many thanks! göpsy Réponses |
doctor_who12 | Lundi 11 Janvier 2016 à 12:56 |
doctor_who12
|
MessagesI have got this installed and it seems to work however I can't activate. It comes up with 'Sorry, we are having some temporary server issues'. Does anyone know a way arround this? I need to log in with my account to activate. RéponsesMardi 12 Janvier 2016 à 12:39
Samedi 16 Janvier 2016 à 19:09
Mardi 9 Janvier 2018 à 16:56
|
Quentin PÂRIS | Lundi 28 Décembre 2015 à 13:42 |
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -8,7 +8,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" -WINEVERSION="1.8-rc3-staging" +WINEVERSION="1.8-staging" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="1.8-staging" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit RéponsesMardi 29 Décembre 2015 à 17:56
Mardi 29 Décembre 2015 à 18:56
Mardi 29 Décembre 2015 à 22:07
Lundi 4 Janvier 2016 à 11:26
Lundi 4 Janvier 2016 à 11:27
Mardi 5 Janvier 2016 à 21:38
Mercredi 6 Janvier 2016 à 0:19
Mercredi 6 Janvier 2016 à 2:02
Mercredi 6 Janvier 2016 à 2:02
Mercredi 6 Janvier 2016 à 7:03
Mercredi 6 Janvier 2016 à 12:43
Samedi 9 Janvier 2016 à 17:40
Dimanche 10 Janvier 2016 à 18:48
Jeudi 14 Janvier 2016 à 20:58
Jeudi 14 Janvier 2016 à 21:03
Vendredi 15 Janvier 2016 à 20:32
|
Quentin PÂRIS | Mardi 8 Décembre 2015 à 16:26 |
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -8,7 +8,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" -WINEVERSION="1.8-rc1-staging" +WINEVERSION="1.8-rc3-staging" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="1.8-rc3-staging" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit Réponses |
overflyer | Samedi 5 Décembre 2015 à 22:27 |
overflyer
|
MessagesHi Quentin, Réponses |
petch | Vendredi 4 Décembre 2015 à 23:16 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdd POL_SetupWindow_SetID Differences@@ -14,6 +14,7 @@ POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init +POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="1.8-rc1-staging" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2665 POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit Réponses |
Quentin PÂRIS | Jeudi 26 Novembre 2015 à 22:01 |
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -63,7 +63,7 @@ POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file -POL_Call POL_Install_msxml6 +# POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" Nouveau code source#!/bin/bash # CHANGELOG # [Quentin PÂRIS] (2015-11-26 22-01) # Initial version [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Office2013" WINEVERSION="1.8-rc1-staging" TITLE="Microsoft Office 2013" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update" if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" fi POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "x86/setup.exe" "setup.exe" SetupIs="$CDROM_SETUP" cd "$CDROM" else POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SetupIs="$APP_ANSWER" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" if [ "$POL_OS" = "Mac" ]; then # Samba support POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi POL_Wine_WaitBefore "$TITLE" [ "$CDROM" ] && cd "$CDROM" if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")"; fi POL_Wine "$SetupIs" POL_Wine_WaitExit "$TITLE" # See http://forum.winehq.org/viewtopic.php?f=8&t=23126&p=95555#p95555 POL_Wine_OverrideDLL "native,builtin" "riched20" # Fix a crash when loading a file # POL_Call POL_Install_msxml6 POL_Shortcut "WINWORD.EXE" "Microsoft Word 2013" "" "" "Office;WordProcessor;" POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2013" "" "" "Office;Spreadsheet;" POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2013" "" "" "Office;Presentation;" POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2013" "" "" "Network;InstantMessaging;" # No category for collaborative work? POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2013" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p POL_Extension_Write doc "Microsoft Word 2013" POL_Extension_Write docx "Microsoft Word 2013" POL_Extension_Write xls "Microsoft Excel 2013" POL_Extension_Write xlsx "Microsoft Excel 2013" POL_Extension_Write ppt "Microsoft Powerpoint 2013" POL_Extension_Write pptx "Microsoft Powerpoint 2013" if [ "$POL_OS" = "Mac" ]; then POL_Shortcut_InsertBeforeWine "Microsoft Word 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Excel 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2013" "source \"$POL_USER_ROOT/tools/samba3/init\"" fi POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE" POL_SetupWindow_Close exit RéponsesSamedi 28 Novembre 2015 à 17:53
Vendredi 22 Avril 2016 à 3:46
Vendredi 22 Avril 2016 à 4:17
Edité par Tinou |
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