I foung an error in "BTS_DPs_finish.cmd". there is an endless loop which is coused by a wrong goto command: REM #################################### REM DriverPack Graphics B REM #################################### SET C=%DPS%\G\ REM ######################## :DPGB1 IF NOT EXIST %C%3\1 GOTO DPGB2 IF EXIST %S%3dfxV2ps.dll ( %C%3\1\V2_OC_control_panel.exe ) :DPGB2 IF NOT EXIST %C%S\1 GOTO DPGB3 IF EXIST %S%sisgrp.sys ( %C%S\1\UVGA3.exe -y -o%DPS_TMP% START /WAIT %DPS_TMP%\setup.exe -s RD /S /Q %DPS_TMP% ) :DPGB3 REM #################################### REM DriverPack Graphics C REM #################################### SET C=%DPS%\G\ REM ######################## IF NOT EXIST %C%A\3 GOTO DPGB2 IF EXIST %S%atioglgl.dll ( %C%A\3\CPanel.exe -y -o%DPS_TMP% START /WAIT %DPS_TMP%\Setup.exe /K RD /S /Q %DPS_TMP% ) this is the fixed way...: REM #################################### REM DriverPack Graphics C REM #################################### SET C=%DPS%\G\ REM ######################## IF NOT EXIST %C%A\3 GOTO DPGC2 IF EXIST %S%atioglgl.dll ( %C%A\3\CPanel.exe -y -o%DPS_TMP% START /WAIT %DPS_TMP%\Setup.exe /K RD /S /Q %DPS_TMP% ) :DPGC2 i have no ATi cards there for, i got into an endless loop hope i helped