artifex.ghostscript/CLIENT_DATA/uninstall3264.ins

59 lines
2.0 KiB
Plaintext
Raw Normal View History

2011-06-24 22:27:59 +02:00
; 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/credits/
[Actions]
requiredWinstVersion >= "4.10.8.6"
2012-02-28 07:30:34 +01:00
DefVar $OldUninstallProgram32$
DefVar $OldUninstallProgram64$
2012-02-28 04:33:18 +01:00
DefVar $UninstallProgram32$
DefVar $UninstallProgram64$
2011-06-24 22:27:59 +02:00
DefVar $LogDir$
DefVar $ExitCode$
DefVar $ProductId$
2012-02-28 07:30:34 +01:00
DefVar $OldInstallDir32$
DefVar $OldInstallDir64$
2011-06-24 22:27:59 +02:00
DefVar $InstallDir32$
DefVar $InstallDir64$
DefVar $INST_SystemType$
DefVar $INST_architecture$
Set $INST_SystemType$ = GetSystemType
set $INST_architecture$ = GetProductProperty("install_architecture","system specific")
Set $LogDir$ = "%SystemDrive%\tmp"
2012-02-27 04:39:36 +01:00
; The token BUILDER_VARIABLES will be replaced by opsi-builder.sh
; and adds the following variables:
; from builder-product.cfg : all variables definded by attribute WINST[index]
; from builder-product.cfg : VENDOR PN VERSION RELEASE PRIORITY ADVICE TYPE
; from opsi-builder.cfg : CREATOR_TAG CREATOR_NAME CREATOR_EMAIL
; auto generated winst-variables
; $IconFile$: path to product picture
;
@@BUILDER_VARIABLES@@
2011-06-24 22:27:59 +02:00
; ----------------------------------------------------------------
; - Please edit the following values -
; ----------------------------------------------------------------
Set $ProductId$ = "ghostscript"
2012-02-28 06:13:04 +01:00
Set $InstallDir32$ = "%ProgramFiles32Dir%\gs\gs" + $VERSION$
Set $InstallDir64$ = "%ProgramFiles64Dir%\gs\gs" + $VERSION$
2012-02-28 07:30:34 +01:00
Set $OldInstallDir32$ = "%ProgramFiles32Dir%\gs\gs" + $OLDVERSION$
Set $OldInstallDir64$ = "%ProgramFiles64Dir%\gs\gs" + $OLDVERSION$
2011-06-24 22:27:59 +02:00
; ----------------------------------------------------------------
comment "Show product picture"
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $ProductId$
Message "Uninstalling " + $ProductId$ + " ..."
2012-02-28 04:33:18 +01:00
if FileExists("%ScriptPath%\delsub3264.ins")
2011-06-24 22:27:59 +02:00
comment "Start uninstall sub section"
2012-02-28 04:33:18 +01:00
Sub "%ScriptPath%\delsub3264.ins"
2011-06-24 22:27:59 +02:00
endif