update to new opsi builder template
This commit is contained in:
parent
988b6a7341
commit
d5ee5acce6
@ -1,13 +1,28 @@
|
|||||||
; Copyright (c) uib gmbh (www.uib.de)
|
; Copyright (c) uib gmbh (www.uib.de)
|
||||||
; This sourcecode is owned by uib gmbh
|
; This sourcecode is owned by uib gmbh
|
||||||
; and published under the Terms of the General Public License.
|
; and published under the Terms of the General Public License.
|
||||||
; credits: http://www.opsi.org/credits/
|
; credits: http://www.opsi.org/en/credits/
|
||||||
|
|
||||||
|
|
||||||
Set $UninstallProgram$ = $InstallDir$ + "\unins000.exe"
|
Set $UninstallProgram$ = $InstallDir$ + "\" + $UninstallProg$
|
||||||
|
Set $IniFile$ = $InstallDir$ + "\opsi-" + $ProductId$ + ".ini"
|
||||||
|
|
||||||
Message "Uninstalling " + $ProductId$ + " ..."
|
if FileExists($IniFile$)
|
||||||
|
Set $OLD_VERSION$ = GetValueFromInifile($IniFile$,"COMMON","VERSION","")
|
||||||
|
Set $OLD_CREATOR_TAG$ = GetValueFromInifile($IniFile$,"COMMON","CREATOR_TAG","")
|
||||||
|
Set $OLD_RELEASE$ = GetValueFromInifile($IniFile$,"COMMON","RELEASE","")
|
||||||
|
endif
|
||||||
|
Message "Uninstalling " + $ProductId$ + " " + $OLD_VERSION$ + "-" + $OLD_CREATOR_TAG$ + $OLD_RELEASE$ + " ..."
|
||||||
|
|
||||||
|
if FileExists($IniFile$)
|
||||||
|
Set $UninstallProg$ = GetValueFromInifile($IniFile$,"X86","UninstallProg","XXXXXXXX.exe")
|
||||||
|
Set $UninstallProgramOld$ = $InstallDir$ + "\" + $UninstallProg$
|
||||||
|
if FileExists($UninstallProgramOld$)
|
||||||
|
comment "Uninstall program found, starting uninstall"
|
||||||
|
Winbatch_uninstall_old
|
||||||
|
sub_check_exitcode
|
||||||
|
endif
|
||||||
|
endif
|
||||||
if FileExists($UninstallProgram$)
|
if FileExists($UninstallProgram$)
|
||||||
comment "Uninstall program found, starting uninstall"
|
comment "Uninstall program found, starting uninstall"
|
||||||
Winbatch_uninstall
|
Winbatch_uninstall
|
||||||
@ -23,14 +38,18 @@ Registry_uninstall /32Bit
|
|||||||
comment "Delete program shortcuts"
|
comment "Delete program shortcuts"
|
||||||
LinkFolder_uninstall
|
LinkFolder_uninstall
|
||||||
|
|
||||||
|
[Winbatch_uninstall_old]
|
||||||
|
"$UninstallProgramOld$" /silent /norestart /SUPPRESSMSGBOXES /nocancel
|
||||||
|
|
||||||
|
|
||||||
[Winbatch_uninstall]
|
[Winbatch_uninstall]
|
||||||
"$UninstallProgram$" /silent /norestart
|
"$UninstallProgram$" /silent /norestart /SUPPRESSMSGBOXES /nocancel
|
||||||
|
|
||||||
|
|
||||||
[Files_uninstall]
|
[Files_uninstall]
|
||||||
; Example for recursively deleting the installation directory (don't forget the trailing backslash):
|
; Example for recursively deleting the installation directory:
|
||||||
;
|
;
|
||||||
; delete -sf "$InstallDir$\"
|
del -sf "$InstallDir$\"
|
||||||
|
|
||||||
[Registry_uninstall]
|
[Registry_uninstall]
|
||||||
; Example of deleting a registry key:
|
; Example of deleting a registry key:
|
||||||
|
24
CLIENT_DATA/login.ins
Normal file
24
CLIENT_DATA/login.ins
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
; Copyright (c) uib gmbh (www.uib.de)
|
||||||
|
; This sourcecode is owned by uib gmbh
|
||||||
|
; and published under the Terms of the General Public License.
|
||||||
|
; credits: http://www.opsi.org/en/credits/
|
||||||
|
|
||||||
|
[Actions]
|
||||||
|
Message "Profile Patch for VLC ...."
|
||||||
|
|
||||||
|
comment "Did we run this script before ? - and set version stamp in profile"
|
||||||
|
if getValue("installationstate", getProductMap) = "installed"
|
||||||
|
comment "Product is installed"
|
||||||
|
if not (scriptWasExecutedBefore)
|
||||||
|
comment "loginscript was not run yet "
|
||||||
|
Files_profile_copy
|
||||||
|
Registry_currentuser_set
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
[Files_profile_copy]
|
||||||
|
copy "%Scriptpath%\profiles\*.*" "%CurrentAppdataDir%\ACME"
|
||||||
|
|
||||||
|
[Registry_currentuser_set]
|
||||||
|
openkey [HKCU\Software\ACME]
|
||||||
|
set "show_greeting_window" = "no"
|
5
CLIENT_DATA/opsi-nomachine.nxclient.ini
Normal file
5
CLIENT_DATA/opsi-nomachine.nxclient.ini
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[X86]
|
||||||
|
|
||||||
|
[COMMON]
|
||||||
|
PN=name
|
||||||
|
VERSION=version
|
@ -1,17 +1,23 @@
|
|||||||
; Copyright (c) uib gmbh (www.uib.de)
|
; Copyright (c) uib gmbh (www.uib.de)
|
||||||
; This sourcecode is owned by uib
|
; This sourcecode is owned by uib
|
||||||
; and published under the Terms of the General Public License.
|
; and published under the Terms of the General Public License.
|
||||||
; credits: http://www.opsi.org/credits/
|
; credits: http://www.opsi.org/en/credits/
|
||||||
|
|
||||||
[Actions]
|
[Actions]
|
||||||
requiredWinstVersion >= "4.10.8.6"
|
requiredWinstVersion >= "4.11.2.6"
|
||||||
|
|
||||||
DefVar $UninstallProgram$
|
DefVar $UninstallProgram$
|
||||||
|
DefVar $UninstallProgramOld$
|
||||||
|
DefVar $IniFile$
|
||||||
|
DefVar $IniCfgFile$
|
||||||
DefVar $LogDir$
|
DefVar $LogDir$
|
||||||
DefVar $ProductId$
|
DefVar $ProductId$
|
||||||
DefVar $MinimumSpace$
|
DefVar $MinimumSpace$
|
||||||
DefVar $InstallDir$
|
DefVar $InstallDir$
|
||||||
DefVar $ExitCode$
|
DefVar $ExitCode$
|
||||||
|
DefVar $OLD_VERSION$
|
||||||
|
DefVar $OLD_CREATOR_TAG$
|
||||||
|
DefVar $OLD_RELEASE$
|
||||||
|
|
||||||
Set $LogDir$ = "%SystemDrive%\tmp"
|
Set $LogDir$ = "%SystemDrive%\tmp"
|
||||||
|
|
||||||
@ -31,28 +37,30 @@ Set $LogDir$ = "%SystemDrive%\tmp"
|
|||||||
;$ProductId$ should be the name of the product in opsi
|
;$ProductId$ should be the name of the product in opsi
|
||||||
; therefore please: only lower letters, no umlauts,
|
; therefore please: only lower letters, no umlauts,
|
||||||
; no white space use '-' as a seperator
|
; no white space use '-' as a seperator
|
||||||
Set $ProductId$ = "nomachine.nxclient"
|
Set $MinimumSpace$ = "30 MB"
|
||||||
Set $MinimumSpace$ = "15 MB"
|
|
||||||
; the path were we find the product after the installation
|
; the path were we find the product after the installation
|
||||||
Set $InstallDir$ = "%ProgramFiles32Dir%\NX Client for Windows"
|
Set $InstallDir$ = "%ProgramFiles32Dir%\NX Client for Windows"
|
||||||
; ----------------------------------------------------------------
|
; ----------------------------------------------------------------
|
||||||
|
|
||||||
|
Set $IniCfgFile$ = "%ScriptPath%\opsi-" + $ProductId$ + ".ini"
|
||||||
|
|
||||||
if not(HasMinimumSpace ("%SystemDrive%", $MinimumSpace$))
|
if not(HasMinimumSpace ("%SystemDrive%", $MinimumSpace$))
|
||||||
LogError "Not enough space on %SystemDrive%, " + $MinimumSpace$ + " on drive %SystemDrive% needed for " + $ProductId$
|
LogError "Not enough space on %SystemDrive%, " + $MinimumSpace$ + " on drive %SystemDrive% needed for " + $ProductId$
|
||||||
isFatalError
|
isFatalError "No Space"
|
||||||
; Stop process and set installation status to failed
|
; Stop process and set installation status to failed
|
||||||
else
|
else
|
||||||
comment "Show product picture"
|
comment "Show product picture"
|
||||||
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$
|
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $NAME$
|
||||||
|
|
||||||
if FileExists("%ScriptPath%\delsub32.ins")
|
if FileExists("%ScriptPath%\delsub32.ins")
|
||||||
comment "Start uninstall sub section"
|
comment "Start uninstall sub section"
|
||||||
Sub "%ScriptPath%\delsub32.ins"
|
Sub "%ScriptPath%\delsub32.ins"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
Message "Installing " + $ProductId$ + " ..."
|
Message "Installing " + $ProductId$ + " "+ $VERSION$ + "-" + $CREATOR_TAG$ + $RELEASE$ + " ..."
|
||||||
|
|
||||||
comment "Start setup program"
|
comment "Start setup program"
|
||||||
|
ChangeDirectory "%SCRIPTPATH%"
|
||||||
Winbatch_install
|
Winbatch_install
|
||||||
Sub_check_exitcode
|
Sub_check_exitcode
|
||||||
|
|
||||||
@ -65,21 +73,19 @@ else
|
|||||||
comment "Create shortcuts"
|
comment "Create shortcuts"
|
||||||
LinkFolder_install
|
LinkFolder_install
|
||||||
|
|
||||||
comment "Test for installation success"
|
|
||||||
; Test if software marked as installed in registry
|
|
||||||
; if (GetRegistryStringValue32("[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}] DisplayName") = "")
|
|
||||||
; logError "Fatal: After Installation 32 bit [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}] not found"
|
|
||||||
; isFatalError
|
|
||||||
; else
|
|
||||||
; comment "Successful Installation"
|
|
||||||
; endif
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
[Winbatch_install]
|
[Winbatch_install]
|
||||||
"$InstallExe$" /silent /norestart
|
"$InstallExe$" /sp- /silent /norestart /nocancel /SUPPRESSMSGBOXES
|
||||||
|
"$Install75dpiExe$" /sp- /silent /norestart /nocancel /SUPPRESSMSGBOXES
|
||||||
|
"$Install100dpiExe$" /sp- /silent /norestart /nocancel /SUPPRESSMSGBOXES
|
||||||
|
"$InstallMiscExe$" /sp- /silent /norestart /nocancel /SUPPRESSMSGBOXES
|
||||||
|
"$InstallOthersExe$" /sp- /silent /norestart /nocancel /SUPPRESSMSGBOXES
|
||||||
|
|
||||||
[Files_install]
|
[Files_install]
|
||||||
|
; copy the ini file to the InstallDir
|
||||||
|
copy "$IniCfgFile$" "$InstallDir$"
|
||||||
|
|
||||||
; Example of recursively copying some files into the installation directory:
|
; Example of recursively copying some files into the installation directory:
|
||||||
;
|
;
|
||||||
; copy -s "%ScriptPath%\files\*.*" "$InstallDir$"
|
; copy -s "%ScriptPath%\files\*.*" "$InstallDir$"
|
||||||
|
@ -1,16 +1,22 @@
|
|||||||
; Copyright (c) uib gmbh (www.uib.de)
|
; Copyright (c) uib gmbh (www.uib.de)
|
||||||
; This sourcecode is owned by uib gmbh
|
; This sourcecode is owned by uib gmbh
|
||||||
; and published under the Terms of the General Public License.
|
; and published under the Terms of the General Public License.
|
||||||
; credits: http://www.opsi.org/credits/
|
; credits: http://www.opsi.org/en/credits/
|
||||||
|
|
||||||
[Actions]
|
[Actions]
|
||||||
requiredWinstVersion >= "4.10.8.6"
|
requiredWinstVersion >= "4.11.2.6"
|
||||||
|
|
||||||
DefVar $UninstallProgram$
|
DefVar $UninstallProgram$
|
||||||
|
DefVar $UninstallProgramOld$
|
||||||
|
DefVar $IniFile$
|
||||||
|
DefVar $IniCfgFile$
|
||||||
DefVar $LogDir$
|
DefVar $LogDir$
|
||||||
DefVar $ExitCode$
|
DefVar $ExitCode$
|
||||||
DefVar $ProductId$
|
DefVar $ProductId$
|
||||||
DefVar $InstallDir$
|
DefVar $InstallDir$
|
||||||
|
DefVar $OLD_VERSION$
|
||||||
|
DefVar $OLD_CREATOR_TAG$
|
||||||
|
DefVar $OLD_RELEASE$
|
||||||
|
|
||||||
Set $LogDir$ = "%SystemDrive%\tmp"
|
Set $LogDir$ = "%SystemDrive%\tmp"
|
||||||
|
|
||||||
@ -27,13 +33,13 @@ Set $LogDir$ = "%SystemDrive%\tmp"
|
|||||||
; ----------------------------------------------------------------
|
; ----------------------------------------------------------------
|
||||||
; - Please edit the following values -
|
; - Please edit the following values -
|
||||||
; ----------------------------------------------------------------
|
; ----------------------------------------------------------------
|
||||||
Set $ProductId$ = "nomachine.nxclient"
|
|
||||||
Set $InstallDir$ = "%ProgramFiles32Dir%\NX Client for Windows"
|
Set $InstallDir$ = "%ProgramFiles32Dir%\NX Client for Windows"
|
||||||
; ----------------------------------------------------------------
|
; ----------------------------------------------------------------
|
||||||
|
|
||||||
|
Set $IniCfgFile$ = "%ScriptPath%\opsi-" + $ProductId$ + ".ini"
|
||||||
|
|
||||||
comment "Show product picture"
|
comment "Show product picture"
|
||||||
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$
|
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $NAME$
|
||||||
|
|
||||||
Message "Uninstalling " + $ProductId$ + " ..."
|
Message "Uninstalling " + $ProductId$ + " ..."
|
||||||
|
|
||||||
|
@ -12,14 +12,37 @@ ADVICE=""
|
|||||||
# Valid value: restricted | public
|
# Valid value: restricted | public
|
||||||
TYPE="public"
|
TYPE="public"
|
||||||
|
|
||||||
DL_FILE[0]="nx.png"
|
DL_FILE[0]="nomachine.jpg"
|
||||||
DL_SOURCE[0]="http://img.vivaolinux.com.br/comunidades/imagens/fotos/nx.png"
|
DL_SOURCE[0]="http://apps.schwartzplan.net/dotneticons/nomachine.jpg"
|
||||||
|
|
||||||
DL_FILE[1]="nxclient-3.5.0-9.exe"
|
DL_FILE[1]="nxclient-3.5.0-9.exe"
|
||||||
DL_SOURCE[1]="http://64.34.173.142/download/3.5.0/Windows/nxclient-3.5.0-9.exe"
|
DL_SOURCE[1]="http://64.34.173.142/download/3.5.0/Windows/nxclient-3.5.0-9.exe"
|
||||||
DL_ARCH[1]="X86"
|
DL_ARCH[1]="X86"
|
||||||
DL_WINST_NAME[1]=InstallExe
|
DL_WINST_NAME[1]=InstallExe
|
||||||
|
|
||||||
|
DL_FILE[2]="nxfonts-75dpi-3.5.0-1.exe"
|
||||||
|
DL_SOURCE[2]="http://64.34.173.142/download/nxfonts/nxfonts-75dpi-3.5.0-1.exe"
|
||||||
|
DL_ARCH[2]="X86"
|
||||||
|
DL_WINST_NAME[2]=Install75dpiExe
|
||||||
|
|
||||||
|
DL_FILE[3]="nxfonts-100dpi-3.5.0-1.exe"
|
||||||
|
DL_SOURCE[3]="http://64.34.173.142/download/nxfonts/nxfonts-100dpi-3.5.0-1.exe"
|
||||||
|
DL_ARCH[3]="X86"
|
||||||
|
DL_WINST_NAME[3]=Install100dpiExe
|
||||||
|
|
||||||
|
DL_FILE[4]="nxfonts-misc-3.5.0-1.exe"
|
||||||
|
DL_SOURCE[4]="http://64.34.173.142/download/nxfonts/nxfonts-misc-3.5.0-1.exe"
|
||||||
|
DL_ARCH[4]="X86"
|
||||||
|
DL_WINST_NAME[4]=InstallMiscExe
|
||||||
|
|
||||||
|
DL_FILE[5]="nxfonts-others-3.5.0-1.exe"
|
||||||
|
DL_SOURCE[5]="http://64.34.173.142/download/nxfonts/nxfonts-others-3.5.0-1.exe"
|
||||||
|
DL_ARCH[5]="X86"
|
||||||
|
DL_WINST_NAME[5]=InstallOthersExe
|
||||||
|
|
||||||
# File array index for the image showing while installing the program
|
# File array index for the image showing while installing the program
|
||||||
ICON_DL_INDEX=0
|
ICON_DL_INDEX=0
|
||||||
|
|
||||||
|
OPSI_INI_SECTION[0]="X86"
|
||||||
|
OPSI_INI_OPTION[0]="UninstallProg"
|
||||||
|
OPSI_INI_VALUE[0]="unins000.exe"
|
||||||
|
1
nomachine.jpg.sha1sum
Normal file
1
nomachine.jpg.sha1sum
Normal file
@ -0,0 +1 @@
|
|||||||
|
7eb24e8f338cfd5bd460c693818ae19b6ace8157 /home/mario/.opsi-dist-cache/nomachine.nxclient-3.5.0.9//nomachine.jpg
|
@ -1 +0,0 @@
|
|||||||
08a378377591763d96c6a37da8d3abb16f9f9def /home/mario/.opsi-dist-cache/nomachine.nxclient-3.5.0.7//nx.png
|
|
1
nxfonts-100dpi-3.5.0-1.exe.sha1sum
Normal file
1
nxfonts-100dpi-3.5.0-1.exe.sha1sum
Normal file
@ -0,0 +1 @@
|
|||||||
|
57d86457ccdd39c707768e58d32572e228153d35 /home/mario/.opsi-dist-cache/nomachine.nxclient-3.5.0.9/X86/nxfonts-100dpi-3.5.0-1.exe
|
1
nxfonts-75dpi-3.5.0-1.exe.sha1sum
Normal file
1
nxfonts-75dpi-3.5.0-1.exe.sha1sum
Normal file
@ -0,0 +1 @@
|
|||||||
|
b56471b4ade514903d49243c9e4ac7cfeb83f86d /home/mario/.opsi-dist-cache/nomachine.nxclient-3.5.0.9/X86/nxfonts-75dpi-3.5.0-1.exe
|
1
nxfonts-misc-3.5.0-1.exe.sha1sum
Normal file
1
nxfonts-misc-3.5.0-1.exe.sha1sum
Normal file
@ -0,0 +1 @@
|
|||||||
|
1d640895520107b9471d5c1e0735eafda20cd2e6 /home/mario/.opsi-dist-cache/nomachine.nxclient-3.5.0.9/X86/nxfonts-misc-3.5.0-1.exe
|
1
nxfonts-others-3.5.0-1.exe.sha1sum
Normal file
1
nxfonts-others-3.5.0-1.exe.sha1sum
Normal file
@ -0,0 +1 @@
|
|||||||
|
8667fec627bd765e1eb99a74c330a3f2726d42ac /home/mario/.opsi-dist-cache/nomachine.nxclient-3.5.0.9/X86/nxfonts-others-3.5.0-1.exe
|
Loading…
Reference in New Issue
Block a user