Forums

[Script] iVMS-4200

iVMS-4200(v2.6.1.2)

Auteur Réponses
GuerreroAzul Mercredi 13 Décembre 2023 à 19:01
GuerreroAzul

iVMS-4200

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.

Whats work:

  • Installation
  • Application start
  • Setting

What doesn't work:

  • Video viewing

Scripts

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env PlayOnLinux-Bash
# Information
# Date: 2023-12-02
# Last revision: 2023-12-02
# Wine Version: 7.22
# OS: Linux Mint 21.2 x86_64
# Author: GuerreroAzul
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Retail
 
# Reference
 
# Running the Scripts
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
POL_SetupWindow_Init
POL_Debug_Init
  
# Config
TITLE="iVMS-4200"
PREFIX="ivms4200"
POLVERSION="4.3.4"
WINEVERSION="2.12"
OSVERSION="winxp"
ARCHITECTURE="x86"
 
# Data Software
COMPANY="Hangzhou Hikvision Digital Technology Co., Ltd."
EDITOR="GuerreroAzul"
 
# Data Download
MD5_CHECKSUM="d728efecf94623b74ed349fcb92ceabe"
SETUP="iVMS-4200(v2.6.1.2).exe"
 
#Presentation
POL_SetupWindow_presentation "$TITLE" "$COMPANY" "$SITEWEB" "$EDITOR" "$TITLE"
  
# POL Validations
POL_RequiredVersion $POLVERSION || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION !nPlease update!"
  
#Linux Validations
if [ "$POL_OS" = "Linux" ]; then
    wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!"
fi
  
#Mac Validations
if [ "$POL_OS" = "Mac" ]; then
    POL_Call POL_GetTool_samba3
    source "$POL_USER_ROOT/tools/samba3/init"
fi
  
#wine Setup And Installation
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_System_SetArch "$ARQUITECTURE"
 
# Installation of Libraries
POL_Call POL_Install_corefonts
 
# Library Riched30
POL_Call POL_Install_riched30
POL_Wine_OverrideDLL "native,builtin" "riched30"
 
#Library DirectX 11
POL_Call POL_Install_d3dx9
 
#Visual Basic 2006
POL_Call POL_Install_vcrun6
 
# GDI+
# No Funcional :(
#POL_Call POL_Install_gdiplus
 
Set_OS "$OS"
# Installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
# Local Installation
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
    cd "$HOME"
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
    INSTALLER="$APP_ANSWER"
# Web Installation
else
    DOWNLOAD_URL=$DOWNLOAD_URL
    MD5_CHECKSUM="$MD5_CHECKSUM"
 
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
 
    POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM"
    INSTALLER="$POL_System_TmpDir/$SETUP"
fi
 
#Installation started
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
 
POL_Shortcut "iVMS-4200.exe" "$TITLE"
 
#End installation
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

 

 

Edité par GuerreroAzul


Vous êtes ici: Index > PlayOnLinux > [Script] iVMS-4200

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@playonlinux.com