I broke wine

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
dgcarter
Newbie
Newbie
Posts: 2
Joined: Tue Apr 14, 2009 1:43 pm

I broke wine

Post by dgcarter »

Ok, I was following a guide to install Office 2007 on Ubuntu 8.04 with Wine. I added exceptions (rpcrt4.dll and msxml.dll) as Native (Windows). After doing so wine broke, I can't even open winecfg to remove these exceptions. I've tried removing wine completely with Synaptic are reinstalling but nothing is helping, I currently have v 1.1.19 installed, it's still not working.

when I use $wine winecfg at the terminal I get:

Code: Select all

darrencarter@darrencarter-laptop:~$ wine winecfg
err:module:import_dll Library rpcrt4.dll (which is needed by L"C:\\windows\\system32\\services.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\windows\\system32\\services.exe" failed, status c0000135
err:wineboot:start_services_process Unexpected termination of services.exe - exit code -1073741515
err:module:import_dll Library rpcrt4.dll (which is needed by L"C:\\windows\\system32\\ole32.dll") not found
err:module:import_dll Library ole32.dll (which is needed by L"C:\\windows\\system32\\winecfg.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\windows\\system32\\winecfg.exe" failed, status c0000135
So is there any way to fix this? Thanks in advance.
austin987
Wine Developer
Wine Developer
Posts: 2383
Joined: Fri Feb 22, 2008 8:19 pm

I broke wine

Post by austin987 »

On Tue, Apr 14, 2009 at 1:52 PM, dgcarter <[email protected]> wrote:
Ok, I was following a guide to install Office 2007 on Ubuntu 8.04 with Wine. I added exceptions (rpcrt4.dll and msxml.dll) as Native (Windows). After doing so wine broke, I can't even open winecfg to remove these exceptions. I've tried removing wine completely with Synaptic are reinstalling but nothing is helping, I currently have v 1.1.19 installed, it's still not working.
You don't need those overrides anymore. Check the AppDB for current information.
when I use $wine winecfg at the terminal I get:

Code:
darrencarter@darrencarter-laptop:~$ wine winecfg
err:module:import_dll Library rpcrt4.dll (which is needed by L"C:\\windows\\system32\\services.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\windows\\system32\\services.exe" failed, status c0000135
err:wineboot:start_services_process Unexpected termination of services.exe - exit code -1073741515
err:module:import_dll Library rpcrt4.dll (which is needed by L"C:\\windows\\system32\\ole32.dll") not found
err:module:import_dll Library ole32.dll (which is needed by L"C:\\windows\\system32\\winecfg.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\windows\\system32\\winecfg.exe" failed, status c0000135




So is there any way to fix this? Thanks in advance.
$ WINEDLLOVERRIDES="rpcrt4=b" wine winecfg

then remove all the ole/rpc stuff from the overrides list.

--
-Austin
dgcarter
Newbie
Newbie
Posts: 2
Joined: Tue Apr 14, 2009 1:43 pm

Re: I broke wine

Post by dgcarter »

austin987 wrote:On Tue, Apr 14, 2009 at 1:52 PM, dgcarter <[email protected]> wrote:
Ok, I was following a guide to install Office 2007 on Ubuntu 8.04 with Wine. I added exceptions (rpcrt4.dll and msxml.dll) as Native (Windows). After doing so wine broke, I can't even open winecfg to remove these exceptions. I've tried removing wine completely with Synaptic are reinstalling but nothing is helping, I currently have v 1.1.19 installed, it's still not working.
You don't need those overrides anymore. Check the AppDB for current information.
when I use $wine winecfg at the terminal I get:

Code:
darrencarter@darrencarter-laptop:~$ wine winecfg
err:module:import_dll Library rpcrt4.dll (which is needed by L"C:\\windows\\system32\\services.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\windows\\system32\\services.exe" failed, status c0000135
err:wineboot:start_services_process Unexpected termination of services.exe - exit code -1073741515
err:module:import_dll Library rpcrt4.dll (which is needed by L"C:\\windows\\system32\\ole32.dll") not found
err:module:import_dll Library ole32.dll (which is needed by L"C:\\windows\\system32\\winecfg.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"C:\\windows\\system32\\winecfg.exe" failed, status c0000135




So is there any way to fix this? Thanks in advance.
$ WINEDLLOVERRIDES="rpcrt4=b" wine winecfg

then remove all the ole/rpc stuff from the overrides list.

--
-Austin
Wow, thanks you're a life saver!
Locked