I installed WINE for the first time on my Ubuntu computer because I want to try install some VSTs. Please can someone explain how to fix this error?
I ran :
```bash
flatpak run org.winehq.Wine --install ~/Downloads/Native-Access_2.exe
wine: created the configuration directory '/var/data/wine'
002c:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
0050:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
0048:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
0050:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hr 0x80004002
0050:err:ole:CoMarshalInterface Failed to marshal the interface {6d5140c1-7436-11ce-8034-00aa006009fa}, hr 0x80004002
0050:err:ole:apartment_get_local_server_stream Failed: 0x80004002
0050:err:ole:start_rpcss Failed to open RpcSs service
0048:err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub, hr 0x80004002
0048:err:ole:CoMarshalInterface Failed to marshal the interface {6d5140c1-7436-11ce-8034-00aa006009fa}, hr 0x80004002
0048:err:ole:apartment_get_local_server_stream Failed: 0x80004002
0048:fixme:imm:ImeSetActiveContext (000000000001002E, 0): stub
0048:fixme:imm:ImmReleaseContext (0000000000010020, 000000000001002E): stub
002c:fixme:imm:ImeSetActiveContext (0000000000010058, 1): stub
002c:fixme:imm:ImmReleaseContext (0000000000010056, 0000000000010058): stub
0090:fixme:file:NtLockFile I/O completion on lock not implemented yet
0090:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION
00a0:fixme:imm:ImeSetActiveContext (0000000000010084, 1): stub
00a0:fixme:imm:ImmReleaseContext (000000000002007C, 0000000000010084): stub
0090:fixme:msi:internal_ui_handler internal UI not implemented for message 0x0b000000 (UI level = 1)
0090:fixme:msi:internal_ui_handler internal UI not implemented for message 0x0b000000 (UI level = 1)
00f4:fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
011c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
011c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
011c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
011c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
011c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005
011c:fixme:xinput:pdo_pnp IRP_MN_QUERY_ID type 5, not implemented!
011c:fixme:xinput:pdo_pnp IRP_MN_QUERY_ID type 5, not implemented!
011c:fixme:xinput:pdo_pnp IRP_MN_QUERY_ID type 5, not implemented!
wine: configuration in L"/var/data/wine" has been updated.
011c:fixme:xinput:pdo_pnp IRP_MN_QUERY_ID type 5, not implemented!
Application could not be started, or no application associated with the specified file.
ShellExecuteEx failed: File not found.
```
WINE says "Could not find dependent assembly"
-
- Newbie
- Posts: 3
- Joined: Fri Oct 13, 2023 8:00 am
Re: WINE says "Could not find dependent assembly"
Although the beginning of the output may look worrying, this is normal.
The real problem is at the end:
This is probably due to the "--install" option passed to Wine.
If you are sure the file ~/Downloads/Native-Access_2.exe exists, try
The real problem is at the end:
Code: Select all
Application could not be started, or no application associated with the specified file.
ShellExecuteEx failed: File not found.
If you are sure the file ~/Downloads/Native-Access_2.exe exists, try
Code: Select all
flatpak run org.winehq.Wine ~/Downloads/Native-Access_2.exe