Subsembly - Banking 4W
Informations
| Créateur | Messages |
|---|---|
DieserDave
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience2 0 DescriptionBanking 4Banking 4 steht für alle wichtigen Plattformen zur Verfügung. Egal ob PC, Mac, Smartphone oder Tablet. Das Beste daran: Alle Produkte der Banking 4 Familie verwenden das gleiche Datenformat, so dass der Datentresor auch Plattform übergreifend genutzt werden kann. Ein Datenaustausch ist über Dropbox, iCloud (nur Apple Plattformen) oder einem beliebigen WebDAV Server möglich. https://subsembly.com/banking4.html
Code source#!/usr/bin/env playonlinux-bash
# Date : 2018-01-23
# Last revision : 2018-01-23
# Wine version used : 2.21-staging for installation dotnet462, wine-2.18 (Ubuntu 2.18-1) for running
# Distribution used to test : Ubuntu MATE 17.10
# Author : simulant
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Banking4W"
PREFIX="Banking4W"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Subsembly" "https://subsembly.com/banking4.html" "simulant" "$PREFIX"
if [ "$POL_OS" = "Linux" ]; then
wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
fi
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
cd "$POL_System_TmpDir"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_Download "https://subsembly.com/download/TopBankingSetup.exe"
INSTALLER="$POL_System_TmpDir/TopBankingSetup.exe"
fi
# Select and create prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "2.21-staging"
# Set OS to windows2003
Set_OS "win2003"
# Installation
eval_gettext 'Please wait while $TITLE is installed.'
POL_Wine "$INSTALLER"
# Install packages
POL_Install_corefonts
POL_Call POL_Install_dotnet40
POL_Call POL_Function_FontsSmoothRGB
# Workaround for function POL_Install_dotnet462 (doesn't exist at the moment)
#POL_Call POL_Install_dotnet462
# Set OS to windows7
Set_OS "win7"
# Download and install dotnet462
eval_gettext 'Please wait while $TITLE is installed.'
POL_Download "https://download.microsoft.com/download/F/9/4/F942F07D-F26F-4F30-B4E3-EBD54FABA377/NDP462-KB3151800-x86-x64-AllOS-ENU.exe" "9a5d647ee710af2b1aede329c40bbe1a"
eval_gettext 'Please wait while $TITLE is installed.'
POL_Wine --ignore-errors "$POL_System_TmpDir/NDP462-KB3151800-x86-x64-AllOS-ENU.exe" /q
# Clear tempfile
POL_System_TmpDelete
# Create launcher
POL_Shortcut "TopBanking.exe" "$TITLE"
POL_SetupWindow_install_wine "2.18"
POL_Wine_SetVersionPrefix "2.18"
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
POL_SetupWindow_Close
exit |
Contributions
Filters:
Contribuer| Membre | Messages |
| piposa | Lundi 5 Février 2018 à 9:26 |
piposa
|
MessagesWorks well, I just get a black screen until I enable "use virtual desktop" in wine config. I could not get the Dropbox link to work, sign in button is greyed out. RéponsesLundi 5 Février 2018 à 15:25
|
| simulant | Mardi 23 Janvier 2018 à 22:05 |
simulant
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -0,0 +1,78 @@ +#!/usr/bin/env playonlinux-bash +# Date : 2018-01-23 +# Last revision : 2018-01-23 +# Wine version used : 2.21-staging for installation dotnet462, wine-2.18 (Ubuntu 2.18-1) for running +# Distribution used to test : Ubuntu MATE 17.10 +# Author : simulant +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Banking4W" +PREFIX="Banking4W" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Subsembly" "https://subsembly.com/banking4.html" "simulant" "$PREFIX" + +if [ "$POL_OS" = "Linux" ]; then + wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE" +fi + +POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +cd "$POL_System_TmpDir" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + POL_Download "https://subsembly.com/download/TopBankingSetup.exe" + INSTALLER="$POL_System_TmpDir/TopBankingSetup.exe" +fi + +# Select and create prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "2.21-staging" + +# Set OS to windows2003 +Set_OS "win2003" + +# Installation +eval_gettext 'Please wait while $TITLE is installed.' +POL_Wine "$INSTALLER" + +# Install packages +POL_Install_corefonts +POL_Call POL_Install_dotnet40 +POL_Call POL_Function_FontsSmoothRGB + +# Workaround for function POL_Install_dotnet462 (doesn't exist at the moment) +#POL_Call POL_Install_dotnet462 + +# Set OS to windows7 +Set_OS "win7" + +# Download and install dotnet462 +eval_gettext 'Please wait while $TITLE is installed.' +POL_Download "https://download.microsoft.com/download/F/9/4/F942F07D-F26F-4F30-B4E3-EBD54FABA377/NDP462-KB3151800-x86-x64-AllOS-ENU.exe" "9a5d647ee710af2b1aede329c40bbe1a" + +eval_gettext 'Please wait while $TITLE is installed.' +POL_Wine --ignore-errors "$POL_System_TmpDir/NDP462-KB3151800-x86-x64-AllOS-ENU.exe" /q + +# Clear tempfile +POL_System_TmpDelete + +# Create launcher +POL_Shortcut "TopBanking.exe" "$TITLE" + +POL_SetupWindow_install_wine "2.18" +POL_Wine_SetVersionPrefix "2.18" + +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash
# Date : 2018-01-23
# Last revision : 2018-01-23
# Wine version used : 2.21-staging for installation dotnet462, wine-2.18 (Ubuntu 2.18-1) for running
# Distribution used to test : Ubuntu MATE 17.10
# Author : simulant
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Banking4W"
PREFIX="Banking4W"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Subsembly" "https://subsembly.com/banking4.html" "simulant" "$PREFIX"
if [ "$POL_OS" = "Linux" ]; then
wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
fi
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
cd "$POL_System_TmpDir"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_Download "https://subsembly.com/download/TopBankingSetup.exe"
INSTALLER="$POL_System_TmpDir/TopBankingSetup.exe"
fi
# Select and create prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "2.21-staging"
# Set OS to windows2003
Set_OS "win2003"
# Installation
eval_gettext 'Please wait while $TITLE is installed.'
POL_Wine "$INSTALLER"
# Install packages
POL_Install_corefonts
POL_Call POL_Install_dotnet40
POL_Call POL_Function_FontsSmoothRGB
# Workaround for function POL_Install_dotnet462 (doesn't exist at the moment)
#POL_Call POL_Install_dotnet462
# Set OS to windows7
Set_OS "win7"
# Download and install dotnet462
eval_gettext 'Please wait while $TITLE is installed.'
POL_Download "https://download.microsoft.com/download/F/9/4/F942F07D-F26F-4F30-B4E3-EBD54FABA377/NDP462-KB3151800-x86-x64-AllOS-ENU.exe" "9a5d647ee710af2b1aede329c40bbe1a"
eval_gettext 'Please wait while $TITLE is installed.'
POL_Wine --ignore-errors "$POL_System_TmpDir/NDP462-KB3151800-x86-x64-AllOS-ENU.exe" /q
# Clear tempfile
POL_System_TmpDelete
# Create launcher
POL_Shortcut "TopBanking.exe" "$TITLE"
POL_SetupWindow_install_wine "2.18"
POL_Wine_SetVersionPrefix "2.18"
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
POL_SetupWindow_Close
exit RéponsesVendredi 2 Aoüt 2019 à 21:55
|
| DieserDave | Mercredi 9 Mars 2016 à 19:47 |
DieserDave
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,20 @@
+#!/bin/bash
+# Auto-generated script : /home/user/.PlayOnLinux//scripts/Banking4W-6.x_4
+# Les trucs entre { } doivent être remplacés par POL Online
+
+[ "$PLAYONLINUX" = "" ] && exit
+source "$PLAYONLINUX/lib/sources"
+POL_SetupWindow_Init
+POL_Debug_Init
+POL_SetupWindow_presentation "{SCRIPT_NAME}" "{SCRIPT_EDITEUR}" "{SCRIPT_URL}" "{SCRIPT_USER}" "Banking4W-6.x"
+POL_Wine_SelectPrefix "Banking4W-6.x"
+POL_SetupWindow_prefixcreate
+POL_Call "POL_Install_dotnet35sp1"
+POL_SetupWindow_browse "$(eval_gettext "Please select the install file.")" "$TITLE"
+SETUP_PATH="$APP_ANSWER"
+POL_SetupWindow_wait "$(eval_gettext 'PlayOnLinux is installing your application...')" "$TITLE"
+POL_Wine "$SETUP_PATH"
+POL_Wine_WaitExit
+POL_Shortcut "TopBanking.exe" "TopBanking"
+POL_SetupWindow_Close
+exit
\ No newline at end of file
Nouveau code source#!/bin/bash
# Auto-generated script : /home/user/.PlayOnLinux//scripts/Banking4W-6.x_4
# Les trucs entre { } doivent être remplacés par POL Online
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "{SCRIPT_NAME}" "{SCRIPT_EDITEUR}" "{SCRIPT_URL}" "{SCRIPT_USER}" "Banking4W-6.x"
POL_Wine_SelectPrefix "Banking4W-6.x"
POL_SetupWindow_prefixcreate
POL_Call "POL_Install_dotnet35sp1"
POL_SetupWindow_browse "$(eval_gettext "Please select the install file.")" "$TITLE"
SETUP_PATH="$APP_ANSWER"
POL_SetupWindow_wait "$(eval_gettext 'PlayOnLinux is installing your application...')" "$TITLE"
POL_Wine "$SETUP_PATH"
POL_Wine_WaitExit
POL_Shortcut "TopBanking.exe" "TopBanking"
POL_SetupWindow_Close
exit Réponses |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
Installer ce programme 