Microsoft Office 2013
Informatie
Creator | Bericht |
---|---|
Quentin PÂRIS
![]()
|
WarningThis installer is a beta script. It means that it might not work as expected InformatiePlatforms: Feedbacks18 19 OmschrijvingOffice 2013 testing installer. Broncode#!/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:
ContributeMember | Bericht |
Lio | Donderdag 29 September 2022 om 21:38 |
Lio
![]()
|
Berichtscript do not work on msoffice 2013 pro retail :( any help to fix this is welcome :( ``` AntwoordenAangepast door Lio |
Dadu042 | Woensdag 11 Mei 2022 om 0:18 |
Dadu042
![]()
|
InformationThis update has been approved by the team. 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" New source code#!/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 Antwoorden |
am1234 | Vrijdag 25 Juni\ 2021 om 7:44 |
am1234
![]()
|
WarningThis update has not been approved yet by the team. BerichtBy 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" New source code#!/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 AntwoordenWoensdag 11 Mei 2022 om 0:16
|
am1234 | Vrijdag 25 Juni\ 2021 om 7:36 |
am1234
![]()
|
WarningThis update has not been approved yet by the team. BerichtIf 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" New source code#!/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 Antwoorden |
jatin sukhija | Zaterdag 4 Januari 2020 om 14:45 |
jatin sukhija
![]()
|
Berichtonenote 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 AntwoordenAangepast door jatin sukhija |
Dadu042 | Donderdag 2 Januari 2020 om 23:29 |
Dadu042
![]()
|
WarningThis update has not been approved yet by the team. 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" New source code#!/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 Antwoorden |
flecom | Zondag 29 December 2019 om 9:32 |
flecom
![]()
|
BerichtOutlook 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 Antwoorden |
GotToBeThere | Woensdag 30 October 2019 om 14:59 |
GotToBeThere
![]()
|
BerichtWord 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.
AntwoordenDinsdag 4 Februari 2020 om 21:46
Aangepast door GotToBeThere |
txutxifel | Zondag 20 October 2019 om 5:49 |
txutxifel
![]()
|
BerichtHi, Any idea? AntwoordenDinsdag 4 Februari 2020 om 21:47
Zondag 8 Maart 2020 om 16:33
Dinsdag 10 Mei 2022 om 22:39
|
bastos77 | Vrijdag 30 Augustus 2019 om 16:23 |
bastos77
![]()
|
BerichtSeems that Excel hangs if a Word document is opened and Word hangs if an Excel document is opened Antwoorden |
bastos77 | Dinsdag 30 Juli 2019 om 14:48 |
bastos77
![]()
|
BerichtInstallation 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 Antwoorden |
avbartolomeo | Dinsdag 9 Juli 2019 om 4:44 |
avbartolomeo
![]()
|
BerichtExcel tried to start but never finish. Antwoorden |
oovyxd | Donderdag 21 Maart 2019 om 12:24 |
oovyxd
![]()
|
WarningThis update has not been approved yet by the team. BerichtI 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" New source code#!/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 AntwoordenMaandag 1 April 2019 om 17:45
Aangepast door oovyxd |
Md. Habibur Rahman | Maandag 3 December 2018 om 5:02 |
Md. Habibur Rahman
![]()
|
BerichtThis programe is very useful. Antwoorden |
coleco | Zaterdag 27 October 2018 om 23:04 |
coleco
![]()
|
BerichtJust 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. AntwoordenDinsdag 11 December 2018 om 19:28
|
eduardolucioac | Vrijdag 23 Februari 2018 om 2:22 |
eduardolucioac
![]()
|
WarningThis update has not been approved yet by the team. BerichtNew 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 New source code#!/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 AntwoordenWoensdag 7 Maart 2018 om 18:12
Woensdag 7 Maart 2018 om 18:13
Woensdag 7 Maart 2018 om 18:18
Donderdag 8 Maart 2018 om 13:37
Donderdag 8 Maart 2018 om 13:42
Donderdag 8 Maart 2018 om 13:43
Donderdag 8 Maart 2018 om 13:46
Maandag 12 Maart 2018 om 15:41
Maandag 30 Juli 2018 om 20:48
Dinsdag 2 October 2018 om 16:00
Woensdag 7 November 2018 om 7:03
Zaterdag 16 Februari 2019 om 3:55
|
eduardolucioac | Vrijdag 23 Februari 2018 om 1:34 |
eduardolucioac
![]()
|
WarningThis update has not been approved yet by the team. BerichtNew 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 New source code#!/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 Antwoorden |
eduardolucioac | Zondag 18 Februari 2018 om 16:29 |
eduardolucioac
![]()
|
WarningThis update has not been approved yet by the team. BerichtOkay 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 New source code#!/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 Antwoorden |
jayveer singh | Vrijdag 26 Januari 2018 om 1:30 |
jayveer singh
![]()
|
Berichthow can i install this program with linux ubntu AntwoordenVrijdag 26 Januari 2018 om 2:02
|
soareku | Donderdag 18 Januari 2018 om 15:17 |
soareku
![]()
|
Berichti recive this mesage ...
Error in main what to do next? thx AntwoordenZondag 21 Januari 2018 om 10:09
|
sblandford | Dinsdag 9 Januari 2018 om 16:58 |
sblandford
![]()
|
BerichtTried the latest version of the office_2013.pol but still unable to activate after entering valid key. I have 5 days left... AntwoordenZondag 21 Januari 2018 om 10:33
|
maroc | Donderdag 23 November 2017 om 4:48 |
maroc
![]()
|
BerichtI 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.
Antwoorden |
bastos77 | Dinsdag 16 Mei 2017 om 12:41 |
bastos77
![]()
|
BerichtI finally get Office 2013 running.
AntwoordenWoensdag 17 Mei 2017 om 9:33
Woensdag 17 Mei 2017 om 9:33
Woensdag 17 Mei 2017 om 9:35
Zaterdag 20 Mei 2017 om 21:16
Dinsdag 6 Juni\ 2017 om 23:19
Dinsdag 6 Juni\ 2017 om 23:20
Dinsdag 6 Juni\ 2017 om 23:21
Dinsdag 6 Juni\ 2017 om 23:21
Maandag 13 November 2017 om 20:11
|
chicco | Dinsdag 7 Februari 2017 om 15:50 |
chicco
![]()
|
BerichtThe program installs with no problems using Wine 2.0, but when it runs, it just shows a black screen. Antwoorden |
avamk | Maandag 30 Januari 2017 om 0:32 |
avamk
![]()
|
|
cheech | Donderdag 22 December 2016 om 15:43 |
cheech
![]()
|
|
avamk | Maandag 19 December 2016 om 16:34 |
avamk
![]()
|
BerichtUnfortunately this doesn't work for me at all on Manjaro Linux. Will there be an updated version of this script for Wine 2.0? Antwoorden |
göpsy | Donderdag 20 October 2016 om 13:23 |
göpsy
![]()
|
BerichtWhen I changed LinuxMint from 17.3 to 18 I had to delete all my windows-programs. Maybe you can help me!
Antwoorden |
AntoSVK | Zaterdag 15 October 2016 om 2:26 |
AntoSVK
![]()
|
BerichtI can install Office 2013, but I can't activate it, because there's no internet connection. Antwoorden |
niasse | Zondag 29 Mei 2016 om 23:31 |
niasse
![]()
|
BerichtAloha! 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) Antwoorden |
qpoKycHuK | Dinsdag 26 April 2016 om 11:28 |
qpoKycHuK
![]()
|
BerichtHey. 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. AntwoordenWoensdag 27 April 2016 om 6:05
|
TuxDroid | Zaterdag 19 Maart 2016 om 16:24 |
TuxDroid
![]()
|
Berichti recive this error Unhandled exception: 0xe0000002 in 32-bit code (0x7b83ea52). Antwoorden |
sho | Vrijdag 18 Maart 2016 om 15:42 |
sho
![]()
|
BerichtHi! 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! Antwoorden |
aguilucho | Zaterdag 5 Maart 2016 om 23:57 |
aguilucho
![]()
|
BerichtI 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
Antwoorden |
Rainmaker | Zaterdag 20 Februari 2016 om 22:17 |
Rainmaker
![]()
|
BerichtIt 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 Antwoorden |
jiskin | Zaterdag 30 Januari 2016 om 14:42 |
jiskin
![]()
|
BerichtI'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. Antwoorden |
Shabur | Dinsdag 19 Januari 2016 om 11:20 |
Shabur
![]()
|
BerichtGuys! Which installer did you use??????
Please provide a link. AntwoordenDinsdag 19 Januari 2016 om 11:42
Woensdag 20 Januari 2016 om 14:31
Woensdag 20 Januari 2016 om 14:32
Woensdag 20 Januari 2016 om 17:14
Woensdag 27 Januari 2016 om 17:04
Zondag 31 Januari 2016 om 11:19
|
overflyer | Zaterdag 16 Januari 2016 om 19:03 |
overflyer
![]()
|
BerichtOffice 2013 installation fails with the new POL 4.2.10 AntwoordenZaterdag 16 Januari 2016 om 20:18
|
göpsy | Vrijdag 15 Januari 2016 om 7:39 |
göpsy
![]()
|
BerichtI just have installed ms office 13 on my linux mint rosa. many thanks! göpsy Antwoorden |
doctor_who12 | Maandag 11 Januari 2016 om 12:56 |
doctor_who12
![]()
|
BerichtI 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. AntwoordenDinsdag 12 Januari 2016 om 12:39
Zaterdag 16 Januari 2016 om 19:09
Dinsdag 9 Januari 2018 om 16:56
|
Quentin PÂRIS | Maandag 28 December 2015 om 13:42 |
Quentin PÂRIS
![]()
|
WarningThis update has not been approved yet by the team. 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" New source code#!/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 AntwoordenDinsdag 29 December 2015 om 17:56
Dinsdag 29 December 2015 om 18:56
Dinsdag 29 December 2015 om 22:07
Maandag 4 Januari 2016 om 11:26
Maandag 4 Januari 2016 om 11:27
Dinsdag 5 Januari 2016 om 21:38
Woensdag 6 Januari 2016 om 0:19
Woensdag 6 Januari 2016 om 2:02
Woensdag 6 Januari 2016 om 2:02
Woensdag 6 Januari 2016 om 7:03
Woensdag 6 Januari 2016 om 12:43
Zaterdag 9 Januari 2016 om 17:40
Zondag 10 Januari 2016 om 18:48
Donderdag 14 Januari 2016 om 20:58
Donderdag 14 Januari 2016 om 21:03
Vrijdag 15 Januari 2016 om 20:32
|
Quentin PÂRIS | Dinsdag 8 December 2015 om 16:26 |
Quentin PÂRIS
![]()
|
WarningThis update has not been approved yet by the team. 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" New source code#!/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 Antwoorden |
overflyer | Zaterdag 5 December 2015 om 22:27 |
overflyer
![]()
|
BerichtHi Quentin, Antwoorden |
petch | Vrijdag 4 December 2015 om 23:16 |
petch
![]()
|
WarningThis update has not been approved yet by the team. BerichtAdd 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" New source code#!/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 Antwoorden |
Quentin PÂRIS | Donderdag 26 November 2015 om 22:01 |
Quentin PÂRIS
![]()
|
WarningThis update has not been approved yet by the team. 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;" New source code#!/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 AntwoordenZaterdag 28 November 2015 om 17:53
Vrijdag 22 April 2016 om 3:46
Vrijdag 22 April 2016 om 4:17
Aangepast door 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