3

I am using WineTricks to install some DLLs, but I'm encountering this problem when installing .NET framework:

This product is not supported on a 64-bit OS.

So, how do I run WineTricks in 32-bit mode?

1 Answers1

2

Set up a 32 bit Wine Bottle Prefix on a 64-bit System by using Wine Bottles, like so:

32-bit:
winearch=win32 WINEPREFIX="/path/to/new/wine/bottle" winecfg

64-bit:
winearch=win64 WINEPREFIX="/path/to/new/wine/bottle" winecfg


Never use the default WINE bottle. Use winetricks to select the bottle.

eyoung100
  • 975