WEB Surveillance DVR OCX with Internet Explorer 6
Informatie
| Creator | Bericht |
|---|---|
kukulo
|
WarningThis installer is a beta script. It means that it might not work as expected InformatiePlatforms: Feedbacks3 0 OmschrijvingProgram for accesing your Home surveillance DVR via the Internet Explorer. This program works with EVOLVEO Detective surveillance system (http://www.evolveo.eu/en/Detective_S4CIH7). Broncode#!/usr/bin/env bash
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="3.13"
TITLE="WEB Surveillance DVR OCX with Internet Explorer 6"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "WEB Surveillance DVR OCX with Internet Explorer 6" "Evolveo" "https://www.evolveo.eu/" "Kukulo" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
POL_Call POL_Install_vcrun6
POL_Call POL_Install_ie6
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.evolveo.eu/ftp/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/General_IE_V1.0.2.3_20131104.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the install file.')" "$TITLE"
SETUP_PATH="$APP_ANSWER"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SETUP_PATH"
fi
POL_Wine_WaitExit "$TITLE"
POL_Wine_Direct3D "DirectDrawRenderer" "gdi"
POL_Shortcut "iexplore.exe" "Internet Explorer with DVR OCX"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 |
Contributions
Filters:
Contribute| Member | Bericht |
| kukulo | Zaterdag 18 Januari 2025 om 14:48 |
kukulo
|
WarningThis update has not been approved yet by the team. BerichtFix download link from evolveo.com Differences@@ -16,7 +16,7 @@ if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" - POL_Download "http://www.evolveo.eu/ftp/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8" + POL_Download "https://ftp.evolveo.com/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8" POL_Wine_WaitBefore "$TITLE" POL_Wine "$POL_System_TmpDir/General_IE_V1.0.2.3_20131104.exe" elif [ "$INSTALL_METHOD" = "LOCAL" ] New source code#!/usr/bin/env bash
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="3.13"
TITLE="WEB Surveillance DVR OCX with Internet Explorer 6"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "WEB Surveillance DVR OCX with Internet Explorer 6" "Evolveo" "https://www.evolveo.eu/" "Kukulo" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
POL_Call POL_Install_vcrun6
POL_Call POL_Install_ie6
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "https://ftp.evolveo.com/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/General_IE_V1.0.2.3_20131104.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the install file.')" "$TITLE"
SETUP_PATH="$APP_ANSWER"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SETUP_PATH"
fi
POL_Wine_WaitExit "$TITLE"
POL_Wine_Direct3D "DirectDrawRenderer" "gdi"
POL_Shortcut "iexplore.exe" "Internet Explorer with DVR OCX"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| kukulo | Dinsdag 14 Juli 2020 om 18:22 |
kukulo
|
InformationThis update has been approved by the team. BerichtUpdate for ubuntu 18.04 enclosed. Tested with wine 3.13. The direct draw renderer need to be set to gdi. Differences@@ -2,7 +2,7 @@ [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" -WINE_VERSION="1.4" +WINE_VERSION="3.13" TITLE="WEB Surveillance DVR OCX with Internet Explorer 6" POL_SetupWindow_Init POL_Debug_Init @@ -28,6 +28,7 @@ fi POL_Wine_WaitExit "$TITLE" +POL_Wine_Direct3D "DirectDrawRenderer" "gdi" POL_Shortcut "iexplore.exe" "Internet Explorer with DVR OCX" POL_System_TmpDelete POL_SetupWindow_Close New source code#!/usr/bin/env bash
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="3.13"
TITLE="WEB Surveillance DVR OCX with Internet Explorer 6"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "WEB Surveillance DVR OCX with Internet Explorer 6" "Evolveo" "https://www.evolveo.eu/" "Kukulo" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
POL_Call POL_Install_vcrun6
POL_Call POL_Install_ie6
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.evolveo.eu/ftp/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/General_IE_V1.0.2.3_20131104.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the install file.')" "$TITLE"
SETUP_PATH="$APP_ANSWER"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SETUP_PATH"
fi
POL_Wine_WaitExit "$TITLE"
POL_Wine_Direct3D "DirectDrawRenderer" "gdi"
POL_Shortcut "iexplore.exe" "Internet Explorer with DVR OCX"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| petch | Zaterdag 29 Augustus 2015 om 13:09 |
petch
|
WarningThis update has not been approved yet by the team. BerichtVarious small fixes Can you write some program description to replace the installation procedure text above? Differences@@ -1,29 +1,27 @@
-#!/bin/bash
-# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
-# Les trucs entre { } doivent être remplacés par POL Online
-
+#!/usr/bin/env bash
+
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="1.4"
TITLE="WEB Surveillance DVR OCX with Internet Explorer 6"
POL_SetupWindow_Init
POL_Debug_Init
-POL_SetupWindow_presentation "WEB Surveillance DVR OCX with Internet Explorer 6" "Kukulo" "https://www.playonlinux.com/en/app-2604-WEB_Surveillance_DVR_OCX_with_Internet_Explorer_6.html" "Kukulo" "WEB_DVR_OCX_IE6"
+POL_SetupWindow_presentation "WEB Surveillance DVR OCX with Internet Explorer 6" "Evolveo" "https://www.evolveo.eu/" "Kukulo" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
-POL_Call "POL_Install_vcrun6"
-POL_Call "POL_Install_ie6"
+POL_Call POL_Install_vcrun6
+POL_Call POL_Install_ie6
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.evolveo.eu/ftp/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8"
- POL_SetupWindow_wait "Installation in progress." "$TITLE"
+ POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/General_IE_V1.0.2.3_20131104.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
- POL_SetupWindow_browse "$(eval_gettext "Please select the install file (e.g. General_IE_V1.0.2.3_20131104.exe).")" "$TITLE"
+ POL_SetupWindow_browse "$(eval_gettext 'Please select the install file.')" "$TITLE"
SETUP_PATH="$APP_ANSWER"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SETUP_PATH"
@@ -31,5 +29,6 @@
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "iexplore.exe" "Internet Explorer with DVR OCX"
+POL_System_TmpDelete
POL_SetupWindow_Close
-exit
\ No newline at end of file
+exit 0
\ No newline at end of file
New source code#!/usr/bin/env bash
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="1.4"
TITLE="WEB Surveillance DVR OCX with Internet Explorer 6"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "WEB Surveillance DVR OCX with Internet Explorer 6" "Evolveo" "https://www.evolveo.eu/" "Kukulo" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
POL_Call POL_Install_vcrun6
POL_Call POL_Install_ie6
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.evolveo.eu/ftp/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$POL_System_TmpDir/General_IE_V1.0.2.3_20131104.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext 'Please select the install file.')" "$TITLE"
SETUP_PATH="$APP_ANSWER"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SETUP_PATH"
fi
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "iexplore.exe" "Internet Explorer with DVR OCX"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 AntwoordenZaterdag 29 Augustus 2015 om 13:32
Zaterdag 29 Augustus 2015 om 13:37
Zaterdag 1 April 2017 om 20:06
Aangepast door petch |
| kukulo | Zaterdag 29 Augustus 2015 om 10:54 |
kukulo
|
WarningThis update has not been approved yet by the team. BerichtThis is the complete code with downloading the OCX app. The installer creates a shortcut to Internet Explorer, where the application OCX is an extension to the IE6 and works when connected to DVR surveillance system. Please check, if any flaws are present. I have the code personnaly debugged on my linux box. Differences@@ -0,0 +1,35 @@
+#!/bin/bash
+# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
+# Les trucs entre { } doivent être remplacés par POL Online
+
+[ "$PLAYONLINUX" = "" ] && exit
+source "$PLAYONLINUX/lib/sources"
+WINE_VERSION="1.4"
+TITLE="WEB Surveillance DVR OCX with Internet Explorer 6"
+POL_SetupWindow_Init
+POL_Debug_Init
+POL_SetupWindow_presentation "WEB Surveillance DVR OCX with Internet Explorer 6" "Kukulo" "https://www.playonlinux.com/en/app-2604-WEB_Surveillance_DVR_OCX_with_Internet_Explorer_6.html" "Kukulo" "WEB_DVR_OCX_IE6"
+POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
+POL_Wine_PrefixCreate "$WINE_VERSION"
+POL_System_TmpCreate "GENERAL_IE_OCX"
+POL_Call "POL_Install_vcrun6"
+POL_Call "POL_Install_ie6"
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+ cd "$POL_System_TmpDir"
+ POL_Download "http://www.evolveo.eu/ftp/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8"
+ POL_SetupWindow_wait "Installation in progress." "$TITLE"
+ POL_Wine "$POL_System_TmpDir/General_IE_V1.0.2.3_20131104.exe"
+elif [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+ POL_SetupWindow_browse "$(eval_gettext "Please select the install file (e.g. General_IE_V1.0.2.3_20131104.exe).")" "$TITLE"
+ SETUP_PATH="$APP_ANSWER"
+ POL_Wine_WaitBefore "$TITLE"
+ POL_Wine "$SETUP_PATH"
+fi
+
+POL_Wine_WaitExit "$TITLE"
+POL_Shortcut "iexplore.exe" "Internet Explorer with DVR OCX"
+POL_SetupWindow_Close
+exit
\ No newline at end of file
New source code#!/bin/bash
# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
# Les trucs entre { } doivent être remplacés par POL Online
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="1.4"
TITLE="WEB Surveillance DVR OCX with Internet Explorer 6"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "WEB Surveillance DVR OCX with Internet Explorer 6" "Kukulo" "https://www.playonlinux.com/en/app-2604-WEB_Surveillance_DVR_OCX_with_Internet_Explorer_6.html" "Kukulo" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
POL_Call "POL_Install_vcrun6"
POL_Call "POL_Install_ie6"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://www.evolveo.eu/ftp/monitoring_system/Detective-S4CIH7/software/IEActive/General_IE_V1.0.2.3_20131104.exe" "7b1148c3d21dc871a9d3458083af83c8"
POL_SetupWindow_wait "Installation in progress." "$TITLE"
POL_Wine "$POL_System_TmpDir/General_IE_V1.0.2.3_20131104.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "$(eval_gettext "Please select the install file (e.g. General_IE_V1.0.2.3_20131104.exe).")" "$TITLE"
SETUP_PATH="$APP_ANSWER"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SETUP_PATH"
fi
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "iexplore.exe" "Internet Explorer with DVR OCX"
POL_SetupWindow_Close
exit Antwoorden |
| kukulo | Vrijdag 28 Augustus 2015 om 16:34 |
kukulo
|
WarningThis update has not been approved yet by the team. BerichtCorrected version setting to wine 1.4 Differences@@ -0,0 +1,22 @@
+#!/bin/bash
+# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
+# Les trucs entre { } doivent être remplacés par POL Online
+
+[ "$PLAYONLINUX" = "" ] && exit
+source "$PLAYONLINUX/lib/sources"
+WINE_VERSION=”1.4”
+POL_SetupWindow_Init
+POL_Debug_Init
+POL_SetupWindow_presentation "{SCRIPT_NAME}" "{SCRIPT_EDITEUR}" "{SCRIPT_URL}" "{SCRIPT_USER}" "WEB_DVR_OCX_IE6"
+POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
+POL_SetupWindow_prefixcreate
+POL_Call "POL_Install_vcrun6"
+POL_Call "POL_Install_ie6"
+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 "iexplore.exe" "Internet Explorer"
+POL_SetupWindow_Close
+exit
\ No newline at end of file
New source code#!/bin/bash
# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
# Les trucs entre { } doivent être remplacés par POL Online
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION=”1.4”
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "{SCRIPT_NAME}" "{SCRIPT_EDITEUR}" "{SCRIPT_URL}" "{SCRIPT_USER}" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_SetupWindow_prefixcreate
POL_Call "POL_Install_vcrun6"
POL_Call "POL_Install_ie6"
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 "iexplore.exe" "Internet Explorer"
POL_SetupWindow_Close
exit Antwoorden |
| kukulo | Vrijdag 28 Augustus 2015 om 16:31 |
kukulo
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,22 @@
+#!/bin/bash
+# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
+# Les trucs entre { } doivent être remplacés par POL Online
+
+[ "$PLAYONLINUX" = "" ] && exit
+source "$PLAYONLINUX/lib/sources"
+WINE_VERSION=”1.4?
+POL_SetupWindow_Init
+POL_Debug_Init
+POL_SetupWindow_presentation "{SCRIPT_NAME}" "{SCRIPT_EDITEUR}" "{SCRIPT_URL}" "{SCRIPT_USER}" "WEB_DVR_OCX_IE6"
+POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
+POL_SetupWindow_prefixcreate
+POL_Call "POL_Install_vcrun6"
+POL_Call "POL_Install_ie6"
+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 "iexplore.exe" "Internet Explorer"
+POL_SetupWindow_Close
+exit
\ No newline at end of file
New source code#!/bin/bash
# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
# Les trucs entre { } doivent être remplacés par POL Online
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION=”1.4?
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "{SCRIPT_NAME}" "{SCRIPT_EDITEUR}" "{SCRIPT_URL}" "{SCRIPT_USER}" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_SetupWindow_prefixcreate
POL_Call "POL_Install_vcrun6"
POL_Call "POL_Install_ie6"
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 "iexplore.exe" "Internet Explorer"
POL_SetupWindow_Close
exit Antwoorden |
| kukulo | Vrijdag 28 Augustus 2015 om 16:00 |
kukulo
|
WarningThis update has not been approved yet by the team. BerichtThe wine version needs to be set to 1.4. Differences@@ -0,0 +1,21 @@
+#!/bin/bash
+# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
+# 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}" "WEB_DVR_OCX_IE6"
+POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
+POL_SetupWindow_prefixcreate
+POL_Call "POL_Install_vcrun6"
+POL_Call "POL_Install_ie6"
+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 "iexplore.exe" "Internet Explorer"
+POL_SetupWindow_Close
+exit
\ No newline at end of file
New source code#!/bin/bash
# Auto-generated script : /home/macika/.PlayOnLinux//scripts/CMS_1
# 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}" "WEB_DVR_OCX_IE6"
POL_Wine_SelectPrefix "WEB_DVR_OCX_IE6"
POL_SetupWindow_prefixcreate
POL_Call "POL_Install_vcrun6"
POL_Call "POL_Install_ie6"
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 "iexplore.exe" "Internet Explorer"
POL_SetupWindow_Close
exit Antwoorden |
| petch | Vrijdag 28 Augustus 2015 om 14:08 |
petch
|
BerichtIf there's no script it belongs to "Manual installations": https://www.playonlinux.com/en/forum-24-Manual_installations.html And since it's not redacted as a program description, it'll otherwise be soon removed from the official scripts repository. Antwoorden |
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
Installeer dit programma