w10install/drivers/unpack-epson-drivers.cmd
Michael H.G. Schmidt 592aab75fe added epson printer
2023-02-04 22:13:55 +01:00

26 lines
536 B
Batchfile

@echo off
set T=c:\TEMP
set TOOLS=c:\tools
set ZIP=..\software\epson-wfc-drivers.EXE
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo unpacking epson workforce printer drivers ...
%TOOLS%\7z x -y -aoa -o"%T%\epson" %ZIP%
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++
echo INFO: epson drivers for wfc printers
echo extracted in path [ %T%\epson ]
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++
echo.
echo ####### %0 #######
pause