divie |
Mercredi 2 Octobre 2024 à 5:49 |
divie
|
Messages
Currently, the installation is broken and no longer works.
The servers where the fonts were stored have gone down and are forever trying to download the fonts, preventing the installation from progressing.
Réponses
|
divie |
Mercredi 2 Octobre 2024 à 5:49 |
divie
|
Messages
Currently, the installation is broken and no longer works.
The servers where the fonts were stored have gone down and are forever trying to download the fonts, preventing the installation from progressing.
Réponses
|
jpthiran |
Vendredi 3 Mai 2024 à 2:10 |
jpthiran
|
Messages
Hello All.
I'm trying to install Microsoft Office 2010 on Zorin OS 16.3 Lite with Wine and PlayOnLinux.
When running PlayOnLinux I get the following error message that it got into a fatal error.
Please, can you advise on how to proceed?
Thank you and Regards,
Jean-Pierre.
Réponses
|
m4rcuzNLD |
Dimanche 11 Juin 2023 à 8:05 |
m4rcuzNLD
|
Messages
Visual Basic working in Office 2010!.
Because i'm a little lazy, I did not read through the whole thread. (please forgive me)
For all who run Office 2010 and struggled with VB; I finally found a solution.
Many years I have been struggling to get MS Office running properly. Sometimes it ran, most of the time i had issues.
Now for quite some time I'm running 2010 without any major problems. Only thing was; VB did't work. And VB is the thing what makes excel so nice in my opinion.
After reading through a post from 2020 : <href>https://www.codeweavers.com/support/forums/general?t=26;msg=224025</href>
the oleaut32.dll thingy did the trick.
In case you had the same issue, perhaps it helps.
grtz
Réponses
|
grizzogor |
Vendredi 19 Mai 2023 à 13:30 |
grizzogor
|
Messages
Hi PlayOnLinux contributors,
I have an issue when installing Office 2010 within the past month or so. When POL installs Microsoft fonts, it gets stuck on tahoma32.exe with no way to skip it to continue the installation.
I assume Microsoft (or wherever it's getting the font files from) had moved the file, causing POL to not continue the installation process.
Is there any way that this could be resolved?
Réponses
Jeudi 8 Juin 2023 à 22:39
i have had this exact issue
|
jack1142 |
Mardi 31 Janvier 2023 à 23:15 |
jack1142
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
The wizard hangs indefinitely when the path to the installer contains spaces and there's a " - " in the path to the installer, e.g. with a path like this: "/media/ubuntu/Disk Name/Backups - installers/Office_HB_2010_Polish_x32.exe" due to the call to `file`. Also, this means that it may not correctly detect when a x64 executable is passed since it treats each arguments as a separate path while still exiting with code 0.
The attached improvement fixes this.
Differences
1 2 3 4 5 6 7 8 9 | @@ -70,7 +70,7 @@
POL_Wine_WaitBefore "$TITLE"
[ "$CDROM" ] && cd "$CDROM"
-if [ ! "$(file $SetupIs | grep 'x86-64')" = "" ]; then
+if [ ! "$(file "$SetupIs" | grep 'x86-64')" = "" ]; then
POL_Debug_Fatal "$(eval_gettext "The 64bits version is not compatible! Sorry")";
fi
POL_Wine "$SetupIs"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "3.0.3"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
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 (or samba, on Arch Linux) 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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Call POL_Install_dotnet20
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_gdiplus
POL_Call POL_Install_riched20
POL_Call POL_Install_riched30
POL_Call POL_Install_msxml6
POL_Call POL_Install_mspatcha
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native,builtin" "riched30"
POL_Wine_OverrideDLL "native,builtin" "gdiplus"
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "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 0
|
Réponses
|
newbumblebee |
Vendredi 2 September 2022 à 15:53 |
newbumblebee
|
Messages
Hallo folks,
thank you very much for these scripts. I am really glad there is a possibility to run a MS-Windows-program on linux without bothering with VirtualBox or such.
I habe MS-Office pro 2010. I would like to install not the whole of the package, but MS-Access only. For writing, calculating etc. I use LibreOffice.
How have I to adapt this script, please? Is this possible?
Is Wine 3.0 still recommended today, or should I use Wine 3.4?
Oh, and my installation CD doesn't have some setup*.exe plus loads of files. On the CD there is just one file, called something like X17-*.exe. I tried to install MS-Access with the procedures given on https://isolution.pro/de/q/au13972902/wie-installiere-ich-ms-office-2016-unter-playonlinux. (They use Wine 3.4, Windows 7 and the 32kb-version.) The installation went through, but the program would not start because of one fatal error or another. The cause was not clear.
Thank you very much for your help.
Newbumblebee
Réponses
Samedi 11 Mars 2023 à 0:52
(sorry)
Samedi 11 Mars 2023 à 1:02
Hallo everybody,
I try it again, full of hope: I have managed to install Word, Excel & Access using the link mentioned above. What I couldn't do: step copying DLLs from ClickToRun-directory. This should not be a problem as I have a full version?
All three start.
In Excel I could run a simple VBA-script.
In Excel & Word I could activate the developer tools ("Entwickler-Tools"). Not in Access.
My main problem: In Access I cannot use VBA. It starts with a simple error when during opening of a form a VBA-script is called.
"Sie haben als Einstellung der Ereigniseigenschaft den Ausdruck Beim Öffnen eingegeben. Dieser Ausdruck hat einen Fehler verursacht: ."
"You have entered the expression on opening as the event property setting. This expression has caused an error: ."
Interestingly the error is not stated.
I have got that error while opening an existing Acces 2007-database (.mda).
So I created a mini dummy database with 1table & 1form; that came out as *accdb. The form does something on opening (go to the last dataset). Again the same error.
My operating system is Tuxedo, a derivate of Ubuntu (up-to-date).
Has anybody an idea what I should do?
Thank you.
Edité par newbumblebee
|
datapro |
Mardi 12 Juillet 2022 à 19:46 |
datapro
|
|
wayland |
Jeudi 23 Décembre 2021 à 3:41 |
wayland
|
Messages
MS Office 2010 Pro seems to work well on my Mint 20.1 setup. However MS Access is missing acouple of compoenents.
I opened a shell prompt and did these two;
winetricks mdac28
winetricks oleaut32
The first one allows ODBC to work in Access External Data. The second makes Forms editable and seems to make buttons with macros work too.
Still no OLE objects so no fancy graphs. However Access now seems to be a reliable tool for Linux even if it's not up to running previously written business apps from Windows.
I installed mysql-connector-odbc-3.51.30-win32.msi and am able to reliably connect Access to a MySQL or MariaDB database which I'm chuffed about. If the two libruaries above could be included in the Play On Linux then Access becomes a lot more viable.
Linux has nothing like Access but it has word processors and spreadsheets gallore.
Réponses
Mercredi 27 Juillet 2022 à 13:11
i need a office
Edité par wayland
|
pwinkz |
Mercredi 11 Aoüt 2021 à 19:09 |
pwinkz
|
Messages
My installation has been stuck at downloading: windowsxp-kb936929-sp3-x86-enu_c81472f7eeea2eca421e116cd4c03e2300ebfde4.exe
for over 4 hours now and size is only 316.4 MB. How do I deal with this or what is causing it?
Réponses
Jeudi 23 Décembre 2021 à 3:45
The usual reason for getting stuck is that Microsoft moved a file and PoL just keeps asking for it.
Jeudi 23 Décembre 2021 à 3:45
The usual reason for getting stuck is that Microsoft moved a file and PoL just keeps asking for it.
|
elm31rugby |
Vendredi 4 Juin 2021 à 8:52 |
elm31rugby
|
Messages
Bonjour, je viens d'installer Microsoft Office 2010 standard. L'installation se passe bien, mais je ne peux activer le produit. Lorsque je cherche à le faire, je reçois le message "Le programme setup.exe a rencontré un grave probleme et doit fermer".
Office fonctionne un mois, puis se bloque.
J'ai une clé Office achetée, le problème n'est pas là. Je cherche vraiment à activer mon produit.
Certes, je peux tous les mois réinstaller le programe...
Mon système : PLO 4.3.4, Ubuntu 18.04, Office2010 Standard.
Si vous vez une piste... Merci d'avance !
Eric LM
Réponses
Dimanche 29 Aoüt 2021 à 0:51
Vous devez télécharger "winbind" dans le terminal. Effacez playonlinux avec "sudo apt remove playonlinux" et reinstallez avec "sudo apt-get install playonlinux winbind -y"
|
yerc |
Samedi 6 Février 2021 à 21:24 |
yerc
|
Messages
I have encountered an issue installing Microsoft Office Professional Plus 2010.
OS: Linux Mint 20.1 XFCE 64bit
POL 4.3.4
My installation media has both x64 and x86 versions of MS Office.
During the installation, POL showed "Error ! Files mismatch" for msxml6_x86.msi. I continued regardless and ended with 32-bit version of Word and Excel. Both are not able to save files, with Word showing a message that MSXML 6.0 need to be properly installed while Excel says "may be able to save by removing or repairing some features".
I'm here to report this after reading http://wiki.playonlinux.com/index.php/Troubleshooting_Common_Problems#Error.21_Files_mismatch
FWIW, my older laptop is running this same MS Office flawlessly which was installed years ago when it had an older version of Linux Mint XFCE (now updated to version 20.1).
Réponses
Jeudi 11 Février 2021 à 15:23
Got the same here with a fresh install of Ubuntu 20.10
Message is : ""an error happened during download".
Probably the link is broken ?
Vendredi 19 Février 2021 à 16:23
I got the same error when trying to install office 2010 on ubuntu 20.04
---------------------------------------------------------------------
http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi
Error ! Files mismatch
Local : 21701848c9559c48db9bf49ac06ba383
Server : 85a5571258de322458f288b94ee28cfb
Do you want to retry?
----------------------------------------------------------------------
Could you please let us know how can we solve it?
Ps: I had the same office 2010 version installed on ubuntu 16.04 and worked perfectly.
Thanks for your help
Edité par yerc
|
walfin |
Dimanche 16 Aoüt 2020 à 15:31 |
walfin
|
Messages
Outlook is not working. Help! It hangs at loading profile. My email account is hosted on Office365.
Réponses
|
Rambaro |
Vendredi 14 Aoüt 2020 à 15:54 |
Rambaro
|
Messages
hello, it worked perfectly. but i have a doubt there is a way to be able to install all the installer requirements offline, what happens is that i live in venezuela and the internet does not work well, and i can last up to 6 hours installing it. and i am installing it on several pc.
Sorry about the grammar. I'm using a translator.
Réponses
|
eddi71 |
Vendredi 7 Aoüt 2020 à 14:45 |
eddi71
|
Messages
I tried to install MS Office 2010 with Playonlinux on Kubuntu 20.04.1 today.
After choosing the 32-bit installation file, Playonlinux crashed.
This is the last part of the logfile. "Wine scheint abgestürzt zu sein" means "Wine seems to have crashed":
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 08 /07/20 14:25:51 - [ POL_Wine ] Message: Notice: PlayOnLinux deliberately disables winemenubuilder. See http: //www .playonmac.com /fr/page-26-Winemenubuilder .html
/usr/share/playonlinux/lib/wine .lib: Zeile 567: /home/USER/ .PlayOnLinux //wine/linux-x86/3 .0.3 /bin/wine : Datei oder Verzeichnis nicht gefunden
08 /07/20 14:25:51 - [ POL_Wine ] Error: Wine scheint abgestürzt zu sein\n\nWenn Ihr Programm weiter läuft, ignorieren Sie diese Nachricht
08 /07/20 14:27:16 - [ POL_Wine ] Message: Wine return : 127
08 /07/20 14:27:16 - [POL_System_CheckFS] Message: Checking filesystem for /home/USER/Dokumente/Computer/Installationsdateien/Windows/Microsoft_Office_Installationsmedien/Office_HS_2010_TechG_German_08/07/20 14:27:16 - [ POL_Wine ] Message: Running wine-3.0.3 /home/USER/Dokumente/Computer/Installationsdateien/Windows/Microsoft_Office_Installationsmedien/Office_HS_2010_TechG_German_x32 .exe (Workin08 /07/20 14:27:16 - [ POL_Wine ] Message: Notice: PlayOnLinux deliberately disables winemenubuilder. See http: //www .playonmac.com /fr/page-26-Winemenubuilder .html
/usr/share/playonlinux/lib/wine .lib: Zeile 567: /home/USER/ .PlayOnLinux //wine/linux-x86/3 .0.3 /bin/wine : Datei oder Verzeichnis nicht gefunden
08 /07/20 14:27:16 - [ POL_Wine ] Error: Wine scheint abgestürzt zu sein\n\nWenn Ihr Programm weiter läuft, ignorieren Sie diese Nachricht
08 /07/20 14:27:17 - [ POL_Wine ] Message: Wine return : 127
08 /07/20 14:27:19 - [ POL_Call ] Message: Calling POL_Install_dotnet20
08 /07/20 14:27:19 - [ POL_Call ] Message: ----- Starting function POL_Install_dotnet20 -----
08 /07/20 14:27:19 - [POL_GPG_auth_script] Message: Checking signature of POL_Install_dotnet20
08 /07/20 14:27:19 - [POL_GPG_install_key] Message: Importing PlayOnLinux public key
08 /07/20 14:27:19 - [POL_Source] Message: POL GPG : Good signature
08 /07/20 14:27:19 - [ POL_Wine ] Message: Running wine-3.0.3 uninstaller --remove {E45D8920-A758-4088-B6C6-31DBB276992E} (Working directory : /home/USER/ .PlayOnLinux /tmp )
/usr/share/playonlinux/lib/wine .lib: Zeile 567: /home/USER/ .PlayOnLinux //wine/linux-x86/3 .0.3 /bin/wine : Datei oder Verzeichnis nicht gefunden
08 /07/20 14:27:19 - [ POL_Wine ] Error: Wine scheint abgestürzt zu sein\n\nWenn Ihr Programm weiter läuft, ignorieren Sie diese Nachricht
|
"Datei oder Verzeichnis nicht gefunden" means "file or folder not found".
The file
1 | home /USER/ .PlayOnLinux /wine/linux-x86/3 .0.3 /bin/wine
|
exists, but not with TWO slashes before "wine" (and after .Playonlinux) (see above).
Could this be the bug that is preventing installation?
Réponses
Mercredi 12 Aoüt 2020 à 12:36
Okay, so it seems the problem had nothing to do with Playonlinux itself. I had used Kubuntu 18.04 LTS previously, which it seems came with native support for 32-bit architecture. This seems to have stopped with Version 18.10.
In (K)Ubuntu 20.04 LTS (and probably onwards) you need to add 32-bit support and the package "wine32" before you start. I also added "wine32-preloader", because it was suggested.
The easiest way is to run the following command in a terminal:
sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install wine32 wine32-preloader
Once playonlinux and winbind have been installed, installation is easy and fast.
MS Outlook will not be installed, and I received an error message in that respect. All other programs install and work well (MS Word 2010 works perfectly; that is what I use).
Tip: There is no license text for the Microsoft fonts, and the box for acceptance is hidden if the window is as small as possible. Simply enlarge the window (maximize it) and check the box "I accept" or whatever it says, the icon "continue" or "forward" or whatever will then no longer be grey, and it will be clickable (see one of the posts below for more information [Sunday 12 May 2019 at 18:09]).
Mercredi 12 Aoüt 2020 à 12:36
Deleted, was double.
|
Raven_Knight554 |
Vendredi 22 Mai 2020 à 15:05 |
Raven_Knight554
|
Messages
This one works well with Ubuntu 20.04. 
The installation went smooth and quick, less than 30 min. Used 32bit iso image for the same.
Word, Excel and Powerpoint works flawless. 
I've even tried changing the wine version to 'wine 5.7 staging (32bit)' after installation and works without any issue.
Réponses
|
RemyH |
Dimanche 29 Mars 2020 à 15:03 |
RemyH
|
Messages
Wine 3.0.3 (windows 7) didn't work for me on LinuxMint Debian Edition 4.
I imported the script and modified the script to get wine 3.0.2 (windows XP), which worked perfectly.
Réponses
|
Dadu042 |
Lundi 10 Février 2020 à 12:37 |
Dadu042
|
Information
Cette mise à jour a été acceptée par l'équipe
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | @@ -15,15 +15,18 @@
# [rbelo] (2018-07-22 15-50)
# Updating with the latest stable WineHQ version (3.0.2), ver 1.7.52 does not seem to work.
# [Mrjacobarussell] (2018-09-25 20-50)
-# Updating missing dotnet20 , gdiplus, gecko, corefonts, msxml6
+# Updating missing dotnet20, gdiplus, gecko, corefonts, msxml6
# [diogoborges14] (2018-12-01)
# mspatcha
+# [Dadu042] (2020-02-10 12-33)
+# Wine 3.0.2 -> 3.0.3 (more common on POL nowadays).
+# Note: I think that lines POL_Wine_OverrideDLL for riched20 and riched30 are useless.
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="Office2010"
-WINEVERSION="3.0.2"
+WINEVERSION="3.0.3"
TITLE="Microsoft Office 2010"
@@ -84,7 +87,6 @@
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native,builtin" "riched30"
POL_Wine_OverrideDLL "native,builtin" "gdiplus"
-plsy
# Fix a crash when loading a file
@@ -112,4 +114,4 @@
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
+exit 0
\ No newline at end of file
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "3.0.3"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
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 (or samba, on Arch Linux) 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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Call POL_Install_dotnet20
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_gdiplus
POL_Call POL_Install_riched20
POL_Call POL_Install_riched30
POL_Call POL_Install_msxml6
POL_Call POL_Install_mspatcha
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native,builtin" "riched30"
POL_Wine_OverrideDLL "native,builtin" "gdiplus"
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "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 0
|
Réponses
|
Barney66 |
Lundi 10 Février 2020 à 11:42 |
Barney66
|
Messages
Hello,
Last week I installed Office 2010 succesfully on my HP Z book. However the installation on a second laptop keeps failing. I do not get to the stage of installing. I keep getting the message:
Error in main
Please install winbind (or samba, on Arch Linux) before installing Microsoft Office 2010
I cannot install winbind as it is not supported anymore. And, as far as I know I have installed Samba. When I type 'samba --version' in Terminal the response is 'Version 4.7.6-Ubuntu'.
Ubuntu 18.04.3 LTS
PlayOnLinux 4.3.4
HP EliteBook 745-G4
7,3 GiB memory
Processor: AMD® Pro a10-8730b r5, 10 compute cores 4c+6g × 4
Graphics: AMD® Carrizo
Gnome: 3.28.2
Type of OS: 64 bit
Drive: 118,6 GB
PlayOnLinux: /home/job/.PlayOnLinux > wine Call from
wine: cannot find L"C:\\windows\\system32\\winemenubuilder.exe"
000b:err:wineboot:ProcessRunKeys Error running cmd L"C:\\windows\\system32\\winemenubuilder.exe -a -r" (2)
000f:err:service:process_send_command receiving command result timed out
wine: cannot find L"C:\\windows\\system32\\Call.exe"
PlayOnLinux: /home/job/.PlayOnLinux > wine Call from
wine: cannot find L"C:\\windows\\system32\\winemenubuilder.exe"
000b:err:wineboot:ProcessRunKeys Error running cmd L"C:\\windows\\system32\\winemenubuilder.exe -a -r" (2)
000f:err:service:process_send_command receiving command result timed out
wine: cannot find L"C:\\windows\\system32\\Call.exe"
PlayOnLinux: /home/job/.PlayOnLinux > ^C
PlayOnLinux: /home/job/.PlayOnLinux >
Before I managed to install Acrobat Reader and Notepad Plus+ on this installation. Office 2010 keeps failing. What goes wrong?
regards, Job
Réponses
Lundi 10 Février 2020 à 12:32
The first thing to check is winbind, search this word into our Wiki.
Mardi 11 Février 2020 à 9:50
I did, and found this error 'err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.' and this https://www.playonlinux.com/en/topic-13072-Dreaded_ntlm_auth.html. These issues are Mac related and I do not run a Mac. I cannot find any other thread on Winbind. Any other suggestions?
|
Qyn |
Dimanche 19 Janvier 2020 à 1:17 |
Qyn
|
Messages
Hey,
Just wanted to inform that corefonts are not getting installed therefore not letting the installer complete. The installation of corefonts gets stuck on Downloading: andale32.exe... and just sits there. I have tried to cancel the installation at that point, install corefonts with winetricks pointing at the wineprefix (which appeared to work), but still - installer would get stuck at the same point.
Actually, I'm not even sure if it's the scripts' fault, because creating a new bottle through playonlinux and trying to install corefonts on it results in the same problem.
Réponses
|
jomarama |
Samedi 18 Janvier 2020 à 15:26 |
jomarama
|
Messages
Buenas tardes, cuando se abre un documento de MW Word haciendo doble clic sobre él, MS Word se abre perfectamente, pero el uso de la CPU se dispara y se generan muchos procesos de wine. Cuando se cierra MS Word los procesos siguen abiertos y el uso de la CPU en un 100%.
https://subefotos.com/ver/?300ffdd55ae10e3fa3ff190ab798e6e3o.png
https://subefotos.com/ver/?32f1fc5ba7332949440cf8dadf93f45eo.png
Gracias de antemano.
Réponses
Samedi 18 Janvier 2020 à 17:51
English please. What is the Wine version used in POL ?
Dimanche 19 Janvier 2020 à 14:34
sorry, the wine version is 3.0.2 in 32 bits. I use mxlinux 64 bits.
Lundi 20 Janvier 2020 à 19:04
Fixed, having Wine installed on the OS had symbolic links ("Micosoft Word", "Microsoft Excel" or "Microsoft Power Point") that opened many instances of Wine.
I could solve it in two ways:
1.- Uninstall Wine, so the error is no longer reproduced.
2.- In the context menu of any Word, Excel or Power Point files, in properties I choose the option "Microsoft Word 2010", "Microsoft Excel 2010" or "Microsoft Power Point 2010", which is the one associated with Playonlinux
Thank you.
Lundi 20 Janvier 2020 à 21:44
Another solution is to delete the Wine links that do not work in the folder:
/home/user/.local/share/apications/
|
azis91 |
Mardi 14 Janvier 2020 à 10:20 |
azis91
|
|
kodiak333 |
Mercredi 1 Janvier 2020 à 20:12 |
kodiak333
|
Messages
Hello, I want to give feedback that the installation of Office 2010 was not working. Obviously the wine directory is not found due to the double slash in the directory paths (see logfile below). Is there a workaround?
Kind regards, Franz
01/01/20 19:45:00 - [POL_Wine] Message: Running wine-3.0.2 regedit /home/franz/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/franz/.PlayOnLinux/tmp)
/usr/share/playonlinux/lib/wine.lib: Zeile 568: /home/franz/.PlayOnLinux//wine/linux-x86/3.0.2/bin/wine: Datei oder Verzeichnis nicht gefunden
01/01/20 19:45:00 - [POL_Wine] Error: Wine scheint abgestürzt zu sein\n\nWenn Ihr Programm weiter läuft, ignorieren Sie diese Nachricht
01/01/20 19:45:58 - [POL_Wine] Message: Wine return: 127
01/01/20 19:45:58 - [POL_Call] Message: ----- Ending function POL_Install_mspatcha -----
01/01/20 19:45:58 - [POL_Wine_OverrideDLL] Message: Overriding DLLs
01/01/20 19:45:59 - [POL_Wine] Message: Running wine-3.0.2 regedit /home/franz/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/franz/.PlayOnLinux/tmp)
/usr/share/playonlinux/lib/wine.lib: Zeile 568: /home/franz/.PlayOnLinux//wine/linux-x86/3.0.2/bin/wine: Datei oder Verzeichnis nicht gefunden
01/01/20 19:45:59 - [POL_Wine] Error: Wine scheint abgestürzt zu sein\n\nWenn Ihr Programm weiter läuft, ignorieren Sie diese Nachricht
Réponses
|
lefteris1973 |
Dimanche 29 September 2019 à 23:11 |
lefteris1973
|
|
raju5555 |
Dimanche 4 Aoüt 2019 à 8:28 |
raju5555
|
|
eddi71 |
Lundi 29 Juillet 2019 à 18:21 |
eddi71
|
Messages
MS Office 2010 runs well on my Kubuntu 18.04 in general. However, I in the past few years I did not have to fiddle around with "riched20" in Wine configurations after installation.
Today, I installed Office 2010 on a new Laptop with Kubuntu 18.04 from the 32-bit file setup (Office_HS_2010_TechG_German_x32; downloaded August 2018), and it only showed me "Office 2010" in "Configure" (or German: Konfigurieren), not Excel, Word etc. - so the individual applications - after installation. There were also no individual "launchers", i.e. in the main PlayonLinux window it did not show me any individual installed applications (I only use PlayonLinux for MS Office).
Only after I had accessed, for Office 2010, the Tab "Wine" and "Configure Wine" (or German: Wine Konfigurieren), and then added "'riched20' (Native, Builtin)" in the Tab "Libraries"? (German: Bibliotheken) did it work, and I had to run through the installation process again. PlayOnLinux downloaded further software (something to do with .NET???, I think), and then everything was fine.
But you need to know about "riched20" (which I knew from past experience with Wine).
Perhaps this can be fixed?
Réponses
|
PabelPicasso |
Mercredi 17 Juillet 2019 à 19:16 |
PabelPicasso
|
Messages
It's perfect! Also, Access works fine with this, so please add it directly on 
Réponses
|
jwsp1 |
Dimanche 12 Mai 2019 à 18:09 |
jwsp1
|
Messages
I'm stuck at the point where PlayOnLinux wants to install Microsoft fonts. It says "Please read and accept the following:" but there is just a blank space below and nothing to click. Cannot proceed installation.
Any hints how I can workaround this issue? Shall I install a certain Wine version?
Réponses
Dimanche 12 Mai 2019 à 19:33
POL version ? screenshot ?
Dimanche 12 Mai 2019 à 20:36
POL version 4.3.4
Screenshot: https://imgur.com/GtC8O7C
Running ZorinOS 15 (based on Ubuntu 18.04.2).
Jeudi 15 Aoüt 2019 à 22:37
I got exactly the same problem. Later I found although the EULA was blank, I actually could click "Agree" checkbox and proceed. On my computer the "Agree" checkbox was hidden because the installation window was too small to show it by default. Just drag to enlarge the window and you will find the "Agree" checkbox.
|
terryvdj |
Mercredi 17 Avril 2019 à 16:14 |
terryvdj
|
Messages
Hi all,
Office 2010 seems to work really well on my fedora 29 install. I have one problem however. I can't select a Bibliography style (under references, citations & bibliography, style). It says missing. The style-files are present in the correct folder ( ~/.PlayOnLinux/wineprefix/Office2010/drive_c/Program Files/Microsoft Office/Office14/Bibliography/Style). Anyone else that has encountered this problem? Does someone know a solution? I notices someone had the same problem in 2015 but it doesn't have any responses.
Greetings and thanks in advance!
Réponses
|
nosch |
Dimanche 3 Mars 2019 à 17:17 |
nosch
|
Messages
I installed MS Office 2010 (Word, Powerpoint, Excel) on Linux Mint 18.3 Cinnamon 64-bit. The Apps work perfect, only if I try to open any office file with right klick "open with", office does not start and wine crashes with a message it has to refresh something. I think it is because the "open with" funktion uses the comands of the menu entries. They look like this: "/usr/share/playonlinux/playonlinux --run "Microsoft Powerpoint 2010" %F"
If I use this command without the "%F" at the end as a custom "open with" command. Everything works fine. Maybe you could fix that and tell me what is the problem with "%F"?!
Thanks a lot!
Réponses
|
GerryK |
Lundi 18 Février 2019 à 16:54 |
GerryK
|
Messages
Hey everybody,
POL seems to work straight. Anyway, I have a problem with installing MS Office 2010 Pro (32-bit).
First of all: My OS is Linux Mint 19.1 + Cinnamon, PlayOnLinux v4.2.12-1, Wine-stable v3.0-1ubuntu1 and Wine64 v3.0-1ubuntu1 packages are installed, as well as Wine v3.0.2 via POL.
Wine-mono and Wine-gecko packages have been installed casually while I was trying to install Office the first time.
I only have an Office EXE file instead of an Installation CD/DVD, or ISO file, and I think that's the source of evil. Doing the installation with the file itself doesn't work because the setup.exe file is being needed for that. But the extracted files also don't work. At first, during the Installation process, the error message about a non-usable config.xml file appeared, then later on, the core EXE files (Winword, Excel etc.) have not been found by the installer. (Because not in the EXE's main folder?! They're hidden in the archive SIWW.cab, or elsewhere.)
By now, I don't have any ideas left. Maybe someone else does, I would be enthusiastic.
Thanks in advance & Greetings
Réponses
|
roman82101 |
Jeudi 7 Février 2019 à 16:06 |
roman82101
|
Messages
???-?? ?? ???????? ???? ????????? ? ????, ????????? ????? ????? ???????????.
? Wine 3.21 (x86) ? ??????????? winetricks riched30 msxml3 msxml6 corefonts tahoma vb6run vcrun6 ???????? ????????, ??? ??????? ??????? ??????
Réponses
|
rooty |
Mercredi 9 Janvier 2019 à 21:03 |
rooty
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
Hey this script is awesome, but I hope you don't mind I added "samba" to the prompt for checking winbind - the package lib32-libwbclient that substitutes for winbind on Arch has been deprecated. Installing samba makes this script work perfectly.
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @@ -4,7 +4,7 @@
# [Quentin PÂRIS] (2012-05-05 14-45)
# Wine version set to 1.5.3, Outlook 2010 compatiblity
# [Quentin PÂRIS] (2012-05-05 15-05)
-# Check winbind presence on Linux, required to install
+# Check winbind (samba) presence on Linux, required to install
# Adding gettext support
# [Quentin PÂRIS] (2012-05-12 18-36)
# Requires 4.0.18
@@ -36,7 +36,7 @@
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"
+ wbinfo -V || POL_Debug_Fatal "Please install winbind (or samba, on Arch Linux) before installing $TITLE"
fi
POL_Debug_Init
POL_System_SetArch "x86"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "3.0.2"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
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 (or samba, on Arch Linux) 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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Call POL_Install_dotnet20
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_gdiplus
POL_Call POL_Install_riched20
POL_Call POL_Install_riched30
POL_Call POL_Install_msxml6
POL_Call POL_Install_mspatcha
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native,builtin" "riched30"
POL_Wine_OverrideDLL "native,builtin" "gdiplus"
plsy
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
eddi71 |
Lundi 17 Décembre 2018 à 11:19 |
eddi71
|
Messages
I installed the new installer via the script in August 2018 on Kubuntu 18.04. The paket "msttcorefonts" was already installed on the computer. Everything worked/works fine, except I had problems displaying and printing diacriticial characters (e.g. "special" letters in Indian names, etc.) in Word documents that used Times New Roman. They were displayed and printed as little boxes. A quick search on the internet showed me that probably the font Times New Roman was missing.
Solution:
I copied the font files (times.ttf, timesbd.ttf timesbi.ttf and timesi.ttf) and placed them in /home/USERNAME/PlayOnLinux's virtual drives/Office2010/drive_c/windows/Fonts/
(USERNAME is your own username)
Most other common Windows fonts were in there already (Arial, Calibri etc.). Why is Times New Roman missing?
(Perhaps this has been fixed in the meantime).
Réponses
Lundi 17 Décembre 2018 à 11:25
Oh, yes, if you have installed the packet
ttf-mscorefonts-installer
then the fonts are in
/usr/share/fonts/truetype/msttcorefonts/
in Kubuntu 18.04
|
diogoborges14 |
Samedi 1 Décembre 2018 à 15:54 |
diogoborges14
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
I tried with "mspatcha " and solved my errors with the "setup.exe "
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @@ -16,6 +16,8 @@
# Updating with the latest stable WineHQ version (3.0.2), ver 1.7.52 does not seem to work.
# [Mrjacobarussell] (2018-09-25 20-50)
# Updating missing dotnet20 , gdiplus, gecko, corefonts, msxml6
+# [diogoborges14] (2018-12-01)
+# mspatcha
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
@@ -77,6 +79,7 @@
POL_Call POL_Install_riched20
POL_Call POL_Install_riched30
POL_Call POL_Install_msxml6
+POL_Call POL_Install_mspatcha
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native,builtin" "riched30"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "3.0.2"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Call POL_Install_dotnet20
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_gdiplus
POL_Call POL_Install_riched20
POL_Call POL_Install_riched30
POL_Call POL_Install_msxml6
POL_Call POL_Install_mspatcha
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native,builtin" "riched30"
POL_Wine_OverrideDLL "native,builtin" "gdiplus"
plsy
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
maxhofi |
Mercredi 31 Octobre 2018 à 15:28 |
maxhofi
|
Messages
Hello,
I'm using Ubuntu 18.04 and have installed Office 2010 with playonlinux. Under normal conditions it works very well. But when I'm opening a Word-Document on my university cloud/NAS, I'm unable to safe my progress on the original file name due to a "permission error". Therefore I checked the permissions of this file (ls -l):
-rwxr-xr-x 1 max max 13073 Okt 31 15:11 example.docx
At the firstpoint I thought I have to change the group permissions. Unfortunatelly that doesn't worked (not on comand line nor with the gui). But than I tried to open the file with LibreOffice and I could save my progress without any problem. Therfore I thought there might be a special playonlinux user who could not get any permissions? Otherwise there might still be a problem with the mounted NAS...
Would be very nice if someone could help me if it is a playonlinux thing and how I could fix it.
Thenk you very much in advance!
Max
Réponses
|
Jean Majolo |
Samedi 13 Octobre 2018 à 22:48 |
Jean Majolo
|
Messages

translated by google translate
Error message that appeared during normal installation (default). Manual installation of MSXML 6 was performed, but without success.
Réponses
|
mrjacobarussell |
Mercredi 26 September 2018 à 5:52 |
mrjacobarussell
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
I noticed the installers are not including dotnet20 or gdiplus ?
I am new to wine and playonlinux so maybe im missing something. I am currently under the assuption that the new script is working becuase the user had tried the original one that has theses required componets ?
Your most recent script was not working for me. I deleted my bottle and modified the installer on this thread after looking through it. To add the componets I assumed to be missing.
I am new and this is my first attempt to contribute. please be gentle I have used the I want to submit an improvement feature.
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | @@ -1,5 +1,5 @@
#!/bin/bash
-
+
# CHANGELOG
# [Quentin PÂRIS] (2012-05-05 14-45)
# Wine version set to 1.5.3, Outlook 2010 compatiblity
@@ -12,32 +12,36 @@
# gettext
# [Quentin PÂRIS] (2014-07-21 17-09)
# Updating with the latest WineHQ version
+# [rbelo] (2018-07-22 15-50)
+# Updating with the latest stable WineHQ version (3.0.2), ver 1.7.52 does not seem to work.
+# [Mrjacobarussell] (2018-09-25 20-50)
+# Updating missing dotnet20 , gdiplus, gecko, corefonts, msxml6
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-
+
PREFIX="Office2010"
-WINEVERSION="1.7.52"
+WINEVERSION="3.0.2"
TITLE="Microsoft Office 2010"
-
+
-
+
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
-
+
-
+
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"
@@ -47,45 +51,54 @@
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"
-
+
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"
-
+POL_Call POL_Install_dotnet20
+POL_Call POL_Install_gecko
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_gdiplus
+POL_Call POL_Install_riched20
+POL_Call POL_Install_riched30
+POL_Call POL_Install_msxml6
-POL_Wine_OverrideDLL "native,builtin" "riched20"
+POL_Wine_OverrideDLL "native,builtin" "riched20"
+POL_Wine_OverrideDLL "native,builtin" "riched30"
+POL_Wine_OverrideDLL "native,builtin" "gdiplus"
+plsy
# Fix a crash when loading a file
-POL_Call POL_Install_msxml6
+
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;" # No category for collaborative work?
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p
-
+
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
-
+
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
@@ -93,7 +106,7 @@
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "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
\ No newline at end of file
+exit
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "3.0.2"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Call POL_Install_dotnet20
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_gdiplus
POL_Call POL_Install_riched20
POL_Call POL_Install_riched30
POL_Call POL_Install_msxml6
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Wine_OverrideDLL "native,builtin" "riched30"
POL_Wine_OverrideDLL "native,builtin" "gdiplus"
plsy
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
LarsKirk |
Lundi 24 September 2018 à 9:27 |
LarsKirk
|
Messages
I am running Ubuntu16.04 and trying to install Microsoft Office Home & Student 2010.
PlayOnLinux returns the following error:
"Error in main Please install winbind before installing Microsoft Office 2010"
however, according to Synaptic Package Manager, winbind is already installed.
So, I would like to use the installer on this site. However, I cannot make the script run and do not know how to proceed. I am not a programer, and am relatively new to Linux.
Réponses
Mercredi 26 September 2018 à 10:49
I solved this by following details in an article on GitHub called "Install Microsoft Office 2010 on Ubuntu"
Mercredi 26 September 2018 à 10:54
Specifically, although Synaptic Package Manager told me that winbind is already installed, I reinstalled it, along with samba. Also installed Wine 2.13. Don't know which of these helped, but it is now running. BTW, advantages of 2010 over 2007 include that imported documents no longer mysteriously lose spaces as they did in Word 2007 (bad news for a proofreader), no problems printing (as there were initially, but not finally with Office 2007), and I can now access my USB drives through Office 2010, which I couldn't on 2007 via Wine.
Mercredi 26 September 2018 à 10:55
sudo apt-get install playonlinux samba winbind
Mercredi 26 September 2018 à 10:56
From the GitHub article: In the POL window menu, go to Tools > Manage Wine versions and install Wine 2.13. Versions below it will crash after click on a document hyperlink. Versions above it will not properly handle the launcher icon (due missing WM_CLASS when window is maximized).
|
rbelo |
Dimanche 22 Juillet 2018 à 16:48 |
rbelo
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | @@ -12,12 +12,14 @@
# gettext
# [Quentin PÂRIS] (2014-07-21 17-09)
# Updating with the latest WineHQ version
+# [rbelo] (2018-07-22 15-50)
+# Updating with the latest stable WineHQ version (3.0.2), ver 1.7.52 does not seem to work.
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="Office2010"
-WINEVERSION="1.7.52"
+WINEVERSION="3.0.2"
TITLE="Microsoft Office 2010"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "3.0.2"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
tanisc |
Mardi 26 Juin 2018 à 17:40 |
tanisc
|
Messages
In Ubuntu 18, the current script gets stuck in Office setup screen. I have fixed it by setting wine version to system version (3.0) then running setup.exe. But of course, in the end, it does not create links.
I am not sure how to improve the script but just reporting this so you can fix it :) So it is just the wine version.
Cheers
Réponses
Lundi 2 Juillet 2018 à 15:11
I confirm that this indeed works
|
tizzir |
Jeudi 8 Février 2018 à 18:54 |
tizzir
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | @@ -1,6 +1,8 @@
#!/bin/bash
-
+
# CHANGELOG
+# [Matt Spelchak]
+# Wine version set to 3.0 to prevent OneNote Copy/paste crash
# [Quentin PÂRIS] (2012-05-05 14-45)
# Wine version set to 1.5.3, Outlook 2010 compatiblity
# [Quentin PÂRIS] (2012-05-05 15-05)
@@ -12,32 +14,32 @@
# gettext
# [Quentin PÂRIS] (2014-07-21 17-09)
# Updating with the latest WineHQ version
-
+
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-
+
PREFIX="Office2010"
-WINEVERSION="1.7.52"
+WINEVERSION="3.0"
TITLE="Microsoft Office 2010"
-
+
-
+
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
-
+
-
+
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"
@@ -47,45 +49,46 @@
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 "winxp" "sp3"
+
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"
-
+
-POL_Wine_OverrideDLL "native,builtin" "riched20"
-
+POL_Wine_OverrideDLL "native,builtin" "riched20"
+
# Fix a crash when loading a file
POL_Call POL_Install_msxml6
-
+
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;" # No category for collaborative work?
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p
-
+
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
-
+
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
@@ -93,7 +96,7 @@
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "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
\ No newline at end of file
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "3.0"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
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 "winxp" "sp3"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
Jeudi 8 Février 2018 à 18:56
This modification was made to stop OneNote from crashing immediately after pasting something out of the application. No other Office 2010 applications have been tested with this script.
Vendredi 16 Mars 2018 à 7:34
Office2010 Professional install Successed.
|
snipe1080 |
Jeudi 7 Décembre 2017 à 9:29 |
snipe1080
|
Messages
I like the idea of this program, but it will not install office 2010, I keep getting an error from wine about installation language not supported how do I fix this?
Réponses
Samedi 17 Mars 2018 à 12:01
how to install office 10 on ubuntu16.04
|
vasco |
Mercredi 29 Novembre 2017 à 15:36 |
vasco
|
Messages
To get the microsoft office 2010 installer working on ubuntu 17.10 I had to execute the following commands (explanation below):
sudo apt-get install winbind
rm ~/.PlayOnLinux/wine/linux*/*/lib*/libz*
First of all, the program winbind is needed.
Second, there is a problem with the freetype fonts and libz. By removing the libz library files shipped by playonlinux the installer runs.
References:
- https://forums.fedoraforum.org/showthread.php?t=314770
- https://www.playonlinux.com/en/issue-5562.html
When you want to use an *.iso file to install from, first mount it, and point the installer to the setup.exe file.
Furthermore it is good to know that you cannot u
Réponses
Jeudi 7 Décembre 2017 à 9:28
any idea on how to make this work in 16.04? I keep getting an installation language not supported. I downloaded a rar file from microsoft, so i dont have an ISO to mount. I need help here
Vendredi 8 Décembre 2017 à 14:45
What language do you have set in the terminal? For me it works with en_US.UTF-8 . Try running:
Vendredi 8 Décembre 2017 à 14:45
$ LANG=en_US.UTF-8 playonlinux
Samedi 17 Mars 2018 à 11:59
i used ubuntu16.04.how to install microsoft office 10.and which wine package is best for ubunto16.04
|
Linux.Richard |
Mardi 7 Novembre 2017 à 12:02 |
Linux.Richard
|
Messages
I discovered that the 32bit version of Office 2010 installs fine, but the 64 bit version doe not, even after installing winbind. I am running Ubuntu 17.04 64 bit, using POL 4.2.12, and Wine 1.7.52
Réponses
|
wilman |
Dimanche 29 Octobre 2017 à 6:16 |
wilman
|
Messages
Hola buenas a todos.. tenjo una dificultad con la instalacion de office 2010 en centos 7.. alguien me puede ayudar porfavor
Réponses
|
artetic |
Mercredi 25 Octobre 2017 à 19:58 |
artetic
|
Messages
Hi
Since I upgraded from xUbuntu 17.04 to 17.10, MSO Office 2010 is not working anymore :(
I uninstalled both MSO and Playonlinux to reinstall. I can reinstall Playonlinux, no pb, but when I want to install MSO 2010 tu usual way, I can't.
Any idea about how I could fix it?
Kindly,
Here is the debug file:
PlayOnLinux debugging tool (v4.2.12)
-----------------------------------------------
Debugging: Microsoft Office 2010
Warning: This is a PlayOnLinux script logfile. It does not contain everything that happened in your program\'s virtual drive (wineprefix)
Please do not use this logfile on winehq forum, this logfile is not interesting for wine debugging.
Date: 10/25/17 19:45:41
> uname -a
Linux samsung 4.13.0-16-generic #19-Ubuntu SMP Wed Oct 11 18:35:14 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
> lsb_release -a
> wine --version (Be careful; this version might not be the version used
in the script. Read the content of this file for more information)
wine-2.0.2 (Ubuntu 2.0.2-2ubuntu1)
> glxinfo \| grep rendering
direct rendering: Yes
> glxinfo \| grep renderer
GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer,
GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer,
Extended renderer info (GLX_MESA_query_renderer):
OpenGL renderer string: Mesa DRI Intel(R) Ivybridge Mobile
> OpenGL libs
check_dd_x86 missing, test skipped
check_dd_amd64 missing, test skipped
> export
declare -x AMD64_COMPATIBLE="True"
declare -x APPLICATION_TITLE="PlayOnLinux"
declare -x CLUTTER_BACKEND="x11"
declare -x DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/1000/bus"
declare -x DEBIAN_PACKAGE="TRUE"
declare -x DEFAULTS_PATH="/usr/share/gconf/xubuntu.default.path"
declare -x DESKTOP="/home/vlemquov/Bureau"
declare -x DESKTOP_SESSION="xubuntu"
declare -x DISPLAY=":0.0"
declare -x DONT_MONITOR="1"
declare -x DYLDPATH_ORIGIN=""
declare -x DYLD_LIBRARY_PATH=""
declare -x GDMSESSION="xubuntu"
declare -x GDM_LANG="fr_FR"
declare -x GECKO_SITE="http://wine.playonlinux.com/gecko"
declare -x GLADE_CATALOG_PATH=":"
declare -x GLADE_MODULE_PATH=":"
declare -x GLADE_PIXMAP_PATH=":"
declare -x GNUPGHOME="/home/vlemquov/.PlayOnLinux//gpg"
declare -x GTK2_MODULES="overlay-scrollbar"
declare -x GTK_MODULES="gail:atk-bridge"
declare -x GTK_OVERLAY_SCROLLING="0"
declare -x G_FILENAME_ENCODING="UTF-8"
declare -x HOME="/home/vlemquov"
declare -x IGNORE_ICON_DIR="false"
declare -x LANG="fr_FR.UTF-8"
declare -x LANGUAGE="fr_FR"
declare -x LD_32_PATH_ORIGIN=""
declare -x LD_LIBRARY_PATH=""
declare -x LD_PATH_ORIGIN=""
declare -x LOGNAME="vlemquov"
declare -x MACHTYPE="x86_64-pc-linux-gnu"
declare -x MANDATORY_PATH="/usr/share/gconf/xubuntu.mandatory.path"
declare -x MD5_COMMAND="md5sum"
declare -x MONO_SITE="http://wine.playonlinux.com/mono"
declare -x OLDPWD="/home/vlemquov/.PlayOnLinux/configurations/setups/Microsoft Office 2010"
declare -x OS_NAME="linux"
declare -x OpenGL32="1"
declare -x OpenGL64="1"
declare -x PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/wine"
declare -x PATH_ORIGIN="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/wine"
declare -x PLAYONLINUX="/usr/share/playonlinux"
declare -x POL_ARCH="x86"
declare -x POL_COOKIE="YXA6xKP6kKnO0H4Jtt30"
declare -x POL_CURL="curl"
declare -x POL_DNS="playonlinux.com"
declare -x POL_HOST="127.0.0.1"
declare -x POL_ID="31886066"
declare -x POL_LANG="fr"
declare -x POL_OS="Linux"
declare -x POL_PORT="30000"
declare -x POL_PYTHON="python"
declare -x POL_SetupWindow_ID="8482"
declare -x POL_TERM="x-terminal-emulator"
declare -x POL_UPTODATE="TRUE"
declare -x POL_USER_ARCH="x86"
declare -x POL_USER_ROOT="/home/vlemquov/.PlayOnLinux/"
declare -x POL_WGET="env LD_LIBRARY_PATH=\"\" wget --prefer-family=IPv4 -q"
declare -x PWD="/usr/share/playonlinux/python"
declare -x QT_ACCESSIBILITY="1"
declare -x QT_QPA_PLATFORMTHEME="gtk2"
declare -x REPERTOIRE="/home/vlemquov/.PlayOnLinux/"
declare -x SCRIPTID="Microsoft Office 2010"
declare -x SED="sed"
declare -x SESSION_MANAGER="local/samsung:@/tmp/.ICE-unix/1645,unix/samsung:/tmp/.ICE-unix/1645"
declare -x SETUPWINDOW_INIT="true"
declare -x SHELL="/bin/bash"
declare -x SHLVL="3"
declare -x SITE="http://repository.playonlinux.com"
declare -x SSH_AGENT_PID="1627"
declare -x SSH_AUTH_SOCK="/run/user/1000/keyring/ssh"
declare -x TEXTDOMAIN="pol"
declare -x TITLE="Microsoft Office 2010"
declare -x TITRE="PlayOnLinux"
declare -x UBUNTU_MENUPROXY="0"
declare -x USER="vlemquov"
declare -x VERSION="4.2.12"
declare -x WGETRC="/home/vlemquov/.PlayOnLinux//configurations/wgetrc"
declare -x WINEDLLOVERRIDES="winemenubuilder.exe=d"
declare -x WINEPREFIX="/home/vlemquov/.PlayOnLinux//wineprefix/default"
declare -x WINE_SITE="http://wine.playonlinux.com/binaries"
declare -x WorkingDirectory="/home/vlemquov"
declare -x XAUTHORITY="/home/vlemquov/.Xauthority"
declare -x XDG_CONFIG_DIRS="/etc/xdg/xdg-xubuntu:/etc/xdg/xdg-xubuntu:/etc/xdg:/etc/xdg"
declare -x XDG_CURRENT_DESKTOP="XFCE"
declare -x XDG_DATA_DIRS="/usr/share/xubuntu:/usr/share/xfce4:/usr/share/xubuntu:/usr/local/share:/usr/share:/var/lib/snapd/desktop:/var/lib/snapd/desktop:/usr/share"
declare -x XDG_GREETER_DATA_DIR="/var/lib/lightdm-data/vlemquov"
declare -x XDG_MENU_PREFIX="xfce-"
declare -x XDG_RUNTIME_DIR="/run/user/1000"
declare -x XDG_SEAT="seat0"
declare -x XDG_SEAT_PATH="/org/freedesktop/DisplayManager/Seat0"
declare -x XDG_SESSION_DESKTOP="xubuntu"
declare -x XDG_SESSION_ID="c2"
declare -x XDG_SESSION_PATH="/org/freedesktop/DisplayManager/Session0"
declare -x XDG_SESSION_TYPE="x11"
declare -x XDG_VTNR="7"
10/25/17 19:45:42 - [POL_System_SetArch] Message: POL_ARCH set to x86
10/25/17 19:45:44 - [POL_SetupWindow_icon_menu] Message: icon_menu answer: Choisir un fichier d'installation sur mon ordinateur
10/25/17 19:45:44 - [POL_SetupWindow_InstallMethod] Message: Install method: LOCAL
10/25/17 19:45:52 - [POL_SetupWindow_browse] Message: browser answer: /home/vlemquov/Travail/MicrosoftInstaller.exe
10/25/17 19:45:52 - [POL_Wine_SelectPrefix] Message: Selecting prefix: Office2010
10/25/17 19:45:52 - [POL_Wine_PrefixCreate] Message: Setting POL_WINEVERSION to 1.7.52
10/25/17 19:45:52 - [POL_Wine_PrefixCreate] Message: Creating prefix (1.7.52)...
10/25/17 19:45:52 - [POL_Wine_PrefixCreate] Message: Using wine 1.7.52
10/25/17 19:45:52 - [POL_Wine_InstallVersion] Message: Installing wine version path: 1.7.52, x86
10/25/17 19:45:52 - [POL_Config_PrefixWrite] Message: Prefix config write: ARCH x86
10/25/17 19:45:52 - [POL_Config_PrefixWrite] Message: Prefix config write: VERSION 1.7.52
10/25/17 19:45:53 - [POL_Wine] Message: Running wine-1.7.52 --version (Working directory : /usr/share/playonlinux/python)
10/25/17 19:45:53 - [POL_Wine] Message: Notice: PlayOnLinux deliberately disables winemenubuilder. See http://www.playonmac.com/fr/page-26-Winemenubuilder.html
wine-1.7.52
10/25/17 19:45:53 - [POL_Wine] Message: Wine return: 0
10/25/17 19:46:12 - [POL_LoadVar_PROGRAMFILES] Message: Getting Program Files name
10/25/17 19:46:12 - [POL_Wine] Message: Running wine-1.7.52 cmd /c echo %ProgramFiles% (Working directory : /usr/share/playonlinux/python)
10/25/17 19:46:12 - [POL_Wine] Message: Notice: PlayOnLinux deliberately disables winemenubuilder. See http://www.playonmac.com/fr/page-26-Winemenubuilder.html
Wine cannot find the FreeType font library. To enable Wine to
use TrueType fonts please install a version of FreeType greater than
or equal to 2.0.5.
http://www.freetype.org
Wine cannot find the FreeType font library. To enable Wine to
use TrueType fonts please install a version of FreeType greater than
or equal to 2.0.5.
http://www.freetype.org
C:\Program Files
10/25/17 19:46:13 - [POL_Wine] Message: Wine return: 0
10/25/17 19:46:16 - [POL_System_CheckFS] Message: Checking filesystem for /home/vlemquov/Travail/MicrosoftInstaller.exe
10/25/17 19:46:16 - [POL_Wine] Message: Running wine-1.7.52 /home/vlemquov/Travail/MicrosoftInstaller.exe (Working directory : /usr/share/playonlinux/python)
10/25/17 19:46:16 - [POL_Wine] Message: Notice: PlayOnLinux deliberately disables winemenubuilder. See http://www.playonmac.com/fr/page-26-Winemenubuilder.html
Wine cannot find the FreeType font library. To enable Wine to
use TrueType fonts please install a version of FreeType greater than
or equal to 2.0.5.
http://www.freetype.org
Wine cannot find the FreeType font library. To enable Wine to
use TrueType fonts please install a version of FreeType greater than
or equal to 2.0.5.
http://www.freetype.org
Wine cannot find the FreeType font library. To enable Wine to
use TrueType fonts please install a version of FreeType greater than
or equal to 2.0.5.
http://www.freetype.org
fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046}
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type
Wine cannot find the FreeType font library. To enable Wine to
use TrueType fonts please install a version of FreeType greater than
or equal to 2.0.5.
http://www.freetype.org
fixme:advapi:RegisterTraceGuidsA (0x2e034e56, 0x2e0b3d78, {8736922d-e8b2-47eb-8564-23e77e728cf3}, 1, 0x33fd08, (null), (null), 0x2e0b3d78): stub
fixme:process:GetSystemDEPPolicy stub
fixme:process:SetProcessDEPPolicy (1): stub
fixme:advapi:RegisterTraceGuidsA (0x101f59cc, 0x103a5908, {8736922d-e8b2-47eb-8564-23e77e728cf3}, 1, 0x33ee24, (null), (null), 0x103a5908): stub
fixme:system:SetProcessDPIAware stub!
fixme:htmlhelp:HtmlHelpW HH case HH_INITIALIZE not handled.
fixme:richedit:REExtendedRegisterClass semi stub
fixme:richedit:ME_HandleMessage EM_SETEDITSTYLE: stub
fixme:richedit:ME_HandleMessage EM_SETBIDIOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETEDITSTYLE: stub
fixme:richedit:ME_HandleMessage EM_SETBIDIOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETEDITSTYLE: stub
fixme:richedit:ME_HandleMessage EM_SETBIDIOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETEDITSTYLE: stub
fixme:richedit:ME_HandleMessage EM_SETBIDIOPTIONS: stub
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:msxml:dom_pi_get_attributes created dummy map for <?xml ?>
fixme:richedit:ME_HandleMessage EM_SETEDITSTYLE: stub
fixme:richedit:ME_HandleMessage EM_SETBIDIOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETEDITSTYLE: stub
fixme:richedit:ME_HandleMessage EM_SETBIDIOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETEDITSTYLE: stub
fixme:richedit:ME_HandleMessage EM_SETBIDIOPTIONS: stub
fixme:richedit:ME_HandleMessage EM_SETEDITSTYLE: stub
fixme:richedit:ME_HandleMessage EM_SETBIDIOPTIONS: stub
Réponses
Mercredi 29 Novembre 2017 à 15:39
It look likes you have the same issue with freetype fonts as i had. Does the solution I proposed on this page https://www.playonlinux.com/en/app-801.html works?
|
wallythander |
Mercredi 18 Octobre 2017 à 2:59 |
wallythander
|
Messages
I don't think this has been posted as an issue recently enough for the problem or solutions to be the same as what I have read before. I have installed Word 2010, but it will not activate. I get an error message "A Communication Error has Occured. Please verify that you have connectivity to the internet and try again. (0x80072F0D). Wine 2.0.2.
[10/17/17 19:42:18] - Running wine-2.0.2 wineconsole cmd (Working directory : /usr/share/playonlinux/python)
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33d08c,(nil),(nil),(nil),0x33d09c,0x33d098),stub!
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: cannot open shared object file: No such file or directoryfixme:iphlpapi:NotifyIpInterfaceChange (family 0, callback 0x6a0cb608, context 0x604958, init_notify 0, handle 0x116e7b4): stub
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x33faec,(nil),(nil),(nil),0x33fafc,0x33faf8),stub!
wine: configuration in '/home/wallythander/.PlayOnLinux//wineprefix/Office2010' has been updated.
[10/17/17 19:42:34] - Running wine-2.0.2 WINWORD.EXE (Working directory : /home/wallythander/.PlayOnLinux/wineprefix/Office2010/drive_c/Program Files/Microsoft Office/Office14)
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: /usr/lib/i386-linux-gnu/pkcs11/p11-kit-trust.so: cannot open shared object file: No such file or directory
p11-kit: couldn't load module: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: /usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: cannot open shared object file: No such file or directory[10/17/17 19:58:23] - Running wine-2.0.2 WINWORD.EXE (Working directory : /home/wallythander/.PlayOnLinux/wineprefix/Office2010/drive_c/Program Files/Microsoft Office/Office14)
fixme:heap:RtlSetHeapInformation 0x110000 1 (nil) 0 stub
fixme:heap:RtlSetHeapInformation 0x110000 1 (nil) 0 stub
fixme:heap:RtlSetHeapInformation 0x110000 1 (nil) 0 stub
fixme:heap:RtlSetHeapInformation 0x110000 1 (nil) 0 stub
fixme:ntdll:NtConnectPort (0x5b0c1170,L"\\ThemeApiPort",0x32d3fc,(nil),(nil),(nil),0x32d40c,0x32d408),stub!
fixme:heap:RtlSetHeapInformation 0x110000 1 (nil) 0 stub
fixme:ntdll:EtwRegisterTraceGuidsA (0x39b102ea, 0x3a031080, {8736922d-e8b2-47eb-8564-23e77e728cf3}, 1, 0x32d5cc, (null), (null), 0x3a031080): stub
fixme:ntdll:EtwRegisterTraceGuidsW (0x39b102ea, 0x3a044450, {a019725f-cff1-47e8-8c9e-8fe2635b6388}, 1, 0x32d540, (null), (null), 0x3a044450): stub
fixme:ntdll:EtwRegisterTraceGuidsW register trace class {a019725f-cff1-47e8-8c9e-8fe2635b6388}
fixme:ntdll:EtwRegisterTraceGuidsA (0x3256f5c0, 0x3264a088, {8736922d-e8b2-47eb-8564-23e77e728cf3}, 1, 0x32db7c, (null), (null), 0x3264a088): stub
fixme:process:SetProcessDEPPolicy (1): stub
fixme:advapi:UnregisterTraceGuids deadbeef: stub
fixme:advapi:UnregisterTraceGuids 0: stub
fixme:msvcrt:__clean_type_info_names_internal (0x3a043910) stub
fixme:msvcrt:__clean_type_info_names_internal (0x326c69b4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x42dbb5c8) stub
fixme:msvcrt:__clean_type_info_names_internal (0x43922af4) stub
Réponses
Mardi 24 Octobre 2017 à 11:08
Hi! Are you find the answer? I have the same issue. I clone'de my ubuntu with working perfectly and activated microsoft office
Mardi 24 Octobre 2017 à 11:13
and try to install from scratch all system, and have same issue. Then l load iso of my ubuntu with working microsoft office, and reinstall microsoft office in this environment and received the same error 0x80072F0D
|
citral |
Dimanche 1 Octobre 2017 à 10:58 |
citral
|
Messages
Most of the suite works very well.
When using OneNote, however, you find that you cannot copy-paste without crashing OneNote.
This is described in these bugs:
- https://bugs.winehq.org/show_bug.cgi?id=31533
- https://bugs.winehq.org/show_bug.cgi?id=7372
Solution: use wine 2.x. When I use the wineprefix that was installed by PoL with a 2.x version of wine, the copy-paste bug has been fixed.
Réponses
|
juliocesar695 |
Vendredi 2 Juin 2017 à 15:42 |
juliocesar695
|
Messages
I've installed office2010, but the icons of this program aren't the tipical of Microsoft instead are icons of playonlinux, and I don't know how to change them.
Could someone help me with it, please?
My installed OS is Lubuntu 32bits
Thanks.
Réponses
|
garsan |
Jeudi 4 Mai 2017 à 20:30 |
garsan
|
Messages
Hello,
I just installed POL 4.2.10 on RHEL 6.9 and installed Office 2010 with no problems, work fine!
I just have a problem, the bottle can't access to Internet, when I try to connect with Outlook or save a document with Word / Excel to our sharepoint the application can't connect.
I missed something?
Thanks.
Réponses
|
falcogr |
Mardi 14 Mars 2017 à 13:08 |
falcogr
|
Messages
Hello!
I want to congratulate you for this extension in PlayOnLinux platform. I want to ask something that involves also my job. Can you make it possible to get Access on this installation cause my work is focused on databases and I'm facing a lot of troubles with LibreOffice and OpenOffice databases. I'm sure that you have make some test and a lot of code line but I really want it.
Thank you and keep making linux users happy.
Réponses
|
amas |
Vendredi 24 Février 2017 à 11:48 |
amas
|
Messages
Quickly tested:
-Smartart
-Insert screenshot
-Table
-Formula
-Diagram (with Excel data)
-Save document
-Load same document
-PDF export with formulas !
all working very good.
Réponses
Vendredi 24 Février 2017 à 11:53
PS: I used wine 1.7.52 pre-config inside Playonlinux 4.2.10 for Office 2010, then switched to wine 2.1 after install (cf. WineHQ).
|
falcogr |
Jeudi 9 Février 2017 à 13:56 |
falcogr
|
Messages
Error in main
Please install winbind before installing Microsoft Office 2010
Hello there, im using linux mint 18.1.
Im newbie in linux distro and i try to install this and get that error. What should i do to install it ?
Réponses
Mardi 14 Mars 2017 à 14:52
I have the same problem as you have, I'm also a newbie with Ubuntu 16.04 and when I want to install it, I'll get the same error as you get.
Dimanche 23 Avril 2017 à 7:39
sudo apt install winbind
|
yinflying |
Mardi 27 Décembre 2016 à 6:22 |
yinflying
|
Messages
This version 1.7 seems exist a bug that could lead to no math formula in PDF when export .
But I update the wine version to wine 1.9 or 2.0rc?it works well ....
maybe the script should update the wine version?
System: ubuntu 14.04x64
Réponses
|
yinflying |
Mardi 27 Décembre 2016 à 6:21 |
yinflying
|
Messages
This version 1.7 seems exist a bug that could lead to no math formula in PDF when export .
But I update the wine version to wine 1.9 or 2.0rc?it works well ....
maybe the script should update the wine version?
System: ubuntu 14.04x64
Réponses
|
yinflying |
Samedi 17 Décembre 2016 à 13:00 |
yinflying
|
Messages
My computer system : ubuntu 14.04 LTS
Actually, it works well at the beginning , but the second day, I found that I could not open and save any file?It will give the error the message that :
"can not open the file "Normal.dotm, because of wrong content!"
And then there are a list of error message occur!
Here are the fix:
Add libraries in wine, and change attributes the "msxml6" to "native(windows)" . ?Maybe you should install msxml6 first)
Réponses
|
caner |
Vendredi 9 Décembre 2016 à 16:19 |
caner
|
Messages
Hello everybody,
I have installed with success Microsoft Office 2010 Pro Plus 32-bit on Ubuntu 16.10. I wanted to create a new account! Under Account Formation is: The upgrade is running. Your mailbox is currently being optimized as part of the upgrade to Outlook 2010 .........
And: Update Outlook Connector .....
Ask for help!
greeting
Caner
Réponses
|
kozlone |
Samedi 15 Octobre 2016 à 7:53 |
kozlone
|
Messages
I am able to launch all Office programs but I have a problem with Outlook.
I am trying to add Exchange account but Outlook gives me an error.

I've googled a lot and didn't find a solution.
I am using Ubuntu 16.04 x64.
Réponses
|
mahrr |
Vendredi 9 September 2016 à 8:59 |
mahrr
|
Messages
Hi, I've installed Office 2010 with playonlinux and it works great except a few things.
I'm using OneNote in which you can normally attach a file to a note or "print it" directly in it. When I try to attach a file, nothing happens, and I don't know why. When I try to print a PDF file in the note, it says that I have to install a program that can read PDF, but how can I do that in the same virtual drive as Office ? And when I try to print a DOC, DOCX or ODT file, it asks me to install Microsoft XPS Essentials, and I can only download a .msu file I can't find a way to install.
Thanks for your hep !
Réponses
|
iZEvg |
Lundi 30 Mai 2016 à 11:58 |
iZEvg
|
Messages
Visio 2010 Premium works awesome too. Add it to installer.

Réponses
|
iBurger |
Samedi 21 Mai 2016 à 21:00 |
iBurger
|
Messages
Dear Quentin,
Thanks for making this excellent installer. I'm impressed!
Minor annoyance/issue:
- the option/alt key does not work in Excel 2010.
Im a huge Excel user, and miss the alt key alot. When I make a quickfilter with CTRL+SHFT+L, I use the ALT/OPTION key to select items.
Do you perhaps know how to fix this?
iBurger
Réponses
Samedi 21 Mai 2016 à 21:01
ps. alt + down, allows you to enter the menu in the quick filter. It is a very powerful shortcut, when managing data.
Vendredi 8 Juillet 2016 à 11:05
what's ps.
|
pepzyawming |
Samedi 27 Février 2016 à 3:50 |
pepzyawming
|
Messages
how to install ? :( I don't know how. Please give me the installer for microsoft office 2010. Thanks
Réponses
Samedi 27 Février 2016 à 3:56
my wine always says set up error. network connection stuffs but my internet connection is working properly. plss reply asap. thanks :)
|
malcolmt |
Vendredi 15 Janvier 2016 à 20:32 |
malcolmt
|
Messages
Hi,
I installed Office 2010 in oct/nov and it worked flawlessly on POL 4.2.09 ubuntu 15.04. I messed up the virtual drive so needed to reinstall.
Now getting error message "a newer version of windows is needed". I tried to install using older script from 13 oct 2015, same error message. Updated to POL4.2.10 same result.
Any suggestions please.
Réponses
Samedi 16 Janvier 2016 à 12:48
Hi Guys,
Samedi 16 Janvier 2016 à 12:49
Dont waste your time on this, I used the wrong installation disc stupid me. It had now installed ok. Thanks for great software
Samedi 27 Février 2016 à 3:52
pls help me :(
Samedi 27 Février 2016 à 3:53
my wine always says setup error
Samedi 27 Février 2016 à 3:53
Error in POL_Wine
Wine seems to have crashed
pls reply asap. I really need your help. Thanks
|
petch |
Vendredi 4 Décembre 2015 à 23:49 |
petch
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
Add POL_SetupWindow_SetID
Differences
1 2 3 4 5 6 7 8 | @@ -23,6 +23,7 @@
POL_SetupWindow_Init
+POL_SetupWindow_SetID 801
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.52"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
POL_SetupWindow_SetID 801
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
ldcn |
Vendredi 4 Décembre 2015 à 12:17 |
ldcn
|
Messages
Thank you for your great job.
I have succesfully installed Office with your script.
However, I notice an issue with dual screen. I use a laptop and an external screen with different resolution. When I maximize the window in the external screen, the window don't use the full screen (I have an empty band on the top). In the same way, I can't use the slideshow with both screens and I can't configure the slideshow.
I don't know if there is some tips for solving this, in particular for powerpoint slide shows.
Réponses
|
petch |
Mardi 13 Octobre 2015 à 14:05 |
petch
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
Update Wine version to fix activation? (#5159)
Differences
1 2 3 4 5 6 7 8 9 | @@ -17,7 +17,7 @@
source "$PLAYONLINUX/lib/sources"
PREFIX="Office2010"
-WINEVERSION="1.7.22"
+WINEVERSION="1.7.52"
TITLE="Microsoft Office 2010"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.52"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
Mardi 4 Février 2020 à 6:54
hi iwan to ms office exe file for linux
|
FuzzyToothpaste |
Mardi 8 September 2015 à 0:59 |
FuzzyToothpaste
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | @@ -61,7 +61,7 @@
[ "$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 64-bit version is not compatible! Sorry.")";
fi
POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"
@@ -74,7 +74,7 @@
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
-POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
+POL_Shortcut "POWERPNT.EXE" "Microsoft PowerPoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;" # No category for collaborative work?
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p
@@ -82,17 +82,17 @@
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
-POL_Extension_Write ppt "Microsoft Powerpoint 2010"
-POL_Extension_Write pptx "Microsoft Powerpoint 2010"
+POL_Extension_Write ppt "Microsoft PowerPoint 2010"
+POL_Extension_Write pptx "Microsoft PowerPoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
- POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
+ POL_Shortcut_InsertBeforeWine "Microsoft PowerPoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "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\nIf any installation windows prevent your programs from running, you must remove and reinstall $TITLE.')" "$TITLE"
POL_SetupWindow_Close
exit
\ No newline at end of file
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.22"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
if [ "$POL_OS" = "Mac" ]; then
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 64-bit version is not compatible! Sorry. ")" ;
fi
POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft PowerPoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft PowerPoint 2010"
POL_Extension_Write pptx "Microsoft PowerPoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft PowerPoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf any installation windows prevent your programs from running, you must remove and reinstall $TITLE.')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
metsapeikko |
Samedi 5 September 2015 à 14:16 |
metsapeikko
|
Messages
The Word 2010 bibliography tool doesn't work. I have a document with several citations created in Windows. Using Word 2010 with POL shows there are no sources available. They should show up on the document side in the bibliography tool.
Copying the master source list "sources.xml" into the correspondent directory in the POL virtual drive (in my case it's Office2010/drive_c/users/ps/Application Data/Microsoft/Bibliography) doesn't change anything - the sources are not shown in the tool's master list side.
I tested by creating a new source: When saving, I get an error message saying that the source list is write protected, the word crashes. What can I do to help improving this bug?
PlayOnLinux 4.2.8 on Ubuntu 14.04 LTS
Réponses
Edité par metsapeikko
|
ash1991 |
Samedi 2 Mai 2015 à 11:35 |
ash1991
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | @@ -12,6 +12,8 @@
# gettext
# [Quentin PÂRIS] (2014-07-21 17-09)
# Updating with the latest WineHQ version
+# [ash1991] (2015-05-02 09-34)
+# fix MS Publisher
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
@@ -72,11 +74,17 @@
# Fix a crash when loading a file
POL_Call POL_Install_msxml6
+# Fix MS Publisher
+POL_Download_Resource "$SITE/divers/ie7-dlls.tar.bz2" "b71a3213452c9a3a1aa08767d52e7577"
+tar -xvf ie7-dlls.tar.bz2
+mv "msctf.dll" "$WINEPREFIX/drive_c/windows/system32"
+
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;" # No category for collaborative work?
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p
+POL_Shortcut "MSPUB.EXE" "Microsoft Publisher 2010" "" "" ""
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
@@ -84,6 +92,7 @@
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
+POL_Extension_Write pub "Microsoft Publisher 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
@@ -91,8 +100,9 @@
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
+ POL_Shortcut_InsertBeforeWine "Microsoft Publisher 2010" "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
\ No newline at end of file
+exit
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.22"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Download_Resource "$SITE/divers/ie7-dlls.tar.bz2" "b71a3213452c9a3a1aa08767d52e7577"
tar -xvf ie7-dlls. tar .bz2
mv "msctf.dll" "$WINEPREFIX/drive_c/windows/system32"
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Shortcut "MSPUB.EXE" "Microsoft Publisher 2010" "" "" ""
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
POL_Extension_Write pub "Microsoft Publisher 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Publisher 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
RatSword |
Samedi 28 Mars 2015 à 16:36 |
RatSword
|
Messages
Discalimer: I am new to linux. I apologize if I am not posting in the correct forum. Linux Mint 17.1 Xfce 64bit.
Installation of Microsoft Office 2010 works seamlessly with PlayonLinux. However, the built in eqaution editor in Word 2010 does not function and causes the program to crash. This is a critical problem based on my needs. I have unistalled and reinstalled multiple times with no change. Also, I have made sure to have updated versions of winbind, wine-mono, etc on my machine.
Any guidance would be appreciated.
This the backtrace when the error/bug occurs:
Unhandled exception: page fault on read access to 0x0000004c in 32-bit code (0x7e7bf120).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7e7bf120 ESP:0032b760 EBP:0032b7a8 EFLAGS:00010212( R- -- I -A- - )
EAX:0000004c EBX:7e885ab4 ECX:00000050 EDX:f756d428
ESI:10b30368 EDI:0000000c
Stack dump:
0x0032b760: 00211274 7d480d38 0032b7b8 7bf8be5b
0x0032b770: 00000000 00000000 7d480d38 ffffffff
0x0032b780: 00211274 00000050 7d19e735 0000004c
0x0032b790: 00000040 079d2e58 0032b7c0 7bfbece4
0x0032b7a0: 10b30368 0000000c 0032b838 7bf8c1ef
0x0032b7b0: 10b30358 0000000c 0032b838 7bf8c1ef
Backtrace:
=>0 0x7e7bf120 SysFreeString+0x30() in oleaut32 (0x0032b7a8)
1 0x7bf8c1ef in msxml3 (+0x4c1ee) (0x0032b838)
2 0x7bdddced in libxml2.so.2 (+0x37cec) (0x7d19e948)
3 0x7bde42c8 in libxml2.so.2 (+0x3e2c7) (0x7d1780b8)
4 0x7bde59bc xmlParseChunk+0x13b() in libxml2.so.2 (0x7d1780b8)
5 0x7bf8d4e6 in msxml3 (+0x4d4e5) (0x0032c2a8)
6 0x7bf8d6f3 in msxml3 (+0x4d6f2) (0x0032c318)
7 0x7bf8da9f in msxml3 (+0x4da9e) (0x0032c364)
8 0x31b6581e in wwlib (+0x49581d) (0x0032d440)
9 0x31eb12f4 in wwlib (+0x7e12f3) (0x0032d504)
10 0x323fcbb3 in wwlib (+0xd2cbb2) (0x0032d938)
11 0x323fcd8c in wwlib (+0xd2cd8b) (0x0032d950)
12 0x323fcddd in wwlib (+0xd2cddc) (0x0032d9b4)
13 0x39c3a252 in mso (+0xc3a251) (0x0032da04)
14 0x39c3af57 in mso (+0xc3af56) (0x0032da40)
15 0x39529da9 in mso (+0x529da8) (0x0032da5c)
16 0x39529e18 in mso (+0x529e17) (0x0032dac0)
17 0x391967c4 in mso (+0x1967c3) (0x0032dad4)
18 0x390b34f6 in mso (+0xb34f5) (0x0032db3c)
19 0x390b2f2d in mso (+0xb2f2c) (0x0032db64)
20 0x390b2df2 in mso (+0xb2df1) (0x0032db70)
21 0x3173c766 in wwlib (+0x6c765) (0x0032db84)
22 0x3173c72f in wwlib (+0x6c72e) (0x0032dc00)
23 0x31738f5e in wwlib (+0x68f5d) (0x0032dc14)
24 0x31737386 in wwlib (+0x67385) (0x0032dc3c)
25 0x317346d9 in wwlib (+0x646d8) (0x0032fdac)
26 0x30001625 in winword (+0x1624) (0x0032fdd0)
27 0x300015aa in winword (+0x15a9) (0x0032fe60)
28 0x7b86249c call_process_entry+0xb() in kernel32 (0x0032fe78)
29 0x7b865ffb in kernel32 (+0x55ffa) (0x0032feb8)
30 0x7bc7da40 call_thread_func_wrapper+0xb() in ntdll (0x0032fed8)
31 0x7bc7dc9d call_thread_func+0x7c() in ntdll (0x0032ffa8)
32 0x7bc7da1e RtlRaiseException+0x21() in ntdll (0x0032ffc8)
33 0x7bc53dee in ntdll (+0x43ded) (0x0032ffe8)
0x7e7bf120 SysFreeString+0x30 in oleaut32: movl 0xfffffffc(%ecx),%eax
Modules:
Module Address Debug info Name (175 modules)
PE 5d0000- 833000 Deferred msointl
PE 850000- 4d7a000 Deferred msores
PE 10000000-1041a000 Deferred office.odf
PE 30000000-3015d000 Export winword
PE 316d0000-3294f000 Export wwlib
PE 39000000-3a1ea000 Export mso
PE 3a700000-3a7c9000 Deferred wwintl
PE 3c210000-3c56c000 Deferred csi
PE 3c5b0000-3c5e2000 Deferred ieawsdc
PE 3f100000-3f411000 Deferred msgr3en
PE 3f860000-3f899000 Deferred msproof7
PE 42030000-4217f000 Deferred riched20
PE 42280000-43614000 Deferred oart
PE 437a0000-4394b000 Deferred gfx
PE 44020000-441b4000 Deferred ogl
PE 6bdc0000-6be7c000 Deferred msptls
PE 6be90000-6beb0000 Deferred osppc
PE 6bed0000-6c064000 Deferred osppcext
ELF 7b800000-7ba4d000 Dwarf kernel32<elf>
\-PE 7b810000-7ba4d000 \ kernel32
ELF 7bc00000-7bcd0000 Dwarf ntdll<elf>
\-PE 7bc10000-7bcd0000 \ ntdll
ELF 7bda6000-7bf00000 Dwarf libxml2.so.2
ELF 7bf00000-7bf03000 Deferred <wine-loader>
ELF 7bf32000-7bfe0000 Dwarf msxml3<elf>
\-PE 7bf40000-7bfe0000 \ msxml3
ELF 7c409000-7c435000 Deferred msxml6<elf>
\-PE 7c410000-7c435000 \ msxml6
ELF 7c435000-7c473000 Deferred libxslt.so.1
ELF 7c7f3000-7c900000 Deferred actxprxy<elf>
\-PE 7c810000-7c900000 \ actxprxy
ELF 7cc0f000-7cc28000 Deferred cryptnet<elf>
\-PE 7cc10000-7cc28000 \ cryptnet
ELF 7cc28000-7cc4e000 Deferred liblzma.so.5
ELF 7cc4e000-7ccc5000 Deferred wineps<elf>
\-PE 7cc70000-7ccc5000 \ wineps
ELF 7ccda000-7ccef000 Deferred schannel<elf>
\-PE 7cce0000-7ccef000 \ schannel
ELF 7ccef000-7cd22000 Deferred wintrust<elf>
\-PE 7cd00000-7cd22000 \ wintrust
ELF 7cd22000-7cd8c000 Deferred setupapi<elf>
\-PE 7cd30000-7cd8c000 \ setupapi
ELF 7d269000-7d2b4000 Deferred libdbus-1.so.3
ELF 7d2b4000-7d2c0000 Deferred libkrb5support.so.0
ELF 7d2c0000-7d2f0000 Deferred libk5crypto.so.3
ELF 7d2f0000-7d3ae000 Deferred libkrb5.so.3
ELF 7d3ae000-7d3c0000 Deferred libavahi-client.so.3
ELF 7d3c0000-7d3ce000 Deferred libavahi-common.so.3
ELF 7d3ce000-7d413000 Deferred libgssapi_krb5.so.2
ELF 7d4ba000-7d527000 Deferred libcups.so.2
ELF 7d527000-7d566000 Deferred winspool<elf>
\-PE 7d530000-7d566000 \ winspool
ELF 7d566000-7d62a000 Deferred crypt32<elf>
\-PE 7d570000-7d62a000 \ crypt32
ELF 7d62a000-7d667000 Deferred rsaenh<elf>
\-PE 7d630000-7d667000 \ rsaenh
ELF 7d667000-7d6a3000 Deferred libp11-kit.so.0
ELF 7d6a3000-7d72a000 Deferred libgcrypt.so.11
ELF 7d72a000-7d7f3000 Deferred libgnutls.so.26
ELF 7d7f3000-7d825000 Deferred ws2_32<elf>
\-PE 7d800000-7d825000 \ ws2_32
ELF 7d825000-7d83d000 Deferred libresolv.so.2
ELF 7d849000-7d85e000 Deferred winscard<elf>
\-PE 7d850000-7d85e000 \ winscard
ELF 7d85e000-7d882000 Deferred iphlpapi<elf>
\-PE 7d860000-7d882000 \ iphlpapi
ELF 7d882000-7d8ae000 Deferred netapi32<elf>
\-PE 7d890000-7d8ae000 \ netapi32
ELF 7d8ae000-7d94d000 Deferred msvcrt<elf>
\-PE 7d8c0000-7d94d000 \ msvcrt
ELF 7d9a4000-7d9a9000 Deferred libcom_err.so.2
ELF 7d9a9000-7d9d7000 Deferred secur32<elf>
\-PE 7d9b0000-7d9d7000 \ secur32
ELF 7d9d7000-7da35000 Deferred dbghelp<elf>
\-PE 7d9e0000-7da35000 \ dbghelp
ELF 7da35000-7da68000 Deferred mscoree<elf>
\-PE 7da40000-7da68000 \ mscoree
ELF 7da71000-7da87000 Deferred netprofm<elf>
\-PE 7da80000-7da87000 \ netprofm
ELF 7da87000-7daa3000 Deferred jsproxy<elf>
\-PE 7da90000-7daa3000 \ jsproxy
ELF 7daa3000-7dada000 Deferred winhttp<elf>
\-PE 7dab0000-7dada000 \ winhttp
ELF 7dada000-7db1c000 Deferred usp10<elf>
\-PE 7dae0000-7db1c000 \ usp10
ELF 7db3e000-7db50000 Deferred libtasn1.so.3
ELF 7db52000-7db59000 Deferred libnss_dns.so.2
ELF 7db59000-7db73000 Deferred rasapi32<elf>
\-PE 7db60000-7db73000 \ rasapi32
ELF 7db73000-7db86000 Deferred sensapi<elf>
\-PE 7db80000-7db86000 \ sensapi
ELF 7db86000-7dba0000 Deferred spoolss<elf>
\-PE 7db90000-7dba0000 \ spoolss
ELF 7dba0000-7dbc2000 Deferred sti<elf>
\-PE 7dbb0000-7dbc2000 \ sti
ELF 7dbc2000-7dbdf000 Deferred libgcc_s.so.1
ELF 7dbdf000-7dc00000 Deferred localspl<elf>
\-PE 7dbe0000-7dc00000 \ localspl
ELF 7dd00000-7dd04000 Deferred libkeyutils.so.1
ELF 7dd04000-7dd26000 Deferred imm32<elf>
\-PE 7dd10000-7dd26000 \ imm32
ELF 7dd6c000-7dd9f000 Deferred uxtheme<elf>
\-PE 7dd70000-7dd9f000 \ uxtheme
ELF 7dd9f000-7dda5000 Deferred libxfixes.so.3
ELF 7dda5000-7ddb0000 Deferred libxcursor.so.1
ELF 7ddb0000-7ddc1000 Deferred libxi.so.6
ELF 7ddc1000-7ddc5000 Deferred libxcomposite.so.1
ELF 7ddc5000-7ddd0000 Deferred libxrandr.so.2
ELF 7ddd0000-7dddb000 Deferred libxrender.so.1
ELF 7dddb000-7dde1000 Deferred libxxf86vm.so.1
ELF 7dde1000-7dde5000 Deferred libxinerama.so.1
ELF 7dde5000-7ddec000 Deferred libxdmcp.so.6
ELF 7ddec000-7ddf0000 Deferred libxau.so.6
ELF 7ddf0000-7de12000 Deferred libxcb.so.1
ELF 7de12000-7df46000 Deferred libx11.so.6
ELF 7df46000-7df59000 Deferred libxext.so.6
ELF 7df59000-7df60000 Deferred libffi.so.6
ELF 7df60000-7df65000 Deferred libgpg-error.so.0
ELF 7df65000-7df78000 Deferred psapi<elf>
\-PE 7df70000-7df78000 \ psapi
ELF 7df7a000-7e005000 Deferred winex11<elf>
\-PE 7df80000-7e005000 \ winex11
ELF 7e005000-7e024000 Deferred cabinet<elf>
\-PE 7e010000-7e024000 \ cabinet
ELF 7e024000-7e11d000 Deferred comctl32<elf>
\-PE 7e030000-7e11d000 \ comctl32
ELF 7e11d000-7e142000 Deferred mpr<elf>
\-PE 7e120000-7e142000 \ mpr
ELF 7e142000-7e1b6000 Deferred wininet<elf>
\-PE 7e150000-7e1b6000 \ wininet
ELF 7e1b6000-7e226000 Deferred shlwapi<elf>
\-PE 7e1c0000-7e226000 \ shlwapi
ELF 7e226000-7e445000 Deferred shell32<elf>
\-PE 7e230000-7e445000 \ shell32
ELF 7e445000-7e4d8000 Deferred urlmon<elf>
\-PE 7e450000-7e4d8000 \ urlmon
ELF 7e4d8000-7e5c4000 Deferred msi<elf>
\-PE 7e4e0000-7e5c4000 \ msi
ELF 7e606000-7e62f000 Deferred libexpat.so.1
ELF 7e62f000-7e66a000 Deferred libfontconfig.so.1
ELF 7e66a000-7e692000 Deferred libpng12.so.0
ELF 7e692000-7e6ab000 Deferred libz.so.1
ELF 7e6ab000-7e74b000 Deferred libfreetype.so.6
ELF 7e76c000-7e77f000 Deferred msimg32<elf>
\-PE 7e770000-7e77f000 \ msimg32
ELF 7e77f000-7e795000 Deferred wtsapi32<elf>
\-PE 7e780000-7e795000 \ wtsapi32
ELF 7e795000-7e8ac000 Dwarf oleaut32<elf>
\-PE 7e7b0000-7e8ac000 \ oleaut32
ELF 7e8ac000-7e926000 Deferred rpcrt4<elf>
\-PE 7e8c0000-7e926000 \ rpcrt4
ELF 7e926000-7ea6e000 Deferred user32<elf>
\-PE 7e940000-7ea6e000 \ user32
ELF 7ea6e000-7eb86000 Deferred ole32<elf>
\-PE 7ea90000-7eb86000 \ ole32
ELF 7eb86000-7ec94000 Deferred gdi32<elf>
\-PE 7eb90000-7ec94000 \ gdi32
ELF 7ec94000-7ed3d000 Deferred msvcr90<elf>
\-PE 7ecb0000-7ed3d000 \ msvcr90
ELF 7ed3d000-7eda4000 Deferred advapi32<elf>
\-PE 7ed50000-7eda4000 \ advapi32
ELF 7efa4000-7efb1000 Deferred libnss_files.so.2
ELF 7efb1000-7efbd000 Deferred libnss_nis.so.2
ELF 7efbd000-7efd6000 Deferred libnsl.so.1
ELF 7efd6000-7efdf000 Deferred libnss_compat.so.2
ELF 7efe7000-7f000000 Deferred version<elf>
\-PE 7eff0000-7f000000 \ version
ELF f7378000-f73be000 Deferred libm.so.6
ELF f73be000-f73c3000 Deferred libdl.so.2
ELF f73c3000-f7571000 Deferred libc.so.6
ELF f7571000-f758d000 Deferred libpthread.so.0
ELF f75a6000-f75af000 Deferred librt.so.1
ELF f75af000-f7763000 Dwarf libwine.so.1
ELF f7765000-f7787000 Deferred ld-linux.so.2
ELF f7787000-f7788000 Deferred [vdso].so
Threads:
process tid prio (all id:s are in hex)
00000008 (D) C:\Program Files\Microsoft Office\Office14\WINWORD.EXE
000000cc 0
000000cb 0
000000ca 0
000000c9 0
000000c8 0
000000c7 0
000000c6 0
000000c5 0
000000c4 0
000000c3 0
000000c2 0
000000c1 0
000000c0 0
000000bd 0
000000bc 0
000000ba 0
000000b8 0
000000b3 0
000000b2 0
000000b0 0
000000af 0
0000008c 0
00000023 -2
00000009 0 <==
0000000e services.exe
0000009c 0
0000009b 0
00000028 0
0000001b 0
00000014 0
00000010 0
0000000f 0
00000012 winedevice.exe
0000001f 0
00000018 0
00000017 0
00000013 0
00000019 plugplay.exe
0000001e 0
0000001d 0
0000001a 0
00000020 explorer.exe
00000021 0
00000026 OSPPSVC.EXE
0000008b 0
0000008a 0
00000088 0
00000086 0
00000084 0
00000082 0
00000080 0
0000007e 0
0000007c 0
0000007a 0
00000078 0
00000076 0
00000074 0
00000072 0
00000070 0
0000006e 0
0000006c 0
0000006a 0
00000068 0
00000066 0
00000064 0
00000062 0
00000060 0
0000005e 0
0000005c 0
0000005a 0
00000058 0
00000056 0
00000054 0
00000052 0
00000050 0
0000004e 0
0000004c 0
0000004a 0
00000048 0
0000001c 0
0000000d 0
00000047 0
00000045 0
00000043 0
00000041 0
0000003f 0
0000003d 0
0000003b 0
00000039 0
00000037 0
00000036 0
00000035 0
00000033 0
00000032 0
00000030 0
0000002f 0
0000002d 0
0000002c 0
0000002b 0
00000027 0
0000008e rpcss.exe
000000bf 0
00000096 0
00000095 0
00000094 0
00000093 0
00000092 0
00000090 0
0000008f 0
00000099 svchost.exe
000000ae 0
000000a4 0
0000009f 0
0000009e 0
0000009d 0
0000009a 0
System information:
Wine build: wine-1.7.22
Platform: i386
Host system: Linux
Host version: 3.13.0-46-generic
Réponses
|
atirage21 |
Vendredi 23 Janvier 2015 à 17:09 |
atirage21
|
Messages
It is not going install service pack, and also is problem with bibliothek. Office 2010 is only for face good, but really is danger under wine (play onlinux). We must wait for better support of office 2010 (now is year 2015).
Réponses
|
petch |
Jeudi 13 Novembre 2014 à 19:12 |
petch
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @@ -72,11 +72,11 @@
# Fix a crash when loading a file
POL_Call POL_Install_msxml6
-POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
-POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
-POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010"
-POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010"
-POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010"
+POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
+POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
+POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
+POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;" # No category for collaborative work?
+POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;" # Calendar;ContactManagement; ? :p
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.22"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010" "" "" "Office;WordProcessor;"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010" "" "" "Office;Spreadsheet;"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010" "" "" "Office;Presentation;"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010" "" "" "Network;InstantMessaging;"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010" "" "" "Network;Email;"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
Edité par petch
|
FatTony |
Dimanche 2 Novembre 2014 à 22:21 |
FatTony
|
Messages
Please, let the installer create the following folder:
Reason:
My installation of Office 2010 (with the newest PoL version from PPA) creates lots of .lnk-files in the same directory as the source files. With this folder, the .lnk-files are created there.
Maybe, it would also be good to periodically remove these superfluous files in the Recent-folder.
Other people got this error as well, not just Office 2010 seems to be affected:
https://bugs.winehq.org/show_bug.cgi?id=15480#c17
I'm sorry for not being able to produce the code myself. Cheers!
Réponses
Dimanche 2 Novembre 2014 à 22:28
That bug report says that this bug was fixed in 1.7.14. This sounds like a Wine problem.
Samedi 9 Juillet 2016 à 9:03
I used the script on Wine 1.7.52, but still had to create that folder manually.
Samedi 9 Juillet 2016 à 9:04
(Wine 1.7.52 setup with PlayOnLinux 4.2.10)
|
ehab |
Samedi 1 Novembre 2014 à 11:46 |
ehab
|
Messages
i try to install office 2010 64bit but i face this message
Error in main
The 64bits version is not compatible! Sorry
Réponses
Samedi 1 Novembre 2014 à 12:07
That's correct, only 32bit version is supported
|
boudrida |
Vendredi 26 September 2014 à 11:38 |
boudrida
|
Messages
ça fonctionne "dans l'ensemble"
J'ai tout de même un petit soucis avec le "point" du pavé numérique.
Il ne marche pas que ce soit sur Word ou Excel (et ça me manque sous Excel...)
Mais franchement c'est du super boulot!
Réponses
Vendredi 26 September 2014 à 11:40
Je viens de m'apercevoir que la touche fonctionne comme "suppr"...
Vendredi 26 September 2014 à 12:10
Après 2 semaines de recherches...Il faut installer "gnome-tweak-tool" et dans l'onglet "typing" on demande un pavé numérique "obsolète". Et tout remarche....
|
FuzzyToothpaste |
Mardi 16 September 2014 à 2:11 |
FuzzyToothpaste
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
At the end of the installer, it says "If an installation Windows prevent your programs from running, you must remove and reinstall'. I don't think it's supposed to say that. I think it's supposed to say that you will need to remove and reinstall if it gives you messages saying you don't have WIndows, as Microsoft has been taking measures to prevent Microsoft software from working with Wine.
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | @@ -61,7 +61,7 @@
[ "$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 64-bit version is not compatible! Sorry")";
fi
POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"
@@ -74,7 +74,7 @@
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
-POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010"
+POL_Shortcut "POWERPNT.EXE" "Microsoft PowerPoint 2010"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010"
@@ -82,13 +82,13 @@
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
-POL_Extension_Write ppt "Microsoft Powerpoint 2010"
-POL_Extension_Write pptx "Microsoft Powerpoint 2010"
+POL_Extension_Write ppt "Microsoft PowerPoint 2010"
+POL_Extension_Write pptx "Microsoft PowerPoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
- POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
+ POL_Shortcut_InsertBeforeWine "Microsoft PowerPoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.22"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
if [ "$POL_OS" = "Mac" ]; then
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 64-bit version is not compatible! Sorry ")" ;
fi
POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
POL_Shortcut "POWERPNT.EXE" "Microsoft PowerPoint 2010"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft PowerPoint 2010"
POL_Extension_Write pptx "Microsoft PowerPoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft PowerPoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
Quentin PÂRIS |
Mardi 22 Juillet 2014 à 21:59 |
Quentin PÂRIS
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Differences
1 2 3 4 5 6 7 8 9 10 | @@ -69,6 +69,9 @@
POL_Wine_OverrideDLL "native,builtin" "riched20"
+# Fix a crash when loading a file
+POL_Call POL_Install_msxml6
+
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.22"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Call POL_Install_msxml6
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
Quentin PÂRIS |
Mardi 22 Juillet 2014 à 14:56 |
Quentin PÂRIS
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 | @@ -66,10 +66,8 @@
POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"
-
-POL_Call POL_Function_override_app_dlls POWERPNT.EXE native riched20
-POL_Call POL_Function_override_app_dlls ONENOTE.EXE native riched20
-
+POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.22"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Wine_OverrideDLL "native,builtin" "riched20"
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
|
Quentin PÂRIS |
Lundi 21 Juillet 2014 à 21:26 |
Quentin PÂRIS
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Messages
Differences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | @@ -50,6 +50,13 @@
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
+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"
@@ -77,6 +84,14 @@
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
+if [ "$POL_OS" = "Mac" ]; then
+ POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
+ POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
+ POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
+ POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
+ POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "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
\ No newline at end of file
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.22"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
if [ "$POL_OS" = "Mac" ]; then
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"
POL_Call POL_Function_override_app_dlls POWERPNT.EXE native riched20
POL_Call POL_Function_override_app_dlls ONENOTE.EXE native riched20
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
if [ "$POL_OS" = "Mac" ]; then
POL_Shortcut_InsertBeforeWine "Microsoft Word 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Excel 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Powerpoint 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft OneNote 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
POL_Shortcut_InsertBeforeWine "Microsoft Outlook 2010" "source \"$POL_USER_ROOT/tools/samba3/init\""
fi
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
Edité par Tinou
|
Quentin PÂRIS |
Lundi 21 Juillet 2014 à 17:10 |
Quentin PÂRIS
|
Warning
Cette mise à jour n'a pas été approuvée par l'équipe. Utilisez-la à vos risques et périls
Differences
1 2 3 4 5 6 7 8 9 | @@ -61,6 +61,8 @@
POL_Call POL_Function_override_app_dlls POWERPNT.EXE native riched20
+POL_Call POL_Function_override_app_dlls ONENOTE.EXE native riched20
+
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
|
Nouveau code source
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | #!/bin/bash
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX= "Office2010"
WINEVERSION= "1.7.22"
TITLE= "Microsoft Office 2010"
POL_SetupWindow_Init
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"
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"
POL_Call POL_Function_override_app_dlls POWERPNT.EXE native riched20
POL_Call POL_Function_override_app_dlls ONENOTE.EXE native riched20
POL_Shortcut "WINWORD.EXE" "Microsoft Word 2010"
POL_Shortcut "EXCEL.EXE" "Microsoft Excel 2010"
POL_Shortcut "POWERPNT.EXE" "Microsoft Powerpoint 2010"
POL_Shortcut "ONENOTE.EXE" "Microsoft OneNote 2010"
POL_Shortcut "OUTLOOK.EXE" "Microsoft Outlook 2010"
POL_Extension_Write doc "Microsoft Word 2010"
POL_Extension_Write docx "Microsoft Word 2010"
POL_Extension_Write xls "Microsoft Excel 2010"
POL_Extension_Write xlsx "Microsoft Excel 2010"
POL_Extension_Write ppt "Microsoft Powerpoint 2010"
POL_Extension_Write pptx "Microsoft Powerpoint 2010"
POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit
|
Réponses
Dimanche 29 Octobre 2017 à 6:14
hola todos soy nuevo en el grupo.. tengo un problema.. no puedo instalar office 2010 en centos 7.. alguien me podra ayudar
Mercredi 27 Juillet 2022 à 13:11
can youu help to i use the office ,may?
Edité par Tinou
|