highcriteria.dictationbuddy/CLIENT_DATA/uninstall32.ins

73 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

2012-07-14 21:31:29 +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.
2013-03-13 14:51:04 +01:00
; credits: http://www.opsi.org/en/credits/
2012-07-14 21:31:29 +02:00
[Actions]
2013-03-13 14:51:04 +01:00
requiredWinstVersion >= "4.11.2.6"
2012-07-14 21:31:29 +02:00
DefVar $IniFile$
DefVar $IniCfgFile$
2013-03-13 14:51:04 +01:00
DefVar $LogDir$
2012-07-14 21:31:29 +02:00
DefVar $ExitCode$
DefVar $ProductId$
DefVar $InstallDir$
2013-03-13 15:07:07 +01:00
DefVar $LicenseRequired$
DefVar $LicensePool$
2013-03-13 14:51:04 +01:00
DefVar $OLD_VERSION$
DefVar $OLD_CREATOR_TAG$
DefVar $OLD_RELEASE$
2013-03-13 15:25:43 +01:00
DefVar $OrgName$
2012-07-14 21:31:29 +02:00
Set $LogDir$ = "%SystemDrive%\tmp"
; 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@@
; ----------------------------------------------------------------
; - Please edit the following values -
; ----------------------------------------------------------------
Set $InstallDir$ = "%ProgramFiles32Dir%\HighCriteria\DictationBuddy"
2013-03-13 15:07:07 +01:00
Set $LicenseRequired$ = "true"
Set $LicensePool$ = "p_" + $ProductId$
2012-07-14 21:31:29 +02:00
; ----------------------------------------------------------------
2013-03-13 14:51:04 +01:00
Set $IniCfgFile$ = "%ScriptPath%\opsi-" + $ProductId$ + ".ini"
2012-07-14 21:31:29 +02:00
comment "Show product picture"
2013-03-13 14:51:04 +01:00
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".png" $NAME$
2012-07-14 21:31:29 +02:00
Message "Uninstalling " + $ProductId$ + " ..."
if FileExists("%ScriptPath%\delsub32.ins")
comment "Start uninstall sub section"
Sub "%ScriptPath%\delsub32.ins"
endif
2013-03-13 15:07:07 +01:00
if $LicenseRequired$ = "true"
comment "Licensing required, free license used"
Sub_free_license
endif
[Sub_free_license]
comment "License management is enabled and will be used"
comment "Trying to free license used for the product"
DefVar $result$
Set $result$ = FreeLicense($LicensePool$)
; If there is an assignment of a license pool to the product, it is possible to use
; Set $result$ = FreeLicense("", $ProductId$)
;
; If there is an assignment of a license pool to a windows software id, it is possible to use
; DefVar $WindowsSoftwareId$
; $WindowsSoftwareId$ = "..."
; set $result$ = FreeLicense("", "", $WindowsSoftwareId$)