The forum

[Script] SADP Tool

SADP software is used for searching the online devices in the same network. It supports viewing the device information, activating the device, editing the network parameters of the device and resetting the device password, etc.

Author Replies
GuerreroAzul Wednesday 21 February 2024 at 20:30
GuerreroAzul

SADP Tool (v.3.0.0.10)

                    

Software Description

            

Is a video management software that uses a distributed structure to provide centralized management to all connectable devices. Allows you to manage the NVR, DVR, IP cameras and decoders.

Download Link

Whats work:

  • Installation
  • Application start
  • Setting

What doesn't work:

  • It works when you restart the computer
  • Get error when installing

Screenshots

    

Script

#!/usr/bin/env playonlinux-bash
: '
Date: See changelog.
Last revision: See changelog.
Wine version used: See changelog.
Distribution used to test: See changelog.
Author: GuerreroAzul
License: Retail

CHANGELOG
[GuerrreroAzul] (2024-02-20 15:50 GMT-6) Wine 8.6 / Linux Mint 21.3 x86_64
  Creation of the script

REFERENCE
GuerreroAzul: Documentation POL. - https://www.playonlinux.com/en/topic-19123-Script_iVMS4200_Not_functional.html
GuerreroAzul: LinkDownload - https://www.hikvisioneurope.com/eu/portal/?dir=portal/Technical%20Materials/11%20%20Software%E3%80%90For%20Latest%20Tools%26Software%2C%20please%20download%20directly%20from%20Hikvision%20Website%E3%80%91/00%20%20Software%20Tool%20Package/01%20%20%20SADP%20Tools/V3.0.0.10
'

       
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

#Setting
TITLE="SADP Tool"
PREFIX="sadp"
CATEGORY="Accesories;"
WINEVERSION="8.6"
OSVERSION="win7"
EDITHOR="GuerreroAzul"
COMPANY="Hangzhou Hikvision Digital Technology Co. Ltd."
HOMEPAGE="https://www.hikvision.com"
LOGO="https://imgur.com/74UtI0N.png"
BANNER="https://imgur.com/Di6W76j.png"
DOWNLOAD_URL="https://www.hikvisioneurope.com/eu/portal/portal/Technical%20Materials/11%20%20Software%E3%80%90For%20Latest%20Tools%26Software%2C%20please%20download%20directly%20from%20Hikvision%20Website%E3%80%91/00%20%20Software%20Tool%20Package/01%20%20%20SADP%20Tools/V3.0.0.10/SADPTool.exe"
FILE_INSTALL="SADPTool.exe"
MD5_CHECKSUM="ec961f3c538934195bfe49af07ad514c"

#Setup Image
POL_GetSetupImages "$LOGO" "$BANNER" "$TITLE"

# Starting the script
POL_SetupWindow_Init

# Welcome message
POL_SetupWindow_presentation "$TITLE" "$COMPANY" "$HOMEPAGE" "$EDITHOR" 
"$TITLE"

# PlayOnLinux Version Check
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$(eval_gettext 'TITLE wont work with $APPLICATION_TITLE $VERSION\n Please update!')"

# Check winbind library is installed.
if [ "$POL_OS" = "Linux" ]; then
  wbinfo -V || POL_Debug_Fatal "$(eval_gettext 'Please install winbind before installing.')" "$TITLE!"
fi

# Prepare resources for installation!
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
Set_OS "$OSVERSION"

#Library
POL_Call POL_Install_DXVK_2_3
POL_Call POL_Install_d3dx11

# Script start
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
  POL_System_TmpCreate "$PREFIX"
  cd "$POL_System_TmpDir"
  POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM"
  Setup="$POL_System_TmpDir/$FILE_INSTALL"
else
  cd "$HOME"
  POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE"
  Setup="$APP_ANSWER"
fi

# Install Program
POL_SetupWindows_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE"
POL_Wine "$Setup"

# Shortcut 
POL_Shortcut "$FILE_INSTALL" "$TITLE" "" "" "$CATEGORY"

# End script
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0