1

I'm trying to install TodoList app as from terminal and by using GUI. http://abstractspoon.com/wiki/doku.php?id=linux

It throws an error:

Note: command wine /home/pdd/.cache/winetricks/comctl32/cc32inst.exe /T:C:windowsTemp_comctl32 /c returned status 193. Aborting.
PDD
  • 75

1 Answers1

-1

In many cases of error messages with winetricks an update to the very latest version of winetricks will fix the issue; the repository winetricks is almost always at least slightly aged!

To test this I followed this excellent question and answer on Ask Ubuntu to update to the very latest winetricks:

How do I get the latest version of winetricks on Ubuntu?

Note that at the time of writing this answer this should give you the following version:

andrew@ithaca:~$ winetricks --version
20200412-next - sha256sum: 9ce444892e885bf7318b1f6c251dafb7a43fc26bb3078215f630e8a2b3f15874

Now the following command should be successful in installing the prerequisites and required dlls for TodoList, and certainly it worked well on my Ubuntu Focal Fossa 20.04 system:

winetricks --verbose comctl32 mfc42 vcrun6

And hopefully on yours as well :)

andrew.46
  • 39,359