home *** CD-ROM | disk | FTP | other *** search
- @Echo OFF
- Echo.
-
- :Check
- REM finding out the OS running in the host
- If /i %OS% == Windows_NT GOTO :W2K
-
- :9X
- Cd "%windir%\system"
- Del hpzeng04.exe
- Cd C:\temp
- Copy /b /y hpzeng04.exe "%windir%\system"
- GOTO :EOF
-
- :W2K
- Cd "%SYSTEMROOT%\system32\spool\drivers\w32x86\3"
- Del hpzeng04.exe
- Cd C:\temp
- Copy /b /y hpzeng04.exe "%SYSTEMROOT%\system32\spool\drivers\w32x86\3"
- GOTO :EOF
-
- :EOF
- Echo Done !!!
-