Failed on Installing ATAS platform

Questions about Wine on Linux
Locked
drunkAllTheWine
Newbie
Newbie
Posts: 1
Joined: Mon Oct 17, 2022 5:31 am

Failed on Installing ATAS platform

Post by drunkAllTheWine »

Hey there, Im relatively new to Linux and even more to wine so, hope you can help me with my problem.

I already searched on google and here but couldn't find a solution so far.

Im using Linux Mint stable version (last version).
Have Wine and Bottles installed.

Have downloaded the ATAS PLATFORM.exe and im able to start it through wine itself and also through bottles. Looks like the installer is working, I can select language and options about desktop shortcuts before it starts to run the installation. It looks like everything is fine first, only suspicious part is the time the installation takes(maybe 2 seconds) afterwards everything goes to fast for me to read but at the end of the setup it says: rollback changes or something.
There is no installed ATAS in my program files folder but it looks like I have it in bottles, until I press play and nothing happens.

This is also my first forum entry ever so I hope I described everything correctly if not please tell me.

many thanks in advance
jkfloris
Level 12
Level 12
Posts: 3201
Joined: Thu Aug 14, 2014 10:10 am

Re: Failed on Installing ATAS platform

Post by jkfloris »

ATAS Platform needs the .Net Framework. Although Wine has a built-in version of .Net, it does not work for ATAS. The easiest way to install .Net is with winetricks.

Code: Select all

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

# Install the .Net Framework
winetricks -q dotnet46

# Install ATAS
cd ~/Downloads 
wine ATASPlatform.exe

# Run ATAS
cd "${HOME}/.wine/drive_c/Program Files (x86)/ATAS Platform"
wine OFT.Platform.exe
Because I don't have a login code, I can't test the program.
Locked