WineHQ

Microsoft Office (installer only)

Office 365 ProPlus ( 2016 )

Application Details:

Version: 365 ProPlus (2016)
License: Subscription
URL: http://www.office.com
Votes: 5
Latest Rating: Garbage
Latest Wine Version Tested: 7.2

Maintainers: About Maintainership

Test Results

Old test results
The test results you have selected are very old and may not represent the current state of Wine.
Selected Test Results

What works

Access, Excel, Powerpoint, Publisher, Word with correct base software installed and a few workarounds applied (as noted in the Extra Comments section)

Pre-activation works (If you download the Office 365 web installer from the Office 365 portal, it will remain pre-activated/linked to you Office 365 account)

What does not

OneNote (Needs "Desktop Experience feature")

Outlook (Partially works. Issues with adding many account types, especially Exchange/Office365 accounts)

OneDrive (Needs "Full Administrator rights")

Skype For Business/Lync (Missing "Extended Linguistic Services" elscore.dll)

Sign-in to Office 365 does not work

Workarounds

Full instructions in Extra Comments section.

1. Missing DLLs:

cp -iv "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Common Files/Microsoft Shared/ClickToRun/AppvIsvSubsystems32.dll" "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Microsoft Office/root/Office16/AppvIsvSubsystems32.dll"
cp -iv "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Common Files/Microsoft Shared/ClickToRun/C2R32.dll" "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Microsoft Office/root/Office16/C2R32.dll"

2. Registry workarounds for black screen/graphic issues (All may not be needed. Try combinations. I only needed workaround 1.):

1. Limiting maximum Direct2D factory version:

[HKEY_CURRENT_USER\Software\Wine\Direct2D]
"max_version_factory"=dword:000000002

2. Enabling Direct3D CSMT:

[HKEY_CURRENT_USER\Software\Wine\Direct3D]
"csmt"=dword:000000013

Forcing a higher OpenGL version 3.2:

[HKEY_CURRENT_USER\Software\Wine\Direct3D]
"MaxVersionGL"=dword:00030002

What was not tested

Miscellaneous Microsoft Office Tools like Database Compare, Spreadsheet Compare

Hardware tested

Graphics:

  • GPU: Intel
  • Driver: open source

Additional Comments

Minimum software requirements:

sudo pacman -Sy wine wine-mono wine_gecko winetricks samba smbclient libwbclient
sudo pacman -Sy alsa-lib alsa-plugins gnutls libpng libpulse libglvnd libxcomposite libxinerama libxml2
sudo pacman -Sy lib32-alsa-lib lib32-alsa-plugins lib32-gnutls lib32-libpng lib32-libpulse lib32-libglvnd lib32-libxcomposite lib32-libxinerama lib32-libxml2

Additional nice-to-have software (to get rid of other warning/errors which do not/may not directly impact the usability of Office 365):

sudo pacman -Sy gconf gst-plugins-base gst-plugins-base-libs gst-plugins-good gstreamer lcms2 libcanberra libcanberra-pulse libva libva-intel-driver libva-vdpau-driver libvdpau libx11 libxmu libxrandr libxslt libxss libxt libxtst libxv mesa mesa-vdpau mpg123 p11-kit vulkan-intel
sudo pacman -Sy lib32-gconf lib32-gst-plugins-base lib32-gst-plugins-base-libs lib32-gst-plugins-good lib32-gstreamer lib32-lcms2 lib32-libcanberra lib32-libcanberra-pulse lib32-libva lib32-libva-intel-driver lib32-libva-vdpau-driver lib32-libvdpau lib32-libx11 lib32-libxmu lib32-libxrandr lib32-libxslt lib32-libxss lib32-libxt lib32-libxtst lib32-libxv lib32-mesa lib32-mesa-vdpau lib32-mpg123 lib32-p11-kit lib32-vulkan-intel

Installation Instructions:

1. Create a 32bit Wine Prefix

export WINEARCH=win32
export WINEPREFIX=~/.msoffice
wineboot -i<span></span>

2. Change the Wine Windows version to Windows 7

winetricks winecfg

3a. Install fonts

winetricks corefonts

3b. Or if you have Windows fonts installed in Linux, you can also try to symlink them

cd ${WINEPREFIX:-~/.wine}/drive_c/windows/Fonts && for i in /usr/share/fonts/**/*.{ttf,otf}; do ln -s "$i" ; done

4. Install DLLs/components

winetricks dotnet20 gdiplus msxml6 riched20

5. Set the library overrides

winetricks winecfg
gdiplus (native)
msxml6 (native,builtin)
riched20 (native,builtin)

6. Ensure the Wine Windows version is still Windows 7

winetricks winecfg

7. Install Office 365 Pro Plus 32-bit

wine ~/Downloads/Setup.X86.en-us_O365ProPlusRetail_********-****-****-****-************_TX_PR_b_32_.exe

8. Once complete, you will see a taskbar notification indicating the setup is complete, but it installer will not automatically exit. You can close the installer at this point.

9. Copy missing DLLs (AppvIsvSubsystems32 & C2R32)

cp -iv "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Common Files/Microsoft Shared/ClickToRun/AppvIsvSubsystems32.dll" "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Microsoft Office/root/Office16/AppvIsvSubsystems32.dll"
cp -iv "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Common Files/Microsoft Shared/ClickToRun/C2R32.dll" "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Microsoft Office/root/Office16/C2R32.dll"

9. Run an Office 365 program like Access, Excel, Powerpoint, Publisher or Word

Registry workarounds for black screen/graphic issues (All may not be needed. Try combinations. I only needed workaround 1.):

1. Limiting maximum Direct2D factory version:

[HKEY_CURRENT_USER\Software\Wine\Direct2D]
"max_version_factory"=dword:00000000

2. Enabling Direct3D CSMT:

[HKEY_CURRENT_USER\Software\Wine\Direct3D]
"csmt"=dword:00000001

3. Forcing a higher OpenGL version 3.2:

[HKEY_CURRENT_USER\Software\Wine\Direct3D]
"MaxVersionGL"=dword:00030002

Possible registry workaround for font readability issues (if needed):

[HKEY_CURRENT_USER\Software\Wine\X11 Driver]
"ClientSideWithRender"="N"

Prevent wine from creating any file associations:

1. For a single Wine Prefix

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices]
"winemenubuilder"="C:\\windows\\system32\\winemenubuilder.exe -r"

2. Using an environment variable (across multiple Wine Prefixes)

export WINEDLLOVERRIDES="winemenubuilder.exe=d"

Sources:

https://appdb.winehq.org/objec...

https://appdb.winehq.org/objec...

https://wiki.archlinux.org/ind...

https://www.codeweavers.com/co...

selected in Test Results table below
Operating systemTest dateWine versionInstalls?Runs?Used
Workaround?
RatingSubmitter
ShowLinux Mint 20.3 "Una"Feb 13 20227.2No, but has workaround No YesGarbagexenoxriar 
ShowPop!_OS 20.10Mar 23 20216.0Yes Yes YesSilverJim van Abkoude 
ShowDebian GNU/Linux 11.x "Bullseye" x86_64Sep 21 20205.17Yes Yes YesSilverRahul 
ShowArch LinuxJul 12 20205.12Yes Yes YesSilverAlamatar 
ShowManjaro Linux 19.0Apr 03 20205.5Yes Yes YesBronzeRuben Bekaert 

Known Bugs

Bug # Description Status Resolution Other apps affected
14980 Wine does not automatically use the RichEdit Control 'riched20' installed by Microsoft Office 2003/2007/2010/2013/2016 (RichEdit v5.0+ requires native-only override) NEW View
44948 Multiple apps need CreateSymbolicLinkA/W implementation (Spine (Mod starter for Gothic), GenLauncher (Mod manager for GeneralsZH), MS Office 365 installer) STAGED View
47575 Office 365 Excel: DDE Failure on close UNCONFIRMED View

Show all bugs

Comments

The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.

Mint 21 Wine 7.21
by Oleg on Thursday November 24th 2022, 3:23
Currently facing only this issue:

```
Unhandled exception: unimplemented function sppc.dll.SLLoadApplicationPolicies called in 32-bit code (0x7b0125a6).
```

```
Unhandled exception: unimplemented function sppc.dll.SLLoadApplicationPolicies called in 32-bit code (0x7b0125a6).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7b0125a6 ESP:0021d314 EBP:0021d388 EFLAGS:00200246( - -- I Z- -P- )
EAX:0021d320 EBX:68f44000 ECX:00000004 EDX:0021d3b8
ESI:80000100 EDI:00000000
Stack dump:
0x0021d314: 03fafff8 0021d388 7bc27786 80000100
0x0021d324: 00000001 00000000 7b0125a6 00000002
0x0021d334: 68f44000 68f444d1 02e00000 0021d368
0x0021d344: 02e00000 006310a8 0021d370 02e00000
0x0021d354: 0021d370 0021d3d8 7bc28953 00000000
0x0021d364: 02e00000 0021d3d8 7bc28953 02e00074
Backtrace:
=>0 0x7b0125a6 RaiseException+0x51(code=, count=) [Z:\usr\src\packages\BUILD\dlls\kernelbase\debug.c:302] in kernelbase (0x0021d388)
1 0x68f428cd __wine_spec_unimplemented_stub+0x4d(module=) [Z:\usr\src\packages\BUILD\dlls\winecrt0\stub.c:32] in sppc (0x0021d3d8)
2 0x68f41660 in sppc (+0x1660) (0x0021d40c)
3 0x05228bdd (0x0021d52c)
4 0x052289f0 (0x0021d554)
5 0x052278e1 (0x0021d778)
6 0x05227505 (0x0021d7f0)
7 0x05227319 (0x0021d808)
8 0x06525845 (0x0021d824)
9 0x0652553c (0x0021d8c4)
10 0x065238fc (0x0021da4c)
11 0x0652378b (0x0021da5c)
12 0x0652350b (0x0021daa0)
13 0x06523026 (0x0021db68)
14 0x06522e26 (0x0021dbb4)
15 0x06521613 (0x0021dbf0)
16 0x00434eb5 in excel (+0x34eb5) (0x0021dc48)
17 0x004231e1 in excel (+0x231e1) (0x0021fa50)
18 0x00421fbf in excel (+0x21fbf) (0x0021fcc8)
19 0x004140f2 in excel (+0x140f2) (0x0021fee4)
20 0x004011fd in excel (+0x11fd) (0x0021ff30)
21 0x7b62a150 in kernel32 (+0x2a150) (0x0021ff48)
22 0x7bc5d197 in ntdll (+0x5d197) (0x0021ff5c)
23 0x7bc5d9c0 RtlCreateUserThread(entry=004010B3, arg=7FFD1000) [Z:\usr\src\packages\BUILD\dlls\ntdll\thread.c:306] in ntdll (0x0021ffec)
0x7b0125a6 RaiseException+0x51 [Z:\usr\src\packages\BUILD\dlls\kernelbase\debug.c:302] in kernelbase: subl $4,%esp
Unable to access file 'Z:\usr\src\packages\BUILD\dlls\kernelbase\debug.c'
Modules:
Module Address Debug info Name (82 modules)
PE 00400000-02df7000 Export excel
PE 03040000-03232000 Deferred c2r32
PE 03240000-036ba000 Deferred ole32
PE 036c0000-038f3000 Deferred rpcrt4
PE 04290000-042c5000 Deferred msv1_0
PE 042d0000-04359000 Deferred ws2_32
PE 04360000-043e3000 Deferred winex11
PE 08950000-08de3000 Deferred comctl32
PE 08df0000-090cb000 Deferred crypt32
PE 090d0000-092f8000 Deferred office.odf
PE 09300000-096c0000 Deferred d2d1
PE 096c0000-097e0000 Deferred dxgi
PE 097e0000-0ab78000 Deferred wined3d
PE 0abb0000-0b072000 Deferred mso40uires
PE 0b080000-0bf9a000 Deferred mso99lres
PE 0c050000-0c063000 Deferred msointl30
PE 0c0a0000-0c16b000 Deferred msoaria
PE 0c1a0000-0c1a2000 Deferred normaliz
PE 0fc20000-0fdd0000 Deferred msointl
PE 0fff0000-0fff2000 Deferred usp10
PE 10000000-101ea000 Deferred appvisvsubsystems32
PE 101f0000-14c33000 Deferred msores
PE 15040000-152d9000 Deferred dwrite
PE 154e0000-1575a000 Deferred d3d11
PE 16170000-163bd000 Deferred riched20
PE 16dc0000-16dda000 Deferred dhcpcsvc
PE 61600000-61633000 Deferred mspatcha
PE 61c40000-61c64000 Deferred userenv
PE 62240000-6231f000 Deferred mscoree
PE 62500000-6290c000 Deferred oleaut32
PE 62c40000-62c7c000 Deferred concrt140
PE 63880000-63922000 Deferred wintrust
PE 63c00000-63d0f000 Deferred winhttp
PE 64180000-64234000 Deferred winspool
PE 643c0000-643d3000 Deferred vcruntime140
PE 646c0000-64747000 Deferred iphlpapi
PE 64a80000-64ad8000 Deferred win32u
PE 65680000-65902000 Deferred msvcrt
PE 66080000-66179000 Deferred shlwapi
PE 662c0000-662e5000 Deferred d3d10core
PE 66480000-664b2000 Deferred imagehlp
PE 66640000-6665b000 Deferred version
PE 667c0000-66805000 Deferred shcore
PE 66f80000-66f9d000 Deferred schannel
PE 66fc0000-66fe4000 Deferred compstui
PE 67500000-67553000 Deferred imm32
PE 68100000-6813c000 Deferred sxs
PE 68280000-682d0000 Deferred jsproxy
PE 684c0000-6860e000 Deferred combase
PE 68880000-68d8e000 Deferred user32
PE 68e40000-68ecf000 Deferred netapi32
PE 68f40000-68f58000 Dwarf-4 sppc
PE 69000000-69267000 Deferred gdiplus
PE 69840000-6993b000 Deferred advapi32
PE 6a1c0000-6a1d8000 Deferred wevtapi
PE 6a600000-6a625000 Deferred kerberos
PE 6a680000-6a6a7000 Deferred wtsapi32
PE 6aac0000-6ab9c000 Deferred ucrtbase
PE 6aec0000-6b070000 Deferred setupapi
PE 6ba40000-6ba7a000 Deferred odbccp32
PE 6bbc0000-6bc5a000 Deferred sechost
PE 6c100000-6c301000 Deferred wininet
PE 6c8c0000-6c901000 Deferred netprofm
PE 6c980000-6c9ef000 Deferred msvcp140
PE 6d480000-6d50e000 Deferred secur32
PE 6d600000-6d62b000 Deferred d3d10_1
PE 6da80000-6dcaa000 Deferred gdi32
PE 6e000000-6e06a000 Deferred cabinet
PE 6e200000-6e246000 Deferred bcrypt
PE 6e3c0000-6e93f000 Deferred msi
PE 6ecc0000-6ecfe000 Deferred dnsapi
PE 6f6c0000-6f6dc000 Deferred nsi
PE 70000000-7018f000 Deferred dbghelp
PE 70380000-70624000 Deferred urlmon
PE 70d80000-70e21000 Deferred uxtheme
PE 71040000-7116c000 Deferred wbemprox
PE 712c0000-71315000 Deferred mpr
PE 71400000-720b6000 Deferred shell32
PE 7a800000-7ac41000 Deferred opengl32
PE 7b000000-7b52b000 Dwarf-4 kernelbase
PE 7b600000-7b75a000 Dwarf-4 kernel32
PE 7bc00000-7bec3000 Dwarf-4 ntdll
Threads:
process tid prio name (all IDs are in hex)
00000038 services.exe
0000003c 0
00000040 0 wine_rpcrt4_server
00000064 0 wine_rpcrt4_io
00000084 0 wine_rpcrt4_io
00000098 0 wine_rpcrt4_io
000000c0 0 wine_rpcrt4_io
00000104 0 wine_rpcrt4_io
0000011c 0 wine_rpcrt4_io
00000138 0 wine_rpcrt4_io
00000044 OfficeClickToRun.exe
00000048 0
00000054 0
00000058 0
0000005c 0
00000060 0
0000006c 0
00000070 0 wine_sechost_service
0000007c 0
00000080 0 wine_rpcrt4_server
000000bc 0
000000cc 0
000000e8 0
00000178 0 wine_rpcrt4_io
0000017c 0 wine_threadpool_worker
00000180 0 wine_rpcrt4_io
00000190 0 wine_threadpool_waitqueue
00000194 0 wine_rpcrt4_io
00000198 0 wine_rpcrt4_io
0000019c 0 wine_rpcrt4_io
000001a4 0 wine_rpcrt4_io
0000020c 0
00000268 0 wine_wininet_collect_connections
0000004c explorer.exe
00000050 0
00000184 0
00000188 0 wine_rpcrt4_server
00000074 svchost.exe
00000078 0
00000088 0
0000008c 0 wine_sechost_service
00000090 winedevice.exe
00000094 0
0000009c 0
000000a0 0 wine_sechost_service
000000a4 0
000000a8 0
000000ac 0
0000012c 0
00000250 0 wine_threadpool_worker
000000b0 winedevice.exe
000000b4 0
000000d0 0
000000d4 0 wine_sechost_service
000000d8 0
000000dc 0
000000e0 0
000000e4 0
000000f4 0
000000f8 0
000000fc plugplay.exe
00000100 0
00000108 0
0000010c 0 wine_sechost_service
00000110 0 wine_rpcrt4_server
00000114 svchost.exe
00000118 0
00000120 0
00000124 0 wine_sechost_service
00000128 0
00000158 0 wine_rpcrt4_server
0000015c 0 wine_rpcrt4_server
00000130 rpcss.exe
00000134 0
0000013c 0
00000140 0 wine_sechost_service
00000144 0 wine_rpcrt4_server
00000148 0 wine_rpcrt4_server
0000018c 0 wine_rpcrt4_io
00000170 (D) C:\Program Files\Microsoft Office\root\Office16\EXCEL.EXE
00000174 0
Is the an appdb entry for Word 365?
by Hamish McIntyre-Bhatty on Thursday December 30th 2021, 15:48
Hi there, just checking if anyone knows whether there are entries for Word 365 etc.

I couldn't find them, so I thought I should check before I make entries.

Hamish
no luck here
by Bernd Butscheidt on Wednesday August 4th 2021, 4:07
Tried two version of Office today (ProPlus and 2019VL) and every installer asks for Windows10.
Changing to windows10 with winecfg makes installation fail as well.
Succesful installation on Debian Buster
by Edgar on Saturday May 1st 2021, 15:25
I just want to add, to the test data of Rahul, that login and activation worked for me, on Wine Development 6.6., but this was after four cycles of 'open app (failing on this)/reboot computer' (at some point it showed a little error window but I can't remember what was in it), and that's all. Everything else was just as Rahul described.
RE: Succesful installation on Debian Buster
by Edgar on Saturday May 1st 2021, 15:42
My exe installer name is setup.X86.es-es_O365ProPlusRetail_XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX_TX_DB_b_32_.exe so I'm assuming the year is 2016 as well.
RE: Succesful installation on Debian Buster
by Edgar on Saturday May 1st 2021, 21:50
Well it seems like my installer is newer, I can tell this because the icons on the screenshot are different, I mean look older, from those I saw on my installation window.
Instaleer Crashed
by ETCHDEV on Tuesday March 23rd 2021, 1:28
I followed the Installation process but the installer crashes (BTW it's a iso cd image). Here the logs from terminal
arjun@arjun-Lenovo-V15-ADA:/media/arjun/16.0.13127.20616$ 00dc:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00dc:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00dc:fixme:ntdll:EtwEventRegister ({8736922d-e8b2-47eb-8564-23e77e728cf3}, 0041D3C5, 0091FC88, 0091FC88) stub.
00dc:fixme:ntdll:EtwEventSetInformation (deadbeef, 0, 00000000, 0) stub
00dc:fixme:ole:CoInitializeSecurity 00000000, -1, 00000000, 00000000, 0, 3, 00000000, 0, 00000000 stub
00dc:fixme:ntdll:EtwEventRegister ({a019725f-cff1-47e8-8c9e-8fe2635b6388}, 0041D3C5, 0091FE48, 0091FE48) stub.
00dc:fixme:ntdll:EtwEventRegister ({f50d9315-e17e-43c1-8370-3edf6cc057be}, 004E3CB9, 0091FCC0, 0091FCC0) stub.
00dc:fixme:ntdll:EtwEventSetInformation (deadbeef, 0, 00000000, 0) stub
00dc:fixme:ntdll:EtwEventRegister ({e6aec961-a5e0-5560-a860-15edd6b70f6c}, 00401000, 0091FD60, 0091FD78) stub.
00dc:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 008DA7D9, 56) stub
00dc:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
00dc:fixme:ver:GetCurrentPackageId (0031F824 00000000): stub
00dc:fixme:msi:open_userdata_comp_key only looking at the current user
00dc:fixme:nls:get_dummy_preferred_ui_language (0x8 0031F374 00000000 0031F370) returning a dummy value (current locale)
00dc:fixme:nls:get_dummy_preferred_ui_language (0x8 0031F374 00940150 0031F370) returning a dummy value (current locale)
00dc:fixme:ntdll:EtwEventRegister ({559a5658-8100-4d84-b756-0a47a476280c}, 0041D3C5, 0091FD20, 0091FD20) stub.
00dc:fixme:ntdll:EtwEventRegister ({02fd33df-f746-4a10-93a0-2bc6273bc8e4}, 0041D3C5, 00921FB8, 00940C08) stub.
00e0:fixme:xmllite:xmlreader_SetProperty Unimplemented property (18)
00e0: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.
00dc:fixme:sync:SetWaitableTimerEx (0000009C, 0031F880, 0, 00000000, 00000000, 00000000, 10616070) semi-stub
00e8:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
00e8:fixme:powrprof:PowerDeterminePlatformRole stub
0058:fixme:mountmgr:query_property Unsupported property 0x7
00e8:fixme:ntdll:NtQuerySystemInformation (0x000000c9,0x1e7f758,0x00000004,(nil)) stub
00e8:fixme:bcrypt:BCryptCreateHash ignoring object buffer
00dc:fixme:ver:GetFileVersionInfoSizeExW flags 0x2 ignored
00dc:fixme:ver:GetFileVersionInfoExW flags 0x2 ignored
00dc:fixme:ver:GetFileVersionInfoSizeExW flags 0x2 ignored
00dc:fixme:ver:GetFileVersionInfoExW flags 0x2 ignored
00dc:fixme:exec:SHELL_execute flags ignored: 0x00000100
00f8:fixme:powershell:wmain stub: L"C:\\windows\\system32\\WindowsPowershell\\v1.0\\powershell.exe" L"-NoProfile" L"$package = Get-AppxPackage Microsoft.Office.Desktop -allUsers; if (!$package) { $Error.Add(\"Package is not installed\")}; if ($error.Count -eq 0) { Out-File -FilePath 'C:\\users\\arjun\\Temp\\Office.ValidateResult.scratch' -InputObject '1' -Encoding ascii; } else { Out-File -FilePath 'C:"...
0100:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0100:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00dc:fixme:wintrust:SOFTPUB_VerifyImageHash Cannot verify hash for pszObjId="1.3.6.1.4.1.311.2.1.28"
00dc:fixme:exec:SHELL_execute flags ignored: 0x00000100
0110:fixme:powershell:wmain stub: L"C:\\windows\\system32\\WindowsPowershell\\v1.0\\powershell.exe" L"-NoProfile" L"$package = Get-AppxPackage Microsoft.Office.Desktop -allUsers; if (!$package) { $Error.Add(\"Package is not installed\")}; if ($error.Count -eq 0) { Out-File -FilePath 'C:\\users\\arjun\\Temp\\Office.ValidateResult.scratch' -InputObject '1' -Encoding ascii; } else { Out-File -FilePath 'C:"...
0118:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
0118:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
00dc:fixme:wintrust:SOFTPUB_VerifyImageHash Cannot verify hash for pszObjId="1.3.6.1.4.1.311.2.1.28"
00dc:fixme:wintrust:SOFTPUB_VerifyImageHash Cannot verify hash for pszObjId=(null)
012c:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
012c:fixme:font:get_name_record_codepage encoding 20 not handled, platform 1.
012c:fixme:ntdll:EtwEventRegister ({8736922d-e8b2-47eb-8564-23e77e728cf3}, 005E972B, 00A3E558, 00A3E558) stub.
012c:fixme:ntdll:EtwEventSetInformation (deadbeef, 0, 00000000, 0) stub
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031FDE4 1 C) semi-stub
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031FDEC 1 C) semi-stub
012c:fixme:ole:CoInitializeSecurity 00000000, -1, 00000000, 00000000, 0, 3, 00000000, 0, 00000000 stub
012c:fixme:ntdll:EtwEventRegister ({a019725f-cff1-47e8-8c9e-8fe2635b6388}, 005E972B, 00A40B28, 00A40B28) stub.
012c:fixme:ntdll:EtwEventRegister ({f50d9315-e17e-43c1-8370-3edf6cc057be}, 00685F9E, 00A40AF0, 00A40AF0) stub.
012c:fixme:ntdll:EtwEventSetInformation (deadbeef, 0, 00000000, 0) stub
012c:fixme:ntdll:EtwEventRegister ({e6aec961-a5e0-5560-a860-15edd6b70f6c}, 0048EEAE, 00A3E520, 00A3E538) stub.
012c:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 00924CC9, 56) stub
012c:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
012c:fixme:ver:GetCurrentPackageId (0031F578 00000000): stub
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031EFDC 1 C) semi-stub
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031EE8C 1 C) semi-stub
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031EDFC 1 C) semi-stub
012c:fixme:msi:open_userdata_comp_key only looking at the current user
012c:fixme:nls:get_dummy_preferred_ui_language (0x8 0031F178 00000000 0031F174) returning a dummy value (current locale)
012c:fixme:nls:get_dummy_preferred_ui_language (0x8 0031F178 00A68660 0031F174) returning a dummy value (current locale)
012c:fixme:ntdll:EtwEventRegister ({559a5658-8100-4d84-b756-0a47a476280c}, 005E972B, 00A40AB8, 00A40AB8) stub.
012c:fixme:ntdll:EtwEventRegister ({02fd33df-f746-4a10-93a0-2bc6273bc8e4}, 005E972B, 00A5CD20, 00A73608) stub.
012c:fixme:sync:SetWaitableTimerEx (0000009C, 0031F5E8, 0, 00000000, 00000000, 00000000, 10615320) semi-stub
0130:fixme:xmllite:xmlreader_SetProperty Unimplemented property (18)
0130: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.
0130:fixme:ver:GetFileVersionInfoSizeExW flags 0x2 ignored
0130:fixme:ver:GetFileVersionInfoExW flags 0x2 ignored
0130:fixme:ver:GetFileVersionInfoSizeExW flags 0x2 ignored
0130:fixme:ver:GetFileVersionInfoExW flags 0x2 ignored
012c:fixme:reg:NtSetInformationKey (0x128,0x00000002,0x31ec44,0x00000004) stub
012c:fixme:rpc:RpcServerRegisterIf3 Unsupported SecurityDescriptor argument.
0138:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
014c:fixme:ntdll:EtwEventRegister ({8736922d-e8b2-47eb-8564-23e77e728cf3}, 02F809F1, 030B1220, 030B1220) stub.
014c:fixme:ntdll:EtwEventSetInformation (deadbeef, 0, 00000000, 0) stub
0138:fixme:powrprof:PowerDeterminePlatformRole stub
0058:fixme:mountmgr:query_property Unsupported property 0x7
014c:fixme:ver:GetCurrentPackageId (02F1E920 00000000): stub
014c:fixme:nls:get_dummy_preferred_ui_language (0x8 02F1E860 00000000 02F1E85C) returning a dummy value (current locale)
0138:fixme:ntdll:NtQuerySystemInformation (0x000000c9,0x1f2f638,0x00000004,(nil)) stub
014c:fixme:nls:get_dummy_preferred_ui_language (0x8 02F1E860 030BAD40 02F1E85C) returning a dummy value (current locale)
0138:fixme:bcrypt:BCryptCreateHash ignoring object buffer
006c:fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETTASKBARPOS, hwnd=00000000): stub
015c:fixme:rpc:RpcBindingSetAuthInfoExW unsupported AuthnSvc 10
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031F0EC 1 C) semi-stub
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031EF6C 1 C) semi-stub
0164:fixme:combase:RoGetActivationFactory (L"Windows.Networking.Connectivity.NetworkInformation", {5074f851-950d-4165-9c15-365619481eea}, 00E7F91C): semi-stub
0164:err:combase:RoGetActivationFactory Failed to find library for L"Windows.Networking.Connectivity.NetworkInformation"
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031EC6C 1 C) semi-stub
012c:fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0031ECCC 1 C) semi-stub
012c:fixme:file:NtLockFile I/O completion on lock not implemented yet
012c:fixme:combase:RoGetActivationFactory (L"Windows.Security.Authentication.OnlineId.OnlineIdSystemAuthenticator", {85047792-f634-41e3-96a4-5164e902c740}, 0031F028): semi-stub
012c:err:combase:RoGetActivationFactory Failed to find library for L"Windows.Security.Authentication.OnlineId.OnlineIdSystemAuthenticator"
012c:fixme:reg:NtQueryLicenseValue License key L"Microsoft-Windows-Container-License-Mode" not found
00e4:fixme:win:RegisterPowerSettingNotification (0001004C,{245d8541-3943-4422-b025-13a784f679b7},0): stub
00e4:fixme:win:RegisterPowerSettingNotification (0001004C,{5d3e9a59-e9d5-4b00-a6bd-ff34ff516548},0): stub
00e4:fixme:win:RegisterPowerSettingNotification (0001004C,{a7ad8041-b45a-4cae-87a3-eecbb468a9e1},0): stub
00e4:fixme:win:RegisterPowerSettingNotification (0001004C,{98a7f580-01f7-48aa-9c0f-44352c29e5c0},0): stub
00e4:fixme:win:RegisterPowerSettingNotification (0001004C,{02731015-4510-4526-99e6-e5a17ebd1aea},0): stub
00e4:fixme:win:RegisterPowerSettingNotification (0001004C,{3c0f4548-c03f-4c4d-b9f2-237ede686376},0): stub
012c:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
012c:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
012c:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
012c:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
012c:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
0174:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
00e4:fixme:win:UnregisterPowerSettingNotification (DEADBEEF): stub
00e4:fixme:win:UnregisterPowerSettingNotification (DEADBEEF): stub
00e4:fixme:win:UnregisterPowerSettingNotification (DEADBEEF): stub
00e4:fixme:win:UnregisterPowerSettingNotification (DEADBEEF): stub
00e4:fixme:win:UnregisterPowerSettingNotification (DEADBEEF): stub
00e4:fixme:win:UnregisterPowerSettingNotification (DEADBEEF): stub
00dc:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
00dc:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
00dc:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
00dc:fixme:ntdll:EtwEventUnregister (deadbeef) stub.
00dc:fixme:kernelbase:AppPolicyGetProcessTerminationMethod FFFFFFFA, 0031FEAC

arjun@arjun-Lenovo-V15-ADA:/media/arjun/16.0.13127.20616$

I am using Ubuntu 20.04 LTS with wine 6.0
"Is your internet working? Do you have enough free space on your main hard drive?"
by jaap aarts on Monday September 21st 2020, 5:25
I am getting this error every time I try to execute the download command.
This is very strange sine I do have enough space left, and it downloaded the first 2GiB perfectly fine.

I tried in win7/10 both failed and same with win32 vs win64
RE:
by Rahul on Sunday September 27th 2020, 17:54
Okay first make a fresh 32bit wine prefix. Using winetricks open the prefix then go into uninstaller. After that hit add program and browse for the exe. (I recommend putting it into documents since that is linked to the windows file system.
Excel Graph Issues
by Erik Steiner on Monday August 24th 2020, 3:25
I managed to install 365 Home Premium. Currently I am not sure if it is activated or not. However I noticed a very annoying visual issue in Excel. If I create a graph it is at first visible. If I move the window of that graph, the content of the graph becomes invisible, like there is a white box above that window. Do you know this kind of bug, or how I can fix it?
Office 2019
by mark007 on Thursday March 12th 2020, 18:01
Keep in mind that Office365 is updated to provide Office 2019 applications thus installers downloaded from office.com now will no longer work with this method.
RE: Office 2019
by Jorge on Monday March 30th 2020, 20:35
Is there any way to install office 2019 or to download the old office? I am struggling to make this work
RE: Office 2019
by Ruben Bekaert on Friday April 3rd 2020, 12:06
I got it working with the newest version, posted test results with the workarounds. Once that's been reviewed you'll be able to see it.
However, the major remaining problem is that you can't sign in and so unless you crack the software somehow you'll only be able to use it for five days :/
My Experience with wine-4.18
by Ishak BELAHMAR on Sunday October 20th 2019, 4:59
First, I installed these packages : winetricks libncurses6:i386 libncurses6:amd64 ttf-ms-fonts samba

I ran :
export WINEPREFIX=/home/xxxx/office365
winetricks msxml3
winetricks msxml6

I tried to install preactivated O365 with wine 4.1 => Installation fails.

I tried the installer with wine-4.18 => Installation succeeded

No application works at this stage (missing dlls).

cp -iv "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Common Files/Microsoft Shared/ClickToRun/AppvIsvSubsystems32.dll" "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Microsoft Office/root/Client/AppvIsvSubsystems32.dll"
cp -iv "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Common Files/Microsoft Shared/ClickToRun/C2R32.dll" "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Microsoft Office/root/Client/C2R32.dll"

==> Word starts, but hangs up after loader, tried the Direct2D fix

[HKEY_CURRENT_USER\Software\Wine\Direct2D]
"max_version_factory"=dword:00000000

==> Word now starts and running properly (didn't test all features) ; Outlook starts but message view, new message features dont work

==> winetricks riched30 solve outlook issues, and excel works too

I hope it helps
RE: My Experience with wine-4.18
by Ahmed Mohamed on Monday November 18th 2019, 9:42
I want to ask you about
export WINEPREFIX=/home/xxxx/office365
I am very new to linux
How did you do this ?
RE: My Experience with wine-4.18
by Oleg on Thursday November 24th 2022, 3:17
Using: wine-7.21

Had similar issue about missing DDLs and I've noticed that `wine EXCEL.exe` wants them in a different case

```
0024:err:module:import_dll Library AppVIsvSubsystems32.dll (which is needed by L"C:\\Program Files\\Microsoft Office\\root\\Office16\\EXCEL.EXE") not found

```

Note this: App_V_IsvSubsystems32.dll vs App_v_IsvSubsystems32.dll

Later
```
0024:err:module:import_dll Library c2r32.dll (which is needed by L"C:\\Program Files\\Microsoft Office\\root\\Office16\\AppVIsvSubsystems32.dll") not found
0024:err:module:import_dll Library AppVIsvSubsystems32.dll (which is needed by L"C:\\Program Files\\Microsoft Office\\root\\Office16\\EXCEL.EXE") not found
```

Note this: c2r32.dll vs C2R32.dll
RE: My Experience with wine-4.18
by Bartosz Kosiorek on Thursday November 24th 2022, 5:11
Please try to copy this dll library with changed case (AppVIsVSubsystems32.dll to AppVIsvSubsystems32.
Does it help?
RE: My Experience with wine-4.18
by Oleg on Friday November 25th 2022, 3:06
Yes, that's what I did.
Excel DDE Failure
by Akash on Monday July 1st 2019, 12:12
Following the latest instructions with the latest wine version (4.11-1), everything runs beautifully. Word and Powerpoint run flawlessly so far, but whenever I close a file in Excel, I get a small error window that says "DDE failure." And then, Excel sequentially tries to open my file with a number of different extensions tacked on. For example, "test.xlsx.COM" then "test.xlsx.EXE" then ".BAT", ".CMD", ".JS", ".JSE", ".WSF" etc. And of course, since none of those files exist, Excel just opens with an error each time. This only occurs when I launch Excel by double-clicking a .xlsx file in the GNOME file browser. This seems to suggest it's something related to the MIME entry wine creates for it. Anyone have a fix for this?
RE: Excel DDE Failure
by Bartosz Kosiorek on Wednesday July 3rd 2019, 2:14
Please submit bug report for that issue.
RE: Excel DDE Failure
by Akash on Wednesday July 31st 2019, 15:50
Done. I think I've found a workaround as well. Removing "/ProgIDOpen Excel.Sheet.12" from the Exec line of ~/.local/share/applications/wine-extension-xlsx.desktop seems to fix it.
RE: Excel DDE Failure
by borgespauline557 on Tuesday December 17th 2019, 3:11
Even I am also facing this login issue of DDE issue. It is sorted out now. I have another query regarding Outlook. Whenever I am going ahead and trying to create an outlook profile and I am trying to connect to a Microsoft office 365, I am getting an error "trying to connect". I have checked all the settings and gone through the configurations office 365 login.supportprop58.com/office-setup/how-to-login-microsoft-office/
RE: Excel DDE Failure
by Bob on Friday April 3rd 2020, 8:39
Can you elaborate on what you mean by "latest instructions"? I don't see anything under how to/notes. If there's a specific post you followed can you point me to that one?
RE: Excel DDE Failure
by Akash on Friday April 3rd 2020, 12:07
It was these instructions: appdb.winehq.org/objectManager.php?sClass=version&iId=35527&iTestingId=101976&bShowAll=true

Unfortunately, it seems something's changed with the more recent Office 365 installers, so I haven't been able to successfully reinstall it since.
Prerequisites
by Piotr Stępień on Thursday June 20th 2019, 17:01
Please add lib32-libxinerama and lib32-libxcomposite as prerequisites to running MS Office 365. This fixed the black windows issue for my machine (after trying the workarounds):
Operating System: Manjaro Linux
KDE Plasma Version: 5.15.5
KDE Frameworks Version: 5.59.0
Qt Version: 5.12.3
Kernel Version: 5.1.8-1-MANJARO
OS Type: 64-bit
Processors: 12 × AMD Ryzen 5 1600 Six-Core Processor
Memory: 31,4 GiB of RAM
Proprietary Nvidia drivers

by Luuk van Baal on Sunday May 12th 2019, 19:07
Rerunning the installer and letting it finish a second time (it checks the already downloaded data, doesn't re-download) activated the software for me with the personal installer from office.com. Still unable to login though which would be nice for cloud sharing purposes.
RE:
by mittaus on Sunday August 11th 2019, 19:16
The error is because the login screen in office 365 is an instance of internet explorer.
And the version of internet explorer in wine is very old, so it has no characteristics that the login needs

log:
0009:fixme:jscript:JScriptProperty_SetProperty Unimplemented property 70000002 about:config
0009:fixme:mshtml:HTMLWindow2_put_onerror (0x1e797fa0)->(0x33e380 {VT_DISPATCH: 0x1edbeb70}) semi-stub
Sign-in to Office 365
by Tiago Martins on Monday March 18th 2019, 10:15
Has anyone successfully identified why Sign-in to Office 365 doesn't work? I installed from an installer that I had previous-ly downloaded and it worked fine but it didn't pre-activate. Do I need to scrap everything and download a new installer and install again or is there any workaround to sign-in to my office 365 account?
Wont install
by Max H on Wednesday February 20th 2019, 11:29
Installing used to run for a while before crashing but now it just crashes. Here is error log:

Unhandled exception: unimplemented function ole32.dll.CoEnableCallCancellation called in 32-bit code (0x7bc79461).
Register dump:
CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
EIP:7bc79461 ESP:021fda98 EBP:021fdb0c EFLAGS:00000212( - -- I -A- - )
EAX:009212c4 EBX:7bd23000 ECX:00000014 EDX:00a70000
ESI:021fdab0 EDI:00a7e018
Stack dump:
0x021fda98: 009e0000 00000002 00a7a098 021fdb6c
0x021fdaa8: 009e0014 14f88200 80000100 00000001
0x021fdab8: 00000000 7bc79461 00000002 0091eda0
0x021fdac8: 009212c4 7e051de0 00a7e0c0 7bc755ae
0x021fdad8: 021fdaf8 7e051de0 009e0000 00000000
0x021fdae8: 00000014 00a70000 009e0000 00a6cdf8
Backtrace:
=>0 0x7bc79461 call_dll_entry_point+0x941() in ntdll (0x021fdb0c)
1 0x0034000f (0x021fdb34)
2 0x006b9147 EntryPoint+0xffffffff() in officeclicktorun (0x021fdbec)
3 0x006bd5ce EntryPoint+0xffffffff() in officeclicktorun (0x021fdda0)
4 0x006bd27b EntryPoint+0xffffffff() in officeclicktorun (0x021fdf6c)
5 0x006bd232 EntryPoint+0xffffffff() in officeclicktorun (0x021fdfc4)
6 0x006bc0f7 EntryPoint+0xffffffff() in officeclicktorun (0x021fe154)
7 0x006bda7e EntryPoint+0xffffffff() in officeclicktorun (0x021fe31c)
8 0x006bdc03 EntryPoint+0xffffffff() in officeclicktorun (0x021fe4e4)
9 0x006bda1c EntryPoint+0xffffffff() in officeclicktorun (0x021fe534)
10 0x006bd7f2 EntryPoint+0xffffffff() in officeclicktorun (0x021fe5b8)
11 0x006c3c23 EntryPoint+0xffffffff() in officeclicktorun (0x021fe754)
12 0x006d1dde EntryPoint+0xffffffff() in officeclicktorun (0x021fe9a4)
13 0x00664811 EntryPoint+0xffffffff() in officeclicktorun (0x021feb7c)
14 0x006647a8 EntryPoint+0xffffffff() in officeclicktorun (0x021feba4)
15 0x006646d1 EntryPoint+0xffffffff() in officeclicktorun (0x021fec24)
16 0x0069a9ad EntryPoint+0xffffffff() in officeclicktorun (0x021fee0c)
17 0x0066a205 EntryPoint+0xffffffff() in officeclicktorun (0x021fef2c)
18 0x0066a2ec EntryPoint+0xffffffff() in officeclicktorun (0x021ff0f4)
19 0x00669cb3 EntryPoint+0xffffffff() in officeclicktorun (0x021ff5c8)
20 0x005d0bfe EntryPoint+0xffffffff() in officeclicktorun (0x021ff9e4)
21 0x005e214a EntryPoint+0xffffffff() in officeclicktorun (0x021ffe88)
22 0x005e3d5c EntryPoint+0xffffffff() in officeclicktorun (0x021ffeb8)
23 0x005e1d09 EntryPoint+0xffffffff() in officeclicktorun (0x021ffedc)
24 0x7bcadd14 call_thread_func_wrapper+0xb() in ntdll (0x021ffeec)
25 0x7bcb16e1 RtlCaptureStackBackTrace+0x2a0() in ntdll (0x021fffdc)
26 0x7bcadd06 call_thread_exit_func+0x31() in ntdll (0x021fffec)
0x7bc79461 call_dll_entry_point+0x941 in ntdll: addl $12,%esp
Modules:
Module Address Debug info Name (157 modules)
PE 400000- 9dc000 Export officeclicktorun
PE 10000000-1002b000 Deferred apiclient
PE 58800000-58946000 Deferred msxml6
ELF 7b400000-7b807000 Deferred kernel32
\-PE 7b420000-7b807000 \ kernel32
ELF 7bc00000-7bd41000 Dwarf ntdll
\-PE 7bc40000-7bd41000 \ ntdll
ELF 7c000000-7c005000 Deferred
ELF 7d53b000-7d551000 Deferred api-ms-win-core-localization-l1-2-1
\-PE 7d540000-7d551000 \ api-ms-win-core-localization-l1-2-1
ELF 7d551000-7d567000 Deferred api-ms-win-core-fibers-l1-1-1
\-PE 7d560000-7d567000 \ api-ms-win-core-fibers-l1-1-1
ELF 7d567000-7d57d000 Deferred api-ms-win-core-synch-l1-2-0
\-PE 7d570000-7d57d000 \ api-ms-win-core-synch-l1-2-0
ELF 7d67d000-7d6f7000 Deferred libgmp.so.10
ELF 7d6f7000-7d736000 Deferred libnettle.so.6
ELF 7d75d000-7d790000 Deferred libhogweed.so.4
ELF 7d790000-7d7a7000 Deferred libtasn1.so.6
ELF 7d7a7000-7d92c000 Deferred libunistring.so.2
ELF 7d92c000-7d94c000 Deferred libidn2.so.0
ELF 7d94c000-7daa3000 Deferred libp11-kit.so.0
ELF 7daa3000-7dc8c000 Deferred libgnutls.so.30
ELF 7dc92000-7dcb2000 Deferred concrt140
\-PE 7dca0000-7dcb2000 \ concrt140
ELF 7dcb2000-7dcd7000 Deferred imm32
\-PE 7dcc0000-7dcd7000 \ imm32
ELF 7dcd7000-7dced000 Deferred rstrtmgr
\-PE 7dce0000-7dced000 \ rstrtmgr
ELF 7dced000-7dd03000 Deferred api-ms-win-crt-filesystem-l1-1-0
\-PE 7dcf0000-7dd03000 \ api-ms-win-crt-filesystem-l1-1-0
ELF 7dd03000-7dd19000 Deferred api-ms-win-crt-utility-l1-1-0
\-PE 7dd10000-7dd19000 \ api-ms-win-crt-utility-l1-1-0
ELF 7dd19000-7dd33000 Deferred api-ms-win-crt-math-l1-1-0
\-PE 7dd20000-7dd33000 \ api-ms-win-crt-math-l1-1-0
ELF 7dd33000-7dd49000 Deferred api-ms-win-crt-locale-l1-1-0
\-PE 7dd40000-7dd49000 \ api-ms-win-crt-locale-l1-1-0
ELF 7dd49000-7dd5f000 Deferred api-ms-win-crt-time-l1-1-0
\-PE 7dd50000-7dd5f000 \ api-ms-win-crt-time-l1-1-0
ELF 7dd5f000-7dd76000 Deferred api-ms-win-crt-convert-l1-1-0
\-PE 7dd70000-7dd76000 \ api-ms-win-crt-convert-l1-1-0
ELF 7dd76000-7dd8d000 Deferred api-ms-win-crt-string-l1-1-0
\-PE 7dd80000-7dd8d000 \ api-ms-win-crt-string-l1-1-0
ELF 7dd8d000-7dda4000 Deferred api-ms-win-crt-runtime-l1-1-0
\-PE 7dd90000-7dda4000 \ api-ms-win-crt-runtime-l1-1-0
ELF 7dda4000-7ddbb000 Deferred api-ms-win-crt-stdio-l1-1-0
\-PE 7ddb0000-7ddbb000 \ api-ms-win-crt-stdio-l1-1-0
ELF 7ddbb000-7ddd1000 Deferred api-ms-win-crt-heap-l1-1-0
\-PE 7ddc0000-7ddd1000 \ api-ms-win-crt-heap-l1-1-0
ELF 7ddd1000-7dec2000 Deferred msvcr120
\-PE 7ddf0000-7dec2000 \ msvcr120
ELF 7dec2000-7dff1000 Deferred msvcp140
\-PE 7df00000-7dff1000 \ msvcp140
ELF 7dff1000-7e0f1000 Deferred ucrtbase
\-PE 7e010000-7e0f1000 \ ucrtbase
ELF 7e0f1000-7e108000 Deferred vcruntime140
\-PE 7e100000-7e108000 \ vcruntime140
ELF 7e108000-7e17a000 Deferred setupapi
\-PE 7e110000-7e17a000 \ setupapi
ELF 7e17a000-7e193000 Deferred wtsapi32
\-PE 7e180000-7e193000 \ wtsapi32
ELF 7e193000-7e268000 Deferred crypt32
\-PE 7e1a0000-7e268000 \ crypt32
ELF 7e268000-7e29e000 Deferred wintrust
\-PE 7e270000-7e29e000 \ wintrust
ELF 7e29e000-7e2b8000 Deferred libz.so.1
ELF 7e2bd000-7e2de000 Deferred bcrypt
\-PE 7e2c0000-7e2de000 \ bcrypt
ELF 7e2de000-7e2ff000 Deferred cabinet
\-PE 7e2e0000-7e2ff000 \ cabinet
ELF 7e2ff000-7e338000 Deferred ws2_32
\-PE 7e310000-7e338000 \ ws2_32
ELF 7e338000-7e463000 Deferred oleaut32
\-PE 7e350000-7e463000 \ oleaut32
ELF 7e463000-7e4eb000 Deferred rpcrt4
\-PE 7e470000-7e4eb000 \ rpcrt4
ELF 7e4eb000-7e6fa000 Deferred user32
\-PE 7e500000-7e6fa000 \ user32
ELF 7e6fa000-7e85b000 Deferred ole32
\-PE 7e710000-7e85b000 \ ole32
ELF 7e85b000-7e875000 Deferred libresolv.so.2
ELF 7e875000-7e8a2000 Deferred iphlpapi
\-PE 7e880000-7e8a2000 \ iphlpapi
ELF 7e8a2000-7e9d5000 Deferred gdi32
\-PE 7e8b0000-7e9d5000 \ gdi32
ELF 7e9d5000-7ea52000 Deferred advapi32
\-PE 7e9e0000-7ea52000 \ advapi32
ELF 7ea52000-7ea67000 Deferred libnss_files.so.2
ELF 7ea72000-7ea8d000 Deferred version
\-PE 7ea80000-7ea8d000 \ version
ELF 7ef07000-7efda000 Deferred libm.so.6
ELF 7efe1000-7efea000 Deferred libffi.so.6
ELF 7efea000-7f000000 Deferred wow64cpu
\-PE 7eff0000-7f000000 \ wow64cpu
ELF f6002000-f6020000 Deferred libgcc_s.so.1
ELF f6020000-f6079000 Deferred libgssapi_krb5.so.2
ELF f6079000-f6105000 Deferred libpcre2-8.so.0
ELF f6105000-f6134000 Deferred libselinux.so.1
ELF f6134000-f63f0000 Deferred libcrypto.so.1.1
ELF f63f0000-f640f000 Deferred libk5crypto.so.3
ELF f640f000-f6500000 Deferred libkrb5.so.3
ELF f6608000-f660e000 Deferred libkeyutils.so.1
ELF f6634000-f664f000 Deferred kerberos
\-PE f6640000-f664f000 \ kerberos
ELF f664f000-f6681000 Deferred netapi32
\-PE f6660000-f6681000 \ netapi32
ELF f6681000-f66b7000 Deferred secur32
\-PE f6690000-f66b7000 \ secur32
ELF f66b7000-f66de000 Deferred xmllite
\-PE f66c0000-f66de000 \ xmllite
ELF f6804000-f6816000 Deferred libkrb5support.so.0
ELF f6830000-f686b000 Deferred uxtheme
\-PE f6840000-f686b000 \ uxtheme
ELF f686b000-f6896000 Deferred mpr
\-PE f6870000-f6896000 \ mpr
ELF f6896000-f6916000 Deferred wininet
\-PE f68a0000-f6916000 \ wininet
ELF f6916000-f695e000 Deferred usp10
\-PE f6920000-f695e000 \ usp10
ELF f695e000-f6a9d000 Deferred comctl32
\-PE f6970000-f6a9d000 \ comctl32
ELF f6a9d000-f6ac3000 Deferred shcore
\-PE f6aa0000-f6ac3000 \ shcore
ELF f6ac3000-f6b35000 Deferred shlwapi
\-PE f6ad0000-f6b35000 \ shlwapi
ELF f6b35000-f7520000 Deferred shell32
\-PE f6b50000-f7520000 \ shell32
ELF f7520000-f75c4000 Deferred urlmon
\-PE f7530000-f75c4000 \ urlmon
ELF f75c4000-f76fe000 Deferred msi
\-PE f75d0000-f76fe000 \ msi
ELF f76fe000-f7706000 Deferred libxfixes.so.3
ELF f7706000-f7713000 Deferred libxcursor.so.1
ELF f7715000-f771a000 Deferred libcom_err.so.2
ELF f771a000-f7737000 Deferred aclui
\-PE f7720000-f7737000 \ aclui
ELF f77b0000-f77ba000 Deferred libuuid.so.1
ELF f77ba000-f77f5000 Deferred libexpat.so.1
ELF f77f5000-f7842000 Deferred libfontconfig.so.1
ELF f7842000-f7880000 Deferred libpng16.so.16
ELF f7880000-f7893000 Deferred libbz2.so.1
ELF f7893000-f7958000 Deferred libfreetype.so.6
ELF f7958000-f796d000 Deferred libxi.so.6
ELF f796d000-f7972000 Deferred libxcomposite.so.1
ELF f7972000-f7981000 Deferred libxrandr.so.2
ELF f7981000-f798f000 Deferred libxrender.so.1
ELF f798f000-f7997000 Deferred libxxf86vm.so.1
ELF f7997000-f799c000 Deferred libxinerama.so.1
ELF f799c000-f79a2000 Deferred libxau.so.6
ELF f79a2000-f79d1000 Deferred libxcb.so.1
ELF f79d1000-f7b28000 Deferred libx11.so.6
ELF f7b28000-f7b3e000 Deferred libxext.so.6
ELF f7b3e000-f7bd2000 Deferred winex11
\-PE f7b50000-f7bd2000 \ winex11
ELF f7bd4000-f7bda000 Deferred libdl.so.2
ELF f7bda000-f7d84000 Deferred libc.so.6
ELF f7d84000-f7da6000 Deferred libpthread.so.0
ELF f7fa4000-f7fcf000 Deferred ld-linux.so.2
Threads:
process tid prio (all id:s are in hex)
00000008 Setup.Def.en-us_O365ProPlusRetail_01288478-dfc6-473d-8da0-da5360780c8c_TX_PR_Platform_def_b_64_.exe
[Z:\home\maxh\Downloads\Setup.Def.en-us_O365ProPlusRetail_01288478-dfc6-473d-8da0-da5360780c8c_TX_PR_Platform_def_b_64_.exe]
00000058 0
00000056 0
00000055 0
00000054 0
00000053 0
00000052 0
00000050 0
00000009 0
0000000e services.exe
[C:\windows\system32\services.exe]
00000045 0
0000003c 0
00000030 0
0000002b 0
00000024 0
0000001c 0
00000012 0
0000000f 0
00000010 explorer.exe
[C:\windows\system32\explorer.exe /desktop]
00000017 0
00000016 0
00000015 0
00000011 0
00000013 OfficeClickToRun.exe
["C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" /service]
0000003d 0
0000003b 0
00000039 0
00000027 0
00000023 0
00000020 0
0000001f 0
0000001b 0
0000001a 0
00000019 0
00000018 0
00000014 0
00000021 winedevice.exe
[C:\windows\system32\winedevice.exe]
00000028 0
00000026 0
00000025 0
00000022 0
00000029 plugplay.exe
[C:\windows\system32\plugplay.exe]
0000002d 0
0000002c 0
0000002a 0
0000002e svchost.exe
[C:\windows\system32\svchost.exe -k netsvcs]
0000004f 0
0000004e 0
00000033 0
00000032 0
00000031 0
0000002f 0
00000034 winedevice.exe
[C:\windows\system32\winedevice.exe]
00000042 0
00000041 0
0000003f 0
00000035 0
00000043 rpcss.exe
[C:\windows\system32\rpcss.exe]
00000049 0
00000048 0
00000047 0
00000046 0
00000044 0
00000061 (D) C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeClickToRun.exe
[OfficeClickToRun.exe deliverymechanism=7ffbc6bf-bc32-4f92-8982-f9dd17fd3114 productreleaseid=O365ProPlusRetail platform=x86 o365proplusretail=01288478-dfc6-473d-8da0-da5360780c8c tx=PR culture=en-us lcid=1033 b=64 prereleasebuild=4419 defaultplatform=False forcecentcheck= storeid= productstoadd=O365ProPlusRetail.16_en-us_x-none scenario=CLIENTUPDATE O365ProPlusRetail.excludedapps=groove updatesenabled=True cdnbaseurl=officecdn.microsoft.com/pr/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114 version=16.0.10730.20280 mediatype=CDN baseurl=officecdn.microsoft.com/PR/7ffbc6bf-bc32-4f92-8982-f9dd17fd3114 flt.useexptransportinplacepl=unknown flt.useoutlookshareaddon=unknown flt.useofficehelperaddon=unknown flt.useteamsaddon=unknown]
0000006b 0
Only Word crashes: Manjaro 4.19 Wine 4.0rc6
by Emin Yagmahan on Friday February 8th 2019, 17:14
Manjaro 4.19 Wine 4.0rc6:

Excel and PowerPoint work wonderfully. Only Word crashes on startup. Unfortunately I can't find a solution.

Important: Copy missing DDLs into the path Program Files/Microsoft Office/root/Client.

I wonder why all applications start, but no Word? Is there a workaround?
RE: Only Word crashes: Manjaro 4.19 Wine 4.0rc6
by Penim on Monday February 18th 2019, 12:37
Same thing here mate, did you find any fix? Do newer wine versions have the fix?
RE: Only Word crashes: Manjaro 4.19 Wine 4.0rc6
by Emin Yagmahan on Wednesday March 6th 2019, 3:07
Today I was very surprised when I accidentally opened a docx document and Word did not crash this time. If you start Word directly without starting an application, the program crashes. But if you select a docx file with "Open with..." then Word works.
page fault
by Henrique Ferrolho on Wednesday January 23rd 2019, 15:40
Ubuntu 18.10, Wine 4.0

Following this guide allows installation without any problem. However, when launching any of the programs, I cannot even see the loading box /splash screen.

The error is:
`wine: Unhandled page fault on read access to 0x6809f914 at address 0x7bc40e49 (thread 0009), starting debugger...
0009:err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7bc40e49`
RE: page fault
by Debanjan Basu on Saturday August 10th 2019, 11:47
I am getting the same issue with my Wine installation. Could you ever get around this issue ?
Installer Works Consistently - Programs Crash on Start
by Tommy Vandermolen on Thursday December 13th 2018, 19:16
I can get the installer to run consistently on multiple versions of Wine. When I start any of the installed programs though, the loading box displays then crashes.

For future reference, here's what makes the installer work for me.

Computer:
- Linux Mint Cinnamon 19.1 beta
- Kernel 4.15.0-42-generic
- Intel i3-4030U 64 bit (using win32 WINEPREFIX though)

Wine Install:
- Tried wine-stable 3.0.4 and wine-devel 4.0-rc1
- The Wine packages included with the distro didn't seem to work, so I followed these instructions to install from WineHQ: wiki.winehq.org/Ubuntu

Then, I followed the instructions above, with the following exceptions:
- (Minimum software requirements) - I was able to install winetricks, samba, and smbclient, but most of the others don't seem to be available on apt. The installer worked anyway

- (step #5) - The installer consistently crashed on start, until I switched the 3 packages (gdiplus, msxml6, and riched20) to "native", based on step 9 here...
askubuntu.com/questions/674692/installing-office-2010-on-ubuntu-15-04-using-wine/674693#674693

- I also (apt-get) installed winbind and some mesa packages, based on the previous guide

- On top of that, I ran winetricks ie6 windowscodecs, based on...
blog.z-proj.com/microsoft-office-2010-professional-pro-on-wine-1-6/

Results:
- With wine 3.0.4: install succeeds, but all the installed programs crash quickly on start
- With wine 4.0-rc1: install succeeds, and starting a program displays the Office loading popup before crashing. With all of them, this line shows up in the trace...
"=>0 0x7b43e03c GetFirmwareEnvironmentVariableW+0x13c() in kernel32 (0x0033b768)"

Well, that's what I've got. Let me know if you get any further.
Not Working // Ubuntu 18.04.1 LTS // Wine 3.0.4
by Leonardo Totaro on Tuesday December 11th 2018, 12:55
Installation crashes. Followed every step until step 3 where the setup*.exe crashes

pastebin: pastebin.com/yYCPZAN8
Errors
by CodeExecution on Friday November 16th 2018, 2:15
I installed Office 365 successfully on Ubuntu 18.10, but when I tried to run it, I got this:

wine: Unhandled page fault on read access to 0x83d0b4a4 at address 0x7bc3fc79 (thread 0009), starting debugger...
0009:err:seh:raise_exception Unhandled exception code c0000005 flags 0 addr 0x7bc3fc79

I am using Wine 3.0.3.
RE: Errors
by CodeExecution on Sunday November 18th 2018, 3:10
Why hasn't anyone replied yet?

I tried upgrading to wine-devel and reinstalling Office, but now it hangs at a random percentage during installation.
RE: Errors
by CodeExecution on Thursday November 22nd 2018, 11:08
Someone please reply!
dll copy for newer revisions
by Johan on Saturday September 1st 2018, 16:03
Had to copy two dlls to Program Files/Microsoft Office/root/Client instead of Program Files/Microsoft Office/root/Office16/ to solve a imidiate crash, it locks

cp -iv "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Common Files/Microsoft Shared/ClickToRun/AppvIsvSubsystems32.dll" "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Microsoft Office/root/Client/AppvIsvSubsystems32.dll"
cp -iv "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Common Files/Microsoft Shared/ClickToRun/C2R32.dll" "${WINEPREFIX:-~/.wine}/drive_c/Program Files/Microsoft Office/root/Client/C2R32.dll"
Locks later on while starting word, powerpoint, etc.
Right Click Crashing + Popup Views
by Nicholai Mitchko on Wednesday July 25th 2018, 10:14
Has anyone mitigated the issue with right click crashes when the spell-check is initiated?

Also, I am running into an issue where popovers (such as selecting fonts and colors) fail to display.

I am using all three workarounds described in the post:

csmt
max_version_factory
MaxGLVersion
Additional install step
by Jules Bertholet on Sunday June 24th 2018, 14:10
To get Office to not show a black screen, I also had to install "Visual C++ redistributable for Visual Studio 2015" by running "winetricks vcrun2015".
"AppVIsvSubsystems32.dll" failed to initialize, aborting
by Marcel Robitaille on Sunday June 10th 2018, 10:23
I followed the instructions exactly. Every time I try to run a program with `wine .msoffice/drive_c/Program\ Files/Microsoft\ Office/root/Office16/POWERPNT.EXE`, I get errors like the following:
```
0009:err:module:attach_dlls "AppVIsvSubsystems32.dll" failed to initialize, aborting
0009:err:module:attach_dlls Initializing dlls for L"Z:\\home\\marcel\\.msoffice\\drive_c\\Program Files\\Microsoft Office\\root\\Office16\\POWERPNT.EXE" failed, status c0000142
```
Full logs [here](pastebin.com/7LP3C3UP)

I am using wine staging 3.9 on arch linux.
RE:
by Rosanne on Sunday June 10th 2018, 12:34
RE:
by Corey Ducharme on Wednesday July 11th 2018, 14:29
I can confirm. I was having the same issue with wine 3.11. Following the advice in the post to downgrade to wine 3.7 solved the issue.
Couldn't get it to work.
by Otavio David on Tuesday May 29th 2018, 16:53
I've followed the steps closely but when I boot up any office programs they freeze and crash.
here is the crash log: pastebin.com/pAdr7dCH
Working as described on Xubuntu 16.04
by Enrico De Gaudenzi on Sunday May 13th 2018, 13:25
Manged to get it working as described in the guide, using Play On Linux (POL), Xubuntu 16 64bit, Wine 3.7, 32bit prefix.

Installation is a bit tricky but works pretty fine, exactly as described in the guide.

There are anyway a couple of possible fix/caveats to pay attention for:

"6. Ensure the Wine Windows version is still Windows 7"
Actually, pay attention to this at every step. It randomly changes back to Windows XP or Windows 2000, silently blocking you from proceeding with the installation.

"7. Install Office 365 Pro Plus 32-bit"
Ensure that you have removed the installation status from your online office365 account before each new office installations (portal.office.com > my account > installation status). At the moment, you won't be able to sign-in from the wine installed office, so you won't be able to validate it.

"9. Copy missing DLLs"
Trying to make the sign-in working, office is also asking for elscore.dll (ELSCore.dll version 6.xxx, manually rename to elscore.dll). Well, it won't work anyway, but at least is an error less.

"Registry workarounds for black screen/graphic issues"
The only working for me was the first:
[HKEY_CURRENT_USER\Software\Wine\Direct2D]
"max_version_factory"=dword:00000000

Hope to have been of any help to someone. As soon as something new will be discovered, will report here!
RE: Working as described on Xubuntu 16.04
by Krzysztof Nowicki on Monday June 25th 2018, 5:36
According to my quick investigation sign-in does not work due to missing implementation of Browser Helper Objects (BHO).

These lines appear in the console when I type my e-mail address and click the "Next" button:

0009:fixme:ieframe:WBOleCommandTarget_Exec (0x5b5b9c0)->((null) 29 2 0x33f428 {VT_I4: 1} (nil))
0009:fixme:ieframe:WBOleCommandTarget_Exec (0x5b5b9c0)->((null) 29 2 0x33f428 {VT_I4: 0} (nil))
0009:fixme:ieframe:WBOleCommandTarget_Exec (0x5b5b9c0)->((null) 21 2 (null) (nil))
Onenote
by poly on Wednesday April 18th 2018, 19:36
Does anyone know if this can work? It says that it doesn't work outright in the test results but I've heard that it can be fixed.
How do you actually start office apps after installing
by Jack on Tuesday April 17th 2018, 23:13
Apart from the obvious changing your wine prefix location, how do you start the applications?

I cannot find shortcuts or the exe's that actually start the applications.

Like Word, Excel and Powerpoint.

Cheers.
RE: How do you actually start office apps after installing
by Jack on Wednesday April 18th 2018, 0:26
Nm, I found the shortcuts in gnome, did not know that was a thing. But I am getting a black screen and unable to use the direct2D workaround because the folder direct2D doesn't exist in the wine regedit folder.
RE: How do you actually start office apps after installing
by Jack on Wednesday April 18th 2018, 0:32
Nm, I figured it out If possible delete these comments

Cheers
Activation
by Samuel on Saturday March 3rd 2018, 6:08
I followed same Ubuntu procedure with workarounds with success!

If you want to activate the product online, you need to install wine-gecko.
See: wiki.winehq.org/Gecko

When wine-gecko is installed properly, in my case I had to:
* Type the email-address and clicking with mouse instead of pressing Enter (!?)
* Clicking Cancel to have the possibility to type the password (?!)
Directions for resolving "Office needs a newer version of Windows"
by Robby on Thursday March 1st 2018, 0:10
I am getting an error "Office needs a newer version of Windows" I need Windows 7 or newer it states.

I try and convince it that Linux is far superior but unfortunately it pays me no mind.

I was looking for assistance with this but I couldn't find anything? Maybe not looking in the right spot?

Thank you!
My experience with using this installer
by Ean on Tuesday January 23rd 2018, 19:50
I am running Ubuntu 16.04 LTS with Intel CPU/GPU
I found that I could only get to 63-66% installed with using these instructions (even after multiple attempts of starting from scratch).

What I found:
I needed winbind installed from apt
I had more success following this Stack Overflow answer for Office 2010 (even though I was installing 2016, this worked fine) askubuntu.com/a/674693/352976

A couple issues I had:
The installer did not close upon completion
(not exactly related to the installer, but using the 2010 instructions could have caused this):
Word crashed the first time I opened it, the second time I opened it office activated (it then asked me to restart office to complete activation), third time, everything was fine
Word has some minor/major graphical issues:
Word's UI is black in some areas, most will show the content of the area when you hover over it (like font selection), and in others the normally blue bar at the top is completely black until some specific set of actions (that I have not determined yet as it seems to be fixing itself randomly).
The font in Word is very not right, sizing of characters is not completely perfect, font face is very non-anti-aliased.

This is my first time working with the winehq, so is this something I should turn into a full test, or is this better to keep as a comment?
RE: My experience with using this installer
by Tristan on Sunday February 11th 2018, 19:13
To fix the graphical issues, please try setting HKCU\Software\Wine\Direct3D\csmt to 0x1. The graphics are fine for me now.
Back