and so I wrote a little batch (kixstrip.bat) , to make it easier ...

maybe some will use it as well

if "%1%"=="" Goto Fehler

:Aktion
set Ein=%1%

copy %Ein% temp_ein.kix /Y /N 2>nul
copy %Ein% %Ein%.bak /Y /N 2>nul
c:\nt-tools\kix\tools\kixstrip.exe temp_ein.kix temp_aus.kix /Block_Check
copy temp_aus.kix %Ein% /Y /N 2>nul

del temp_ein.kix /F /Q
del temp_aus.kix /F /Q

Goto EOF

:Fehler
echo.
echo Aufruf: kixstrip c:\nt-tools\kix\scripts\remapprinter.kix
echo.
:EOF

Martin