WatchTheClock.exe

Questions about Wine on Linux
Locked
mrT
Newbie
Newbie
Posts: 1
Joined: Sun Sep 08, 2019 3:56 pm

WatchTheClock.exe

Post by mrT »

hi,

could you help me to get this exe running, i did come so far but not further:

Code: Select all

$ wine --version 
wine-4.0 (Debian 4.0-1)
$ wine --verbose WatchTheClock.exe
0016:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\acedrv11": c0000142
0015:err:service:process_send_command service protocol error - failed to write pipe!
wine: cannot find L"C:\\windows\\system32\\--verbose.exe"
$ wine -v WatchTheClock.exe
0016:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\acedrv11": c0000142
0014:err:service:process_send_command service protocol error - failed to write pipe!
wine: cannot find L"C:\\windows\\system32\\-v.exe"
$ wine -h
0016:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\acedrv11": c0000142
0015:err:service:process_send_command service protocol error - failed to write pipe!
wine: Unhandled page fault on read access to 0xffffffffffffffff at address 0x7bc46900 (thread 0015), starting debugger...
001c:fixme:dbghelp:elf_search_auxv can't find symbol in module
001c:fixme:dbghelp:elf_search_auxv can't find symbol in module
001c:fixme:dbghelp:elf_search_auxv can't find symbol in module
001c:fixme:dbghelp:elf_search_auxv can't find symbol in module
001c:fixme:dbghelp:elf_search_auxv can't find symbol in module
001c:fixme:dbghelp:elf_search_auxv can't find symbol in module
001c:fixme:dbghelp:elf_search_auxv can't find symbol in module
001c:fixme:dbghelp:elf_search_auxv can't find symbol in module
000b:err:wineboot:start_services_process Unexpected termination of services.exe - exit code -1073741819
0023:err:rpc:RpcAssoc_BindConnection receive failed with error 1726
0023:err:service:service_run_main_thread failed to open service manager error 1726
wine: cannot find L"C:\\windows\\system32\\-h.exe"
$ wine --help
Usage: wine PROGRAM [ARGUMENTS...]   Run the specified program
       wine --help                   Display this help and exit
       wine --version                Output version information and exit
$ wine WatchTheClock.exe
0016:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\acedrv11": c0000142
0014:err:service:process_send_command service protocol error - failed to write pipe!
The entry point method could not be loaded
$     
thanks in advance

Mr. T
jkfloris
Level 12
Level 12
Posts: 3136
Joined: Thu Aug 14, 2014 10:10 am

Re: WatchTheClock.exe

Post by jkfloris »

If this is the program you want to run, then you need to install the .Net 4.0 framework.

Normally I would say that installing .Net can break other applications in your Wineprefix, but it seems your prefix has already some issues.
Rename the hidden .wine directory in your home folder if you want to keep the data and remove the directory.

Install the .Net Framework:

Code: Select all

winetricks -q dotnet40
Run the program:

Code: Select all

wine WatchTheClock.exe
Locked