IRemUnknown_RemRelease error

Questions about Wine on Linux
Locked
isao
Newbie
Newbie
Posts: 1
Joined: Fri Jan 14, 2022 8:46 am

IRemUnknown_RemRelease error

Post by isao »

Hi I am running Wine with Winetrick in Ubuntu Linux container using the following configuration. I am running .Net framework Windows binary as "Wine.exe prog.bin" inside the container, It runs to the completion but I see the following error messages come up in random during the execution.

"0378:err:ole:ifproxy_release_public_refs IRemUnknown_RemRelease failed with error 0x800706be”

I don't see this message when I run the program natively in Windows machine.

Is this safe to ignore or can this error cause the program to fail at some point later ?

Thanks
-------------------

FROM ubuntu:20.04

# Install wget
RUN apt-get update
RUN apt-get install -y wget

## Add 32-bit architecture
RUN dpkg --add-architecture i386
RUN apt-get update
#
## Install Wine
RUN apt-get install -y software-properties-common gnupg2
#
# https://support.opendns.com/hc/en-us/ar ... ot-CA#CERT
# **This is temporary**.
#
RUN wget -nc https://d36u8deuxga9bo.cloudfront.net/c ... oot_CA.cer

RUN wget -nc --ca-certificate=./Cisco_Umbrella_Root_CA.cer https://dl.winehq.org/wine-builds/winehq.key
RUN apt-key add winehq.key
RUN apt-get install ca-certificates
RUN apt-add-repository 'deb http://dl.winehq.org/wine-builds/ubuntu/ focal main'
RUN apt-get install -y --install-recommends winehq-stable winbind
ENV WINEDEBUG=fixme-all

#
# Setup a Wine prefix
ENV WINEPREFIX=/root/.demo
ENV WINEARCH=win64
RUN winecfg

# Install Winetricks
RUN apt-get install -y cabextract
RUN wget --ca-certificate=./Cisco_Umbrella_Root_CA.cer https://raw.githubusercontent.com/Winet ... winetricks
RUN chmod +x winetricks
RUN cp winetricks /usr/local/bin

# Install .NET Framework 4.8
RUN wineboot -u && winetricks -f -q dotnet48

ENTRYPOINT ["wine", "prog.exe", "..."]
Locked