@echo off SET choice=a set EXE_FILE=not_defined if EXIST ..\..\setup\hpzscr01.exe SET EXE_FILE=..\..\setup\hpzscr01.exe if EXIST hpzscr01.exe SET EXE_FILE=hpzscr01.exe if "%EXE_FILE%" == "not_defined" goto MISSING_SCRUBBER_EXE set FILE_CDA=not_defined if EXIST ..\..\setup\hposcr06.dat SET FILE_CDA=hposcr06.dat if EXIST hposcr06.dat SET FILE_CDA=hposcr06.dat set FILE_CDB=not_defined if EXIST ..\..\setup\hposcr07.dat SET FILE_CDB=hposcr07.dat if EXIST hposcr07.dat SET FILE_CDB=hposcr07.dat echo "******************** Executing Level2 CleanUP *********************" echo Use this LEVEL 2 cleanup utility if you are having a communication echo problem with your HP All-in-One and the LEVEL 1 cleanup utility echo did not fix the problem. echo "*******************************************************************" echo. echo. echo If you chose to UNINSTALL, Please do the following... echo 1. Unplug the USB cable from the back of your HP All-in-One device echo 2. After the cleanup finishes, restart your computer and wait for Windows echo to start up echo 3. Reconnect the USB cable to your HP All-in-One device echo 4. If prompted for a driver, select install the software automatistart /wy echo (Recommended) and press NEXT. Follow the on-screen prompts and wait echo for the installation process to finish echo 5. Try printing a document to confirm functionality echo. echo. if Windows_NT==%OS% GOTO WIN2K_XP GOTO WIN9x_ME :WIN2K_XP echo Press ENTER to continue Uninstalling... echo OR echo Press Q followed by ENTER to QUIT uninstallation SET /P Choice= IF /I ‘%choice:~0,1%’==’Q’ GOTO END_QUIT GOTO DISPLAY :WIN9x_ME choice /C:cq Press Q to quit Uninstall OR press C to continue... if ERRORLEVEL==2 GOTO END_QUIT if ERRORLEVEL==1 GOTO DISPLAY GOTO END_QUIT :DISPLAY if "%FILE_CDA%" == "not_defined" goto DAT_CDA start /w %EXE_FILE% -datfile %FILE_CDA% -unattended -showdisconnect -nocopytotemp :DAT_CDA if "%FILE_CDB%" == "not_defined" goto DAT_CDB start /w %EXE_FILE% -datfile %FILE_CDB% -unattended -showdisconnect -nocopytotemp :DAT_CDB goto END :MISSING_SCRUBBER_EXE echo "**** Uninstall file not found: hpzscr01.exe ****" goto EXIT :END echo Uninstallation Completed. THANKS! :END_QUIT echo DONE. pause :END_LAST :EXIT