Seite 1 von 1

PDF Creator 2.3.2

Verfasst: 30 Sep 2016, 11:05
von opsi.simi
ich wollte eine delsub.ins für den PDF Creator 2.3.2 bauen.

Nur leider stoße ich an ein Probleme und komme nicht weiter,
da es jetzt seid der neusten Version die unins001.exe gibt (die glaub ich auch an einer anderen stelle liegt)
C:\Programme\PDFCreator

ich würde gerne in meine delsub.ins beide (1.7.3 und 2.3.2) oder auch gern alle alten Versionen deinstallieren.
Unter der Vorherigen Version 1.7.3 hieß die Deinstallation noch unins000.exe

ich habe das Paket zwar mit unins000.exe und unins001.exe gebaut aber es passiert einfach gar nichts :(
es wird auch nichts deinstalliert. Habe auf meiner Maschine Testweise mal die neue Version installiert 2.3.2
um mein Paket zu testen, es wird nichts deinstalliert

meine bisherige delsub.ins:

Code: Alles auswählen

Set $UninstallProgram32$ = $InstallDir32$ + "\unins000.exe"
 
Set $UninstallProgram64$ = $InstallDir64$ + "\unins001.exe"
 
if (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only")
	Message "Uninstalling " + $ProductId$ + " 32 Bit..."
 
	if FileExists($UninstallProgram32$)
		comment "uninst.exe found, starting uninstallation"
		Winbatch_uninstall_32 /WaitforProcessending "Au_.exe" /Timeoutseconds 10
		sub_check_exitcode
	endif
endif
 
if ($INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only"))
	Message "Uninstalling " + $ProductId$ + " 64 Bit..."
 
	if FileExists($UninstallProgram64$)
		comment "uninst.exe found, starting uninstallation"
		Winbatch_uninstall_64 /WaitforProcessending "Au_.exe" /Timeoutseconds 10
		sub_check_exitcode
	endif
endif
 
[Winbatch_uninstall_32]
"$UninstallProgram32$" /S
 
[Winbatch_uninstall_64]
"$UninstallProgram64$" /S
 
[Sub_check_exitcode]
comment "Test for installation success via exit code"
set $ExitCode$ = getLastExitCode
; informations to exit codes see
; http://msdn.microsoft.com/en-us/library/aa372835(VS.85).aspx
; http://msdn.microsoft.com/en-us/library/aa368542.aspx
if ($ExitCode$ = "0")
	comment "Looks good: setup program gives exitcode zero"
else
	comment "Setup program gives a exitcode unequal zero: " + $ExitCode$
	if ($ExitCode$ = "1605")
		comment "ERROR_UNKNOWN_PRODUCT	1605	This action is only valid for products that are currently installed."
		comment "Uninstall of a not installed product failed - no problem"
	else
		if ($ExitCode$ = "1641")
			comment "looks good: setup program gives exitcode 1641"
			comment "ERROR_SUCCESS_REBOOT_INITIATED	1641	The installer has initiated a restart. This message is indicative of a success."
		else
			if ($ExitCode$ = "3010")
				comment "looks good: setup program gives exitcode 3010"
				comment "ERROR_SUCCESS_REBOOT_REQUIRED	3010	A restart is required to complete the install. This message is indicative of a success."
			else
				logError "Fatal: Setup program gives an unknown exitcode unequal zero: " + $ExitCode$
				isFatalError
			endif
		endif
	endif
endif

Re: PDF Creator 2.3.2

Verfasst: 04 Okt 2016, 08:50
von larsg
Bin mir nicht ganz sicher was du mit unins001.exe meinst, bei mir funktioniert die Deinstallation mit unins000.exe.

Theorie: Die alte Version wurde nicht als solche erkannt und entsprechend deinstalliert, aber der Installer hat bemerkt das die Datei unins000.exe schon existiert und legt dann eine neue mit Namen unins001.exe an.

Ein Blick in die Logdatei (loglevel 6) würde mehr Aufschluss geben woran es bei dir hängt.


Was sich nach Version 2.1.2 geändert hat, ist der Pfad in der Registry, was wichtig wird wenn du die automatischen Updates und den Willkommensdialog abstellen willst.
Aber ich sehe nicht inwiefern das dein Skript beeinflussen soll.

Re: PDF Creator 2.3.2

Verfasst: 17 Okt 2016, 16:09
von opsi.simi
Hi larsg

danke für die Antwort, es ist wirklich so wenn es nicht sauber deinstalliert wird,
eine unins001.exe angelegt wird.

also so weit so gut, meine Deinstallation funktioniert jetzt :P

Welche Einträge in der Registry meinst du ? kannst du mir das posten oder als PN schicken?


das einzige was jetzt noch fuchst ist die Installation, die funktioniert nämlich auf meinem Admin Rechner aber sobald ich es an den User rausschick, bricht das Paket ab und es wird nichts installiert :/

Code: Alles auswählen

[Initial]
LogLevel=9
;  Log Errors in Logfile but don't abort:
ExitOnError=false
; Show syntax errors in the script:
ScriptErrorMessages=on
; Dont trace step by step through the script:
TraceMode=off
; let started programs run in front of the winst window
StayOnTop=false
 
 
[Actions]
requiredWinstVersion >= "4.10.8.6"
 
DefVar $MsiId32$
DefVar $MsiId64$
DefVar $LogDir$
DefVar $ProductId$
DefVar $MinimumSpace$
DefVar $InstallDir32$
DefVar $InstallDir64$
DefVar $ExitCode$
DefVar $LicenseRequired$
DefVar $LicenseKey$
DefVar $LicensePool$
DefVar $INST_SystemType$
DefVar $INST_architecture$
DefVar $Version$
DefVar $Inst_Cmd$
DefVar $Inst_Prg32$
DefVar $Inst_Prg64$
DefVar $Uninst_Cmd$
DefVar $Uninst_Prg$
 
Set $INST_SystemType$ = GetSystemType
set $INST_architecture$ = GetProductProperty("install_architecture","system specific")
 
 
Set $LogDir$ = "%SystemDrive%\tmp"
 
; ----------------------------------------------------------------
; - Please edit the following values                             -
; ----------------------------------------------------------------
;$ProductId$ should be the name of the product in opsi
; therefore please: only lower letters, no umlauts,
; no white space use '-' as a seperator
Set $ProductId$       = "PDF-Creator"
Set $Version$         = "1.2.3"
Set $MinimumSpace$    = "10 MB"
; the path were we find the product after the installation
Set $InstallDir32$    = "%ProgramFilesDir%\PDFCreator\"
Set $LicenseRequired$ = "false"
Set $LicensePool$     = "p_" + $ProductId$
Set $Inst_Prg32$      = "PDFCreator-2_3_2-Setup.exe"
Set $Inst_Cmd$        = '/SILENT /NOCANCEL /NOICONS /LANG=De /NORESTART /LOADINF=%ScriptPath%\pdfcreator.ini'
Set $Uninst_Cmd$      = '/SILENT /NOCANCEL'
Set $Uninst_Prg$      = "unins000.exe"
; ----------------------------------------------------------------
 
comment "Show product picture"
ShowBitmap "%ScriptPath%\" + $ProductId$ + ".jpg" $ProductId$
 
if not(HasMinimumSpace ("%SystemDrive%", $MinimumSpace$))
        LogError "Not enough space on %SystemDrive%, " + $MinimumSpace$ + " on drive %SystemDrive% needed for " + $ProductId$
        isFatalError
        ; Stop process and set installation status to failed
else
 
        if FileExists("$InstallDir32$\$Uninst_Prg$")
                comment "Start uninstall sub section"
                Sub "%ScriptPath%\delsub.ins"
        endif
 
        if $LicenseRequired$ = "true"
                comment "Licensing required, reserve license and get license key"
                Sub_get_licensekey
        endif
 
        comment "Installiere "+$ProductID$+"..."
 
        if (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only")
                Message "Installiere " + $ProductId$+" (32 Bit)"
                comment "Start setup program"
                Winbatch_install_32
                Sub_check_exitcode
        endif
 
        if ($INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only"))
                Message "Installiere " + $ProductId$+" (64 Bit)"
                comment "Start setup program"
; KEIN Fehler: Das Programm gibt es nur als 32 Bit-Variante, darum nachfolgend:
                Winbatch_install_32
                Sub_check_exitcode
        endif
 
endif
 
[Winbatch_install_32]
"%ScriptPath%\$Inst_Prg32$" $Inst_Cmd$
 
[Sub_check_exitcode]
comment "Test for installation success via exit code"
set $ExitCode$ = getLastExitCode
if ($ExitCode$ = "0")
        comment "Looks good: setup program gives exitcode zero"
else
        comment "Setup program gives a exitcode unequal zero: " + $ExitCode$
        if ($ExitCode$ = "1605")
                comment "ERROR_UNKNOWN_PRODUCT  1605    This action is only valid for products that are currently installed."
                comment "Uninstall of a not installed product failed - no problem"
        else
                if ($ExitCode$ = "1641")
                        comment "looks good: setup program gives exitcode 1641"
                        comment "ERROR_SUCCESS_REBOOT_INITIATED 1641    The installer has initiated a restart. This message is indicative of a success."
                else
                        if ($ExitCode$ = "3010")
                                comment "looks good: setup program gives exitcode 3010"
                                comment "ERROR_SUCCESS_REBOOT_REQUIRED  3010    A restart is required to complete the install. This message is indicative of a success."
                        else
                                logError "Fatal: Setup program gives an unknown exitcode unequal zero: " + $ExitCode$
                                isFatalError
                        endif
                endif
        endif
endif

Re: PDF Creator 2.3.2

Verfasst: 17 Okt 2016, 16:27
von larsg
Zu deinem Problem: ohne die Logdatei wird es schwierig was dazu zu sagen.


Hiermit schaltest du die automatischen Updates ab, und entfernst den Nag-Screen beim ersten Aufruf des Anwenders:

Code: Alles auswählen

DefVar $Product_Version_Current$

...

; Der Teil hier gehört unter den Installationsaufruf!

Set $Product_Version_Current$ = GetRegistryStringValueSysNative("[HKLM\SOFTWARE\pdfforge\PDFCreator\Program] ApplicationVersion")
Set $Product_Version_Current$ = "v"+TakeString(0,SplitString($Product_Version_Current$,"."))+"."+TakeString(1,SplitString($Product_Version_Current$,"."))+"."+TakeString(2,SplitString($Product_Version_Current$,"."))+" Build "+TakeString(3,SplitString($Product_Version_Current$,"."))
Registry_config /AllNTUserDats

...

[Registry_config]
OpenKey [HKCU\Software\pdfforge\PDFCreator]
Set "LatestWelcomeVersion" = REG_SZ:"$Product_Version_Current$"

OpenKey [HKCU\Software\pdfforge\PDFCreator\Settings\ApplicationSettings]
Set "UpdateInterval" = REG_SZ:"Never"
Ja, ich bin ein Perfektionist ;)

Re: PDF Creator 2.3.2

Verfasst: 19 Okt 2016, 13:12
von opsi.simi
Hi, super vielen dank :)

hier mal mein Log File

Code: Alles auswählen

[1] [Okt 19 08:14:08:258] --
[1] [Okt 19 08:14:08:258] --
[1] [Okt 19 08:14:08:258] c:\opsi.org\log\\opsi-script-part-Ep02Vd09.log
[1] [Okt 19 08:14:08:259] opsi-script 4.11.5.16 started at >>
[1] [Okt 19 08:14:08:259] startmessage opsi-script created at CentralForm.FormCreate: 19.10.2016 08:14:08
[1] [Okt 19 08:14:08:259] Loading skin from: C:\Program Files (x86)\opsi.org\opsi-client-agent\opsi-winst\winstskin
[1] [Okt 19 08:14:08:259] startmessage StartProgramModes and create log: 19.10.2016 08:14:08
[1] [Okt 19 08:14:08:259] pm: 5 19.10.2016 08:14:08
[1] [Okt 19 08:14:08:259] startmessage start opsi service connection: 19.10.2016 08:14:08
[1] [Okt 19 08:14:08:259] startmessage: opsidata initialized: 19.10.2016 08:14:08
[1] [Okt 19 08:14:08:259] startmessage create log: 19.10.2016 08:14:08
[6] [Okt 19 08:14:09:308] JSON Bench for getDepotId "params":["pc-it02."],"id":1} Start: 08:14:08:259 Time: 00:00:01:049
[6] [Okt 19 08:14:09:378] JSON service request https://....../rpc backend_setOptions
[6] [Okt 19 08:14:09:437] JSON Bench for backend_setOptions "params":[{"processProductOnClientSequence":true}] Start: 08:14:09:377 Time: 00:00:00:060
[6] [Okt 19 08:14:09:503] JSON service request https://....../rpc productOnClient_getObjects
[6] [Okt 19 08:14:10:000] JSON Bench for productOnClient_getObjects "params":["",{"clientId":"pc-it02.   Start: 08:14:09:503 
Time: 00:00:00:497
[6] [Okt 19 08:14:10:073] JSON service request https://....../rpc backend_setOptions
[6] [Okt 19 08:14:10:133] JSON Bench for backend_setOptions "params":[{"processProductOnClientSequence":false} Start: 08:14:10:073 Time: 00:00:00:060
[5] [Okt 19 08:14:10:199] Computername:pc-it02.snt.spaun-snt.de
[5] [Okt 19 08:14:10:199] Computername according to Environment Variable :PC-IT02
[5] [Okt 19 08:14:10:199] opsi service URL https://............
[5] [Okt 19 08:14:10:199] Depot path:  p:\
[5] [Okt 19 08:14:10:199] 
[5] [Okt 19 08:14:10:207] bootmode BKSTD
[5] [Okt 19 08:14:10:207] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[5] [Okt 19 08:14:10:207] Resolved sequence of products (19.10.2016 08:14:10): 
[5] [Okt 19 08:14:10:207] Product 1 	pdfcreator : setup
[5] [Okt 19 08:14:10:207] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[6] [Okt 19 08:14:10:207] JSON service request https://............/rpc getProduct_hash
[6] [Okt 19 08:14:10:388] JSON Bench for getProduct_hash "params":["pdfcreator","srv-opsi01 Start: 08:14:10:207 Time: 00:00:00:181
[6] [Okt 19 08:14:10:468] JSON service request https://............../rpc productOnClient_getObjects
[6] [Okt 19 08:14:10:556] JSON Bench for productOnClient_getObjects "params":["",{"clientId":"pc-it02 Start: 08:14:10:468 
Time: 00:00:00:088
[6] [Okt 19 08:14:10:627] Actionrequest for product: pdfcreator is (original/actual): (setup / setup)
[6] [Okt 19 08:14:10:645] [pdfcreator] Actionrequest for Product: pdfcreator is: setup
[6] [Okt 19 08:14:10:646] [pdfcreator] JSON service request https://........../rpc getProductProperties_hash
[6] [Okt 19 08:14:10:905] [pdfcreator] JSON Bench for getProductProperties_hash "params":["pdfcreator","pc-it02."] Start: 08:14:10:645 Time: 00:00:00:260
[6] [Okt 19 08:14:10:973] [pdfcreator] JSON service request https://............/rpc getProduct_hash
[6] [Okt 19 08:14:11:142] [pdfcreator] JSON Bench for getProduct_hash "params":["pdfcreator","srv-opsi01. Start: 08:14:10:973 
Time: 00:00:00:169
[6] [Okt 19 08:14:11:212] [pdfcreator] JSON service request https://............./rpc productOnClient_getObjects
[6] [Okt 19 08:14:11:328] [pdfcreator] JSON Bench for productOnClient_getObjects "params":["",{"clientId":"pc-it02. Start: 08:14:11:212 
Time: 00:00:00:116
[5] [Okt 19 08:14:11:394] [pdfcreator] scriptname: "setup.ins", special path: "p:\pdfcreator\"
[6] [Okt 19 08:14:11:395] [pdfcreator] JSON service request https://............/rpc productOnClient_updateObject
[6] [Okt 19 08:14:11:493] [pdfcreator] JSON Bench for productOnClient_updateObject "params":[{"clientId":"pc-it02."," Start: 08:14:11:395 
Time: 00:00:00:098
[1] [Okt 19 08:14:11:569] [pdfcreator] 
[1] [Okt 19 08:14:11:569] [pdfcreator] ============ Version 4.11.5.16 script "p:\pdfcreator\setup.ins"
[1] [Okt 19 08:14:11:569] [pdfcreator]              used script encoding: cp1252
[1] [Okt 19 08:14:11:569] [pdfcreator]              used system encoding: cp1252
[1] [Okt 19 08:14:11:569] [pdfcreator]              start: 2016-10-19  08:14:11 
[1] [Okt 19 08:14:11:569] [pdfcreator]              installing product: pdfcreator_2.4-0
[1] [Okt 19 08:14:11:569] [pdfcreator]              on client named    "pc-it02."
[1] [Okt 19 08:14:11:574] [pdfcreator]              loggedin user    "normaluser"
[1] [Okt 19 08:14:11:574] [pdfcreator]              opsi-script running as    "SYSTEM"
[1] [Okt 19 08:14:11:574] [pdfcreator]              opsi-script running with admin privileges
[1] [Okt 19 08:14:11:574] [pdfcreator]              opsi-script running in standard script mode
[1] [Okt 19 08:14:11:574] [pdfcreator] executing: "C:\Program Files (x86)\opsi.org\opsi-client-agent\opsi-winst\winst32.exe"
[1] [Okt 19 08:14:11:574] [pdfcreator] system infos:
[1] [Okt 19 08:14:11:581] [pdfcreator] FF-50-56-C0-00-08  -  PC hardware address
[1] [Okt 19 08:14:11:581] [pdfcreator] PC-IT02............  -  IP name 
[1] [Okt 19 08:14:11:581] [pdfcreator] ........... -  IP address
[1] [Okt 19 08:14:11:581] [pdfcreator] DEU  -  System default locale 
[1] [Okt 19 08:14:11:581] [pdfcreator] MS Windows 6.1 64 Bit
[1] [Okt 19 08:14:11:581] [pdfcreator] opsi service version : 4
[1] [Okt 19 08:14:11:582] [pdfcreator] 
[6] [Okt 19 08:14:11:582] [pdfcreator] Registry key [HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion]  opened
[6] [Okt 19 08:14:11:582] [pdfcreator] Key closed
[4] [Okt 19 08:14:11:637] [pdfcreator] Warning: depricated: <LogLevel=> please use <setLogLevel=> 
[1] [Okt 19 08:14:11:637] [pdfcreator] LogLevel was 6
[1] [Okt 19 08:14:11:637] [pdfcreator] LogLevel set to 13
[5] [Okt 19 08:14:11:637] [pdfcreator] ExitOnError was False is set to false
[5] [Okt 19 08:14:11:637] [pdfcreator] ReportMessages was True is set to false
[6] [Okt 19 08:14:11:639] [pdfcreator] opsi-script has version  4.11.5.16, required is : >= 4.10.8.6
[5] [Okt 19 08:14:11:640] [pdfcreator] Set  $INST_SystemType$ = GetSystemType
[6] [Okt 19 08:14:11:640] [pdfcreator]   The value of the variable "$INST_SystemType$" is now: "64 Bit System"
[5] [Okt 19 08:14:11:640] [pdfcreator] Set  $INST_architecture$ = GetProductProperty("install_architecture","system specific")
[4] [Okt 19 08:14:11:640] [pdfcreator] Property not existing in GetProductProperty - using default
[6] [Okt 19 08:14:11:640] [pdfcreator]   The value of the variable "$INST_architecture$" is now: "system specific"
[5] [Okt 19 08:14:11:640] [pdfcreator] Set  $LogDir$ = "C:\tmp"
[6] [Okt 19 08:14:11:640] [pdfcreator]   The value of the variable "$LogDir$" is now: "C:\tmp"
[5] [Okt 19 08:14:11:640] [pdfcreator] Set  $ProductId$       = "pdfcreator"
[6] [Okt 19 08:14:11:640] [pdfcreator]   The value of the variable "$ProductId$" is now: "pdfcreator"
[5] [Okt 19 08:14:11:640] [pdfcreator] Set  $Version$         = "1.2.3"
[6] [Okt 19 08:14:11:640] [pdfcreator]   The value of the variable "$Version$" is now: "1.2.3"
[5] [Okt 19 08:14:11:640] [pdfcreator] Set  $MinimumSpace$    = "10 MB"
[6] [Okt 19 08:14:11:640] [pdfcreator]   The value of the variable "$MinimumSpace$" is now: "10 MB"
[5] [Okt 19 08:14:11:640] [pdfcreator] Set  $InstallDir32$    = "C:\Program Files (x86)\PDFCreator"
[6] [Okt 19 08:14:11:640] [pdfcreator]   The value of the variable "$InstallDir32$" is now: "C:\Program Files (x86)\PDFCreator"
[5] [Okt 19 08:14:11:640] [pdfcreator] Set  $LicenseRequired$ = "false"
[6] [Okt 19 08:14:11:640] [pdfcreator]   The value of the variable "$LicenseRequired$" is now: "false"
[5] [Okt 19 08:14:11:641] [pdfcreator] Set  $LicensePool$     = "p_" + $ProductId$
[6] [Okt 19 08:14:11:641] [pdfcreator]   The value of the variable "$LicensePool$" is now: "p_pdfcreator"
[5] [Okt 19 08:14:11:641] [pdfcreator] Set  $Inst_Prg32$      = "PDFCreator-2_4_0-Setup.exe"
[6] [Okt 19 08:14:11:641] [pdfcreator]   The value of the variable "$Inst_Prg32$" is now: "PDFCreator-2_4_0-Setup.exe"
[5] [Okt 19 08:14:11:641] [pdfcreator] Set  $Inst_Cmd$        = '/VERYSILENT /FORCEINSTALL /NOCANCEL /NOICONS /LANG=De /NORESTART'
[6] [Okt 19 08:14:11:641] [pdfcreator]   The value of the variable "$Inst_Cmd$" is now: "/VERYSILENT /FORCEINSTALL /NOCANCEL /NOICONS /LANG=De /NORESTART"
[5] [Okt 19 08:14:11:641] [pdfcreator] Set  $Uninst_Cmd$      = '/SILENT /NOCANCEL'
[6] [Okt 19 08:14:11:641] [pdfcreator]   The value of the variable "$Uninst_Cmd$" is now: "/SILENT /NOCANCEL"
[5] [Okt 19 08:14:11:641] [pdfcreator] Set  $Uninst_Prg$      = "unins000.exe"
[6] [Okt 19 08:14:11:641] [pdfcreator]   The value of the variable "$Uninst_Prg$" is now: "unins000.exe"
[5] [Okt 19 08:14:11:641] [pdfcreator] comment: Show product picture
[6] [Okt 19 08:14:11:650] [pdfcreator] If
[9] [Okt 19 08:14:11:650] [pdfcreator]   EvaluateBoolean: Parsing: not(HasMinimumSpace ("C:", $MinimumSpace$)) 
[9] [Okt 19 08:14:11:650] [pdfcreator]   EvaluateBoolean: Parsing: HasMinimumSpace ("C:", $MinimumSpace$)) 
[6] [Okt 19 08:14:11:651] [pdfcreator]     Free on Disk C:: 38.805.893.120 bytes  This is more than the required amount of 10.000.000 bytes
[5] [Okt 19 08:14:11:651] [pdfcreator]   HasMinimumSpace ("C:", $MinimumSpace$)   <<< result true
[5] [Okt 19 08:14:11:651] [pdfcreator]   not(HasMinimumSpace ("C:", $MinimumSpace$))   <<< result false
[6] [Okt 19 08:14:11:651] [pdfcreator] Then
[6] [Okt 19 08:14:11:651] [pdfcreator] Else
[6] [Okt 19 08:14:11:651] [pdfcreator]   If
[9] [Okt 19 08:14:11:651] [pdfcreator]     EvaluateBoolean: Parsing: FileExists("$InstallDir32$\$Uninst_Prg$") 
[5] [Okt 19 08:14:11:651] [pdfcreator]       Starting query if file exist ...
[9] [Okt 19 08:14:11:651] [pdfcreator]     Executing "C:\Windows\\cmd64.exe" /C "dir C:\Windows\system32\$InstallDir32$\$Uninst_Prg$"
[9] [Okt 19 08:14:11:774] [pdfcreator]     ExitCode 1
[9] [Okt 19 08:14:11:774] [pdfcreator]     output:
[9] [Okt 19 08:14:11:774] [pdfcreator]     --------------
[9] [Okt 19 08:14:11:774] [pdfcreator]     Das System kann die angegebene Datei nicht finden.
[9] [Okt 19 08:14:11:774] [pdfcreator]     
[5] [Okt 19 08:14:11:774] [pdfcreator]       "C:\Windows\system32\$InstallDir32$\$Uninst_Prg$": 
[5] [Okt 19 08:14:11:774] [pdfcreator]     FileExists("$InstallDir32$\$Uninst_Prg$")   <<< result false
[6] [Okt 19 08:14:11:774] [pdfcreator]   Then
[6] [Okt 19 08:14:11:777] [pdfcreator]   EndIf
[6] [Okt 19 08:14:11:782] [pdfcreator]   If
[9] [Okt 19 08:14:11:782] [pdfcreator]     EvaluateBoolean: Parsing: $LicenseRequired$ = "true" 
[5] [Okt 19 08:14:11:782] [pdfcreator]     $LicenseRequired$ = "true"   <<< result false
[6] [Okt 19 08:14:11:782] [pdfcreator]   Then
[6] [Okt 19 08:14:11:782] [pdfcreator]   EndIf
[5] [Okt 19 08:14:11:783] [pdfcreator]   comment: Installiere pdfcreator...
[6] [Okt 19 08:14:11:783] [pdfcreator]   If
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: ($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: $INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
[5] [Okt 19 08:14:11:783] [pdfcreator]     $INST_SystemType$ = "x86 System"   <<< result false
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: $INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
[5] [Okt 19 08:14:11:783] [pdfcreator]     $INST_architecture$ = "system specific"   <<< result true
[5] [Okt 19 08:14:11:783] [pdfcreator]     ($INST_architecture$ = "system specific")   <<< result true
[5] [Okt 19 08:14:11:783] [pdfcreator]     ($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")   <<< result false
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: $INST_architecture$ = "both") or ($INST_architecture$ = "32 only") 
[5] [Okt 19 08:14:11:783] [pdfcreator]     $INST_architecture$ = "both"   <<< result false
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: ($INST_architecture$ = "32 only") 
[9] [Okt 19 08:14:11:783] [pdfcreator]     EvaluateBoolean: Parsing: $INST_architecture$ = "32 only") 
[5] [Okt 19 08:14:11:784] [pdfcreator]     $INST_architecture$ = "32 only"   <<< result false
[5] [Okt 19 08:14:11:784] [pdfcreator]     ($INST_architecture$ = "32 only")   <<< result false
[5] [Okt 19 08:14:11:784] [pdfcreator]     ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only")   <<< result false
[5] [Okt 19 08:14:11:784] [pdfcreator]     (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specific")) or ($INST_architecture$ = "both") or ($INST_architecture$ = "32 only")   <<< result false
[6] [Okt 19 08:14:11:784] [pdfcreator]   Then
[6] [Okt 19 08:14:11:784] [pdfcreator]   EndIf
[6] [Okt 19 08:14:11:784] [pdfcreator]   If
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: ($INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: $INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
[5] [Okt 19 08:14:11:784] [pdfcreator]     $INST_SystemType$ = "64 Bit System"   <<< result true
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: ($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: $INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
[5] [Okt 19 08:14:11:784] [pdfcreator]     $INST_architecture$ = "system specific"   <<< result true
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: $INST_architecture$ = "both") or ($INST_architecture$ = "64 only")) 
[5] [Okt 19 08:14:11:784] [pdfcreator]     $INST_architecture$ = "both"   <<< result false
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: ($INST_architecture$ = "64 only")) 
[9] [Okt 19 08:14:11:784] [pdfcreator]     EvaluateBoolean: Parsing: $INST_architecture$ = "64 only")) 
[5] [Okt 19 08:14:11:785] [pdfcreator]     $INST_architecture$ = "64 only"   <<< result false
[5] [Okt 19 08:14:11:785] [pdfcreator]     ($INST_architecture$ = "64 only")   <<< result false
[5] [Okt 19 08:14:11:785] [pdfcreator]     ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")   <<< result false
[5] [Okt 19 08:14:11:785] [pdfcreator]     ($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only")   <<< result true
[5] [Okt 19 08:14:11:785] [pdfcreator]     (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only"))   <<< result true
[5] [Okt 19 08:14:11:785] [pdfcreator]     ($INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system specific") or ($INST_architecture$ = "both") or ($INST_architecture$ = "64 only"))   <<< result true
[6] [Okt 19 08:14:11:785] [pdfcreator]   Then
[5] [Okt 19 08:14:11:785] [pdfcreator]     message Installiere pdfcreator (64 Bit)
[5] [Okt 19 08:14:11:789] [pdfcreator]     comment: Start setup program
[9] [Okt 19 08:14:11:789] [pdfcreator]     Looking for section: Winbatch_install_32 in standard section.
[5] [Okt 19 08:14:11:789] [pdfcreator]     
[5] [Okt 19 08:14:11:789] [pdfcreator]     Execution of Winbatch_install_32
[6] [Okt 19 08:14:11:792] [pdfcreator]       Call ""p:\pdfcreator\PDFCreator-2_4_0-Setup.exe" /VERYSILENT /FORCEINSTALL /NOCANCEL /NOICONS /LANG=De /NORESTART"
[6] [Okt 19 08:14:11:792] [pdfcreator]          Waiting until the called process is finished
[6] [Okt 19 08:14:11:795] [pdfcreator]       Start process as invoker: SYSTEM
[7] [Okt 19 08:14:13:147] [pdfcreator]       Waiting for ending at 19.10.2016 08:14:13 exitcode is: 1
[8] [Okt 19 08:14:13:147] [pdfcreator]       Process terminated at: 19.10.2016 08:14:13 exitcode is: 1
[6] [Okt 19 08:14:13:147] [pdfcreator]       ExitCode 1    Executed process ""p:\pdfcreator\PDFCreator-2_4_0-Setup.exe" /VERYSILENT /FORCEINSTALL /NOCANCEL /NOICONS /LANG=De /NORESTART"
[9] [Okt 19 08:14:13:149] [pdfcreator]     Looking for section: Sub_check_exitcode in standard section.
[6] [Okt 19 08:14:13:149] [pdfcreator]     
[6] [Okt 19 08:14:13:149] [pdfcreator]     ~~~~~~~ Start Sub ~~~~~~~  Sub_check_exitcode
[5] [Okt 19 08:14:13:150] [pdfcreator]     comment: Test for installation success via exit code
[5] [Okt 19 08:14:13:150] [pdfcreator]     Set  $ExitCode$ = getLastExitCode
[6] [Okt 19 08:14:13:150] [pdfcreator]       The value of the variable "$ExitCode$" is now: "1"
[6] [Okt 19 08:14:13:150] [pdfcreator]     If
[9] [Okt 19 08:14:13:150] [pdfcreator]       EvaluateBoolean: Parsing: ($ExitCode$ = "0") 
[9] [Okt 19 08:14:13:150] [pdfcreator]       EvaluateBoolean: Parsing: $ExitCode$ = "0") 
[5] [Okt 19 08:14:13:150] [pdfcreator]       $ExitCode$ = "0"   <<< result false
[5] [Okt 19 08:14:13:150] [pdfcreator]       ($ExitCode$ = "0")   <<< result false
[6] [Okt 19 08:14:13:150] [pdfcreator]     Then
[6] [Okt 19 08:14:13:150] [pdfcreator]     Else
[5] [Okt 19 08:14:13:150] [pdfcreator]       comment: Setup program gives a exitcode unequal zero: 1
[6] [Okt 19 08:14:13:150] [pdfcreator]       If
[9] [Okt 19 08:14:13:150] [pdfcreator]         EvaluateBoolean: Parsing: ($ExitCode$ = "1605") 
[9] [Okt 19 08:14:13:150] [pdfcreator]         EvaluateBoolean: Parsing: $ExitCode$ = "1605") 
[5] [Okt 19 08:14:13:151] [pdfcreator]         $ExitCode$ = "1605"   <<< result false
[5] [Okt 19 08:14:13:151] [pdfcreator]         ($ExitCode$ = "1605")   <<< result false
[6] [Okt 19 08:14:13:151] [pdfcreator]       Then
[6] [Okt 19 08:14:13:151] [pdfcreator]       Else
[6] [Okt 19 08:14:13:151] [pdfcreator]         If
[9] [Okt 19 08:14:13:151] [pdfcreator]           EvaluateBoolean: Parsing: ($ExitCode$ = "1641") 
[9] [Okt 19 08:14:13:151] [pdfcreator]           EvaluateBoolean: Parsing: $ExitCode$ = "1641") 
[5] [Okt 19 08:14:13:151] [pdfcreator]           $ExitCode$ = "1641"   <<< result false
[5] [Okt 19 08:14:13:151] [pdfcreator]           ($ExitCode$ = "1641")   <<< result false
[6] [Okt 19 08:14:13:151] [pdfcreator]         Then
[6] [Okt 19 08:14:13:151] [pdfcreator]         Else
[6] [Okt 19 08:14:13:151] [pdfcreator]           If
[9] [Okt 19 08:14:13:151] [pdfcreator]             EvaluateBoolean: Parsing: ($ExitCode$ = "3010") 
[9] [Okt 19 08:14:13:151] [pdfcreator]             EvaluateBoolean: Parsing: $ExitCode$ = "3010") 
[5] [Okt 19 08:14:13:151] [pdfcreator]             $ExitCode$ = "3010"   <<< result false
[5] [Okt 19 08:14:13:151] [pdfcreator]             ($ExitCode$ = "3010")   <<< result false
[6] [Okt 19 08:14:13:151] [pdfcreator]           Then
[6] [Okt 19 08:14:13:151] [pdfcreator]           Else
[3] [Okt 19 08:14:13:151] [pdfcreator]             Error: Fatal: Setup program gives an unknown exitcode unequal zero: 1
[5] [Okt 19 08:14:13:151] [pdfcreator]             Error level set to fatal
[5] [Okt 19 08:14:13:151] [pdfcreator]             Process aborted
[6] [Okt 19 08:14:13:151] [pdfcreator]     
[6] [Okt 19 08:14:13:151] [pdfcreator]     ~~~~~~~ End Sub   ~~~~~~~  Sub_check_exitcode
[6] [Okt 19 08:14:13:151] [pdfcreator]     
[5] [Okt 19 08:14:13:151] [pdfcreator]     Process aborted
[1] [Okt 19 08:14:13:151] [pdfcreator] ___________________
[1] [Okt 19 08:14:13:151] [pdfcreator] script finished
[1] [Okt 19 08:14:13:151] [pdfcreator] 1 error
[1] [Okt 19 08:14:13:151] [pdfcreator] 2 warnings
[1] [Okt 19 08:14:13:151] [pdfcreator] 
[1] [Okt 19 08:14:13:151] [pdfcreator] installed product: pdfcreator Version: 2.4-0
[1] [Okt 19 08:14:13:151] [pdfcreator] 
[8] [Okt 19 08:14:13:151] [pdfcreator] Temp cmd files deleted, next: free script 
[8] [Okt 19 08:14:13:151] [pdfcreator] End of CreateAndProcessScript
[8] [Okt 19 08:14:13:151] [pdfcreator] After CreateAndProcessScript
[8] [Okt 19 08:14:13:151] [pdfcreator] End ProcessNonZeroScript
[8] [Okt 19 08:14:13:151] [pdfcreator] First ProcessNonZeroScript finished
[5] [Okt 19 08:14:13:151] [pdfcreator] We do not look for a update script, because the setup script is failed
[7] [Okt 19 08:14:13:151] [pdfcreator] BuildPC: update switches .....
[9] [Okt 19 08:14:13:151] [pdfcreator] BuildPC: update switches 2.....
[8] [Okt 19 08:14:13:151] [pdfcreator] In opsi4data.UpdateSwitches, Actionstr: setup
[9] [Okt 19 08:14:13:151] [pdfcreator] Parameters in OpsiMethodCall: {"clientId":"pcit02.","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.snt.spaun-snt.de","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}
[9] [Okt 19 08:14:13:152] [pdfcreator] Creating TSuperObject with: {"clientId":"pc-it02.e","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}
[9] [Okt 19 08:14:13:152] [pdfcreator] got omc.jsonUrlString: {"method":"productOnClient_updateObject","params":[{"clientId":"pc-it02.","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}],"id":1}
[9] [Okt 19 08:14:13:152] [pdfcreator] got Furl: https://........./rpc
[8] [Okt 19 08:14:13:152] [pdfcreator] Sessionid OPSISID=04lP2gP0Zl33KjXynIS9W0ub5a1cdCM1
[6] [Okt 19 08:14:13:152] [pdfcreator] JSON service request https://....clientId":"pc-it02.","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}
[8] [Okt 19 08:14:13:152] [pdfcreator]  JSON service request Furl https://........../rpc
[8] [Okt 19 08:14:13:152] [pdfcreator]  JSON service request str {"method":"productOnClient_updateObject","params":[{"clientId":"pc-it02.","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}],"id":1}
[8] [Okt 19 08:14:13:152] [pdfcreator] Using MimeType: application/json
[8] [Okt 19 08:14:13:152] [pdfcreator] HTTP Header: Content-Encoding: deflate\r\nContent-Type: application/json\r\nContent-Length: 272\r\nHost: ..........\r\nAccept-Encoding: deflate, identity\r\nUser-Agent: opsi-script 4.11.5.16\r\nAuthorization: Basic cGMtaXQwMi5zbnQuc3BhdW4tc250LmRlOjA4MDNhMWIzNTQ3YTY1MWYxZmViNWVhNDI4ODgwYTI2\r\nCookie: OPSISID=04lP2gP0Zl33KjXynIS9W0ub5a1cdCM1\r\n
[9] [Okt 19 08:14:13:259] [pdfcreator] Creating TSuperObject with: {"clientId":"pc-it02.","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}
[9] [Okt 19 08:14:13:260] [pdfcreator] Creating TSuperObject with: {"clientId":"pc-it02.","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}
[6] [Okt 19 08:14:13:260] [pdfcreator] JSON Bench for productOnClient_updateObject "params":[{"clientId":"pc-it02."," Start: 08:14:13:151 Time: 00:00:00:109
[9] [Okt 19 08:14:13:260] [pdfcreator] Creating TSuperObject with: {"clientId":"pc-it02.","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}
[8] [Okt 19 08:14:13:260] [pdfcreator] JSON Call: {"method":"productOnClient_updateObject","params":[{"clientId":"pc-it02.","actionResult":"failed","installationStatus":"unknown","actionRequest":"none","packageVersion":"0","ident":"pdfcreator;LocalbootProduct;pc-it02.","productType":"LocalbootProduct","lastAction":"setup","productVersion":"2.4","modificationTime":null,"productId":"pdfcreator","actionProgress":"","type":"ProductOnClient","targetConfiguration":"installed","actionSequence":null}],"id":1} Time: 00:00:00:109
[9] [Okt 19 08:14:13:336] [pdfcreator] BuildPC: finishProduct .....
[9] [Okt 19 08:14:13:336] BuildPC: saveOpsiConf .....
[9] [Okt 19 08:14:13:336] BuildPC: saveOpsiConf .....
[9] [Okt 19 08:14:13:336] BuildPC: handle reboot options: write to registry .....
[7] [Okt 19 08:14:13:336] Registry started with redirection (32 Bit)
[6] [Okt 19 08:14:13:337] Registry key [HKLM\SOFTWARE\opsi.org\winst]  opened
[6] [Okt 19 08:14:13:337]                               Variable "RebootRequested"  is keeping its value "0"
[9] [Okt 19 08:14:13:337]                               BuildPC: handle reboot options: registry log continue .....
[6] [Okt 19 08:14:13:337]                               Variable "LastLogFilename"  is keeping its value "c:\opsi.org\log\opsi-script.log"
[6] [Okt 19 08:14:13:337]                               Variable "ContinueLogFile"  is keeping its value "0"
[6] [Okt 19 08:14:13:337]                               Variable "NumberOfErrors"  is keeping its value "0"
[6] [Okt 19 08:14:13:342]                               Key flushed
[6] [Okt 19 08:14:13:342]                               Key closed
[9] [Okt 19 08:14:13:342]                               BuildPC: finishOpsiconf .....
[5] [Okt 19 08:14:13:344] -------- submitted part of log file ends here, see the rest of log file on client ----------

Re: PDF Creator 2.3.2

Verfasst: 19 Okt 2016, 17:54
von larsg
Exitcode 1 heißt das Setup legt garnicht erst los.
Ich würde vermuten, entweder liegt die EXE-Datei nicht an der richtigen Stelle oder es stimmt etwas nicht mit den Rechten.

Schonmal opsi-set-rights ausgeführt?

Re: PDF Creator 2.3.2

Verfasst: 21 Nov 2016, 10:47
von larsg
opsi.simi hat geschrieben: das einzige was jetzt noch fuchst ist die Installation, die funktioniert nämlich auf meinem Admin Rechner aber sobald ich es an den User rausschick, bricht das Paket ab und es wird nichts installiert :/
Hi,

hast du hierzu eine Lösung gefunden? Seit ich mein Paket auf Version 2.4.0 aktualisiert hab, sieht es bei mir ganz ähnlich aus,
die Installation funktioniert zwar auf meinen virtuellen Maschinen, aber nicht auf meinem Produktiv-Rechner, selber Fehler.

Ich kann die die Ursache nicht finden...
In der Logdatei vom Installer steht nur, das die Installation erst nach einem Neustart fortgesetzt werden kann. Neustart bringt aber leider nichts.

EDIT: Die gleiche Fehlermeldung bekomme ich auch wenn ich das setup manuell auf dem PC starte.

Die alte Version 2.3.2 wurde vorher sauber deinstalliert.

EDIT #2: Einmal googeln hat geholfen :roll:
http://www.alant.com/windows-allg/323-p ... bleme.html

Re: PDF Creator 2.3.2

Verfasst: 23 Nov 2016, 15:07
von duschgas
Schau dir zum Deinstallieren mal das Scriptschnipsel "Uninstaller" an.
wiki/doku.php?id=userspace:uninstaller

Das sollte dir weiter helfen. Die CMD kann ggf. weiter angepasst werden.