Bei Bedarf kann die Script-Datei auch von Ihnen erzeugt werden. Erstellen Sie hierzu bitte eine Batch-Datei (.bat) mit dem folgenden Inhalt: @echo off echo Bitte den Pfad zum Root-Ordner der Condition Installation angeben, z.B. C:\WorkOffice und fahren Sie mit der [Enter]-Taste fort: SET /p ConditionFiles= @echo on taskkill /F /IM execxp.exe for /f "tokens=*" %%a in ('dir /b /s "%ConditionFiles%\systemdateien"') do regsvr32 /s /u "%%a" for /f "tokens=*" %%a in ('dir /b /s "%ConditionFiles%\cmc"') do regsvr32 /s /u "%%a" @echo off reg query HKLM\software\wow6432node\condition.net if %ERRORLEVEL% EQU 0 goto DELETE1 if %ERRORLEVEL% EQU 1 goto DELETE2 :DELETE1 reg delete HKLM\software\wow6432node\condition.net :DELETE2 reg query HKLM\software\condition.net if %ERRORLEVEL% EQU 0 goto DELETE3 if %ERRORLEVEL% EQU 1 goto DEINSTALL1 :DELETE3 reg delete HKLM\software\condition.net :DEINSTALL1 @echo on if exist "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Condition WorkOffice XP" rmdir /s "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Condition WorkOffice XP" if exist "%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Condition WorkOffice XP" rmdir /s "%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Condition WorkOffice XP" if exist "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\Condition Workoffice Schnellstart.lnk" del /s "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\Condition Workoffice Schnellstart.lnk" if exist "%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\StartUp\Condition Workoffice XP Schnellstart.lnk" del /s "%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\StartUp\Condition Workoffice XP Schnellstart.lnk" rmdir /s "%ConditionFiles%" pause |