Skip to content

Instantly share code, notes, and snippets.

@lkwg82
Created September 25, 2023 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lkwg82/b45b24f0732146017e66fcdb24d7bf18 to your computer and use it in GitHub Desktop.
Save lkwg82/b45b24f0732146017e66fcdb24d7bf18 to your computer and use it in GitHub Desktop.
wine installation for SteuerSparErklärung 2023
#!/bin/bash
set -ex
export WINEPREFIX=~/.wine-sse2023
# install winetricks via https://github.com/Winetricks/winetricks
winetricks settings win10
#winetricks --self-update
#winetricks --force vcrun2022
winetricks crypt32
winetricks -q crypt32
winetricks fontsmooth=rgb
winetricks mspatcha
echo $WINEPREFIX
wine Win-SteuerSparErklaerung_28.32.67.exe
@lkwg82
Copy link
Author

lkwg82 commented Sep 25, 2023

regarding problems with entering license key see https://forum.steuertipps.de/forum/index.php?thread/47989-sse2023-in-linux/&postID=50667#post50667

  1. Installation 28.23.42 unter Windows.

  2. Installation 28.23.42 unter wine

  3. Die Datei License.aavdrm aus dem Windows-Verzeichnis C:\Program Files (x86)\Akademische Arbeitsgemeinschaft\SteuerSparErklaerung 2023\license in das entsprechende wine-verzeichnis kopieren.

  4. Die Installation unter Windows kann gelöscht werden (mit meiner Lizenz darf ich die SteuerSparErklärung auf 3 Maschinen installieren)

  5. Steuererklärung mitt SSE 28.23.42 unter wine machen :)

@lkwg82
Copy link
Author

lkwg82 commented Sep 25, 2023

$ wine --version
wine-8.0.1

@lkwg82
Copy link
Author

lkwg82 commented Sep 25, 2023

invokation

#!/bin/bash

set -ex

export WINEPREFIX=~/.wine-sse2023
cd $WINEPREFIX
cd "drive_c/Program Files (x86)/Akademische Arbeitsgemeinschaft/SteuerSparErklaerung 2023"
wine SteuertippsCenter.exe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment