iSPY
Informations
| Creator | Mensajes | 
|---|---|
| kukulo   
 | InformationThis installer has been approved by the team. InformationsPlatforms:   Feedbacks1 0 DescriptioniSpy is our original open source video surveillance project for Windows. iSpy runs on Windows 7 SP1 and above. iSpy requires the .net framework v4.5+. To run on windows server 2012 you will need to install media foundation. Source code#!/usr/bin/env bash
 
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="6.15-staging"
TITLE="iSpy surveilance system"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "iSpy surveilance system" "iSpy" "https://www.ispyconnect.com" "Kukulo" "iSPY surveillance system"
POL_Wine_SelectPrefix "iSPY"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
POL_Call POL_Install_mfc42
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ] 
then
        cd "$POL_System_TmpDir"
        POL_Download "https://ispyfiles.azureedge.net/downloads/iSpy_7_2_1_0.zip" "f66ffbb738c96e6d069007151e21c317"
        POL_Wine_WaitBefore "$TITLE"
        POL_System_unzip "$POL_System_TmpDir/iSpy_7_2_1_0.zip"
        POL_Wine "$POL_System_TmpDir/iSpySetup.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_Call POL_Install_dotnet45
POL_Shortcut "iSpy.exe" "iSpy Surveilance system"
POL_System_TmpDelete
Set_OS "win7"
POL_SetupWindow_Close
exit 0 | 
Contributions
Filters:
Contribute| Member | Mensajes | 
| kukulo | Saturday 18 January 2025 at 14:35 | 
| kukulo   
 | WarningThis update has not been approved yet by the team. MensajesFix download link for ISpy. Differences@@ -1,5 +1,5 @@
 #!/usr/bin/env bash
- 
+  
 [ "$PLAYONLINUX" = "" ] && exit
 source "$PLAYONLINUX/lib/sources"
 WINE_VERSION="6.15-staging"
@@ -15,7 +15,7 @@
 if [ "$INSTALL_METHOD" = "DOWNLOAD" ] 
 then
         cd "$POL_System_TmpDir"
-        POL_Download "https://ispyfiles.azureedge.net/downloads/iSpy_7_2_1_0.zip" "f66ffbb738c96e6d069007151e21c317"
+        POL_Download "https://web.archive.org/web/20220301014020/https://ispyfiles.azureedge.net/downloads/iSpy_7_2_1_0.zip" "f66ffbb738c96e6d069007151e21c317"
         POL_Wine_WaitBefore "$TITLE"
         POL_System_unzip "$POL_System_TmpDir/iSpy_7_2_1_0.zip"
         POL_Wine "$POL_System_TmpDir/iSpySetup.exe"
@@ -26,11 +26,11 @@
          POL_Wine_WaitBefore "$TITLE"
         POL_Wine "$SETUP_PATH"
 fi
- 
+  
 POL_Wine_WaitExit "$TITLE"
 POL_Call POL_Install_dotnet45
 POL_Shortcut "iSpy.exe" "iSpy Surveilance system"
 POL_System_TmpDelete
 Set_OS "win7"
 POL_SetupWindow_Close
-exit 0
\ No newline at end of file
+exit 0
New source code#!/usr/bin/env bash
  
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="6.15-staging"
TITLE="iSpy surveilance system"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "iSpy surveilance system" "iSpy" "https://www.ispyconnect.com" "Kukulo" "iSPY surveillance system"
POL_Wine_SelectPrefix "iSPY"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
POL_Call POL_Install_mfc42
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ] 
then
        cd "$POL_System_TmpDir"
        POL_Download "https://web.archive.org/web/20220301014020/https://ispyfiles.azureedge.net/downloads/iSpy_7_2_1_0.zip" "f66ffbb738c96e6d069007151e21c317"
        POL_Wine_WaitBefore "$TITLE"
        POL_System_unzip "$POL_System_TmpDir/iSpy_7_2_1_0.zip"
        POL_Wine "$POL_System_TmpDir/iSpySetup.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_Call POL_Install_dotnet45
POL_Shortcut "iSpy.exe" "iSpy Surveilance system"
POL_System_TmpDelete
Set_OS "win7"
POL_SetupWindow_Close
exit 0
Respuestas | 
| kukulo | Monday 23 August 2021 at 22:05 | 
| kukulo   
 | InformationThis update has been approved by the team. Differences@@ -0,0 +1,36 @@ +#!/usr/bin/env bash + +[ "$PLAYONLINUX" = "" ] && exit +source "$PLAYONLINUX/lib/sources" +WINE_VERSION="6.15-staging" +TITLE="iSpy surveilance system" +POL_SetupWindow_Init +POL_Debug_Init +POL_SetupWindow_presentation "iSpy surveilance system" "iSpy" "https://www.ispyconnect.com" "Kukulo" "iSPY surveillance system" +POL_Wine_SelectPrefix "iSPY" +POL_Wine_PrefixCreate "$WINE_VERSION" +POL_System_TmpCreate "GENERAL_IE_OCX" +POL_Call POL_Install_mfc42 +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "https://ispyfiles.azureedge.net/downloads/iSpy_7_2_1_0.zip" "f66ffbb738c96e6d069007151e21c317" + POL_Wine_WaitBefore "$TITLE" + POL_System_unzip "$POL_System_TmpDir/iSpy_7_2_1_0.zip" + POL_Wine "$POL_System_TmpDir/iSpySetup.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_Call POL_Install_dotnet45 +POL_Shortcut "iSpy.exe" "iSpy Surveilance system" +POL_System_TmpDelete +Set_OS "win7" +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/usr/bin/env bash
 
[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"
WINE_VERSION="6.15-staging"
TITLE="iSpy surveilance system"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "iSpy surveilance system" "iSpy" "https://www.ispyconnect.com" "Kukulo" "iSPY surveillance system"
POL_Wine_SelectPrefix "iSPY"
POL_Wine_PrefixCreate "$WINE_VERSION"
POL_System_TmpCreate "GENERAL_IE_OCX"
POL_Call POL_Install_mfc42
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ] 
then
        cd "$POL_System_TmpDir"
        POL_Download "https://ispyfiles.azureedge.net/downloads/iSpy_7_2_1_0.zip" "f66ffbb738c96e6d069007151e21c317"
        POL_Wine_WaitBefore "$TITLE"
        POL_System_unzip "$POL_System_TmpDir/iSpy_7_2_1_0.zip"
        POL_Wine "$POL_System_TmpDir/iSpySetup.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_Call POL_Install_dotnet45
POL_Shortcut "iSpy.exe" "iSpy Surveilance system"
POL_System_TmpDelete
Set_OS "win7"
POL_SetupWindow_Close
exit 0Respuestas | 
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
 Install this program
 Install this program                        