Net Framework 4.6.2 and Visual C ++ 2015 Wine

Questions about Wine on Linux
Locked
linenux
Newbie
Newbie
Posts: 1
Joined: Sun Feb 21, 2021 11:52 am

Net Framework 4.6.2 and Visual C ++ 2015 Wine

Post by linenux »

Hello All.
I managed to install a game (which only exists for Windows and Mac) on my Ubuntu computer using the Crossover software.
Unfortunately Crossover is not free, the software is only free for 15 days.
When I installed my game, I had to create a Windows 7 (32bits) 'bottle', then in this bottle, I installed from the crossover library:
Net Framework 4.6.2 + Adobe Air + Visual C ++ 2015 then, I install my game (.exe) by choosing 'software not listed'. all install in the same Bottle.
it work perfectly fine. I play without any worries. My Crossover has become paid (free 15 days version is over) I tried to do with Wine via PlayOnLinux and Winericks but I can't, I don't know how to create a bottle in order to behave like on crossover ... If you know how to do it please ?
Thank you all.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Net Framework 4.6.2 and Visual C ++ 2015 Wine

Post by jkfloris »

Crossover is a polished version of Wine. It can run programs that Wine cannot run.

Create a 32-bit wineprefix (bottle)

Code: Select all

WINEPREFIX=~/wine32-game WINEARCH=win32 wineboot
.Net 4.6.2

Code: Select all

# Installing .Net on wine 6.x is currently broken. You can try with --force:
WINEPREFIX=~/wine32-game winetricks -q --force dotnet462
Visual C ++ 2015

Code: Select all

WINEPREFIX=~/wine32-game winetricks -q vcrun2015
Adobe Air

Code: Select all

# Download Adobe Air from the Wayback Machine:
# https://web.archive.org/web/20201205204850/https://airdownload.adobe.com/air/win/download/latest/AdobeAIRInstaller.exe
# Install Adobe Air with:
WINEPREFIX=~/wine32-game wine AdobeAIRInstaller.exe -silent
Your Game

Code: Select all

WINEPREFIX=~/wine32-game wine <your_game.exe>
Locked