Wine

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
alansecker
Level 2
Level 2
Posts: 18
Joined: Sun Aug 30, 2009 12:33 pm

Wine

Post by alansecker »

I have wine-8.0.1 installed on Linux Mint 21.1
TI installed a program called topuptax.exe.
It would not run from my home prompt.
When tried from the location directory, the following error lines were generated:

0448:fixme:mscoree:parse_supported_runtime sku=L".NETFramework,Version=v4.7.2" not implemented
0448:fixme:mscoree:parse_supported_runtime sku=L".NETFramework,Version=v4.7.2" not implemented
0448:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION

Unhandled Exception:
System.InvalidProgramException: Invalid IL code in #1Wb.#bic:#aic (): IL_006b: dup

[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidProgramException: Invalid IL code in #1Wb.#bic:#aic (): IL_006b: dup

Is it fatal?
jkfloris
Level 12
Level 12
Posts: 3136
Joined: Thu Aug 14, 2014 10:10 am

Re: Wine

Post by jkfloris »

Probably Wine's built-in version of the .Net Framework is not sufficient to run the program.
You can install .Net with winetricks:

Code: Select all

# Install and update winetricks:
sudo apt install winetricks
sudo winetricks --self-update

# Install .Net:
winetricks -q dotnet48
Locked