w10install/drivers/unpack-brother-drivers.cmd
Michael H.G. Schmidt e86a325c76 renaming
2023-02-01 21:52:39 +01:00

30 lines
609 B
Batchfile

@echo off
set T=c:\TEMP
set TOOLS=c:\tools
set ZIP=..\software\brother-dcp-mcp-drivers.EXE
if NOT EXIST %ZIP% (
echo ERROR: %ZIP% not found!
exit /b
)
echo ####### %0 #######
echo unpacking Brother DCP and MCP printer drivers ...
%TOOLS%\7z x -y -aoa -o"%T%" %ZIP%
echo renaming ...
move /Y %T%\gdi %T%\brother
echo.
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++
echo INFO: brother drivers for DCP and MCP printers
echo extracted in path [ %T%\brother ]
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++
echo.
echo ####### %0 #######
pause