Можно.
Код:

REM +==========================================================================+
REM | Finding CD/DVD driveletter. |
REM |--------------------------------------------------------------------------|
SET TAGFILE=\I386\SVCPACK\DP
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:%TAGFILE%" SET CDDRIVE=%%i:
REM +==========================================================================+
REM | Decompressing the DriverPacks to the harddisk - using un7zip.exe. |
REM |--------------------------------------------------------------------------|
%CDDRIVE%\I386\SVCPACK\DP\bin\un7zip.exe %CDDRIVE%\I386\SVCPACK\DP\DP*.7z %SystemDrive%\
REM +==========================================================================+
REM | Copying/decompressing the files to finish the installation. |
REM |--------------------------------------------------------------------------|
%CDDRIVE%\I386\SVCPACK\DP\bin\un7zip.exe %CDDRIVE%\I386\SVCPACK\DP\bin\*.7z %SystemDrive%\
COPY /Y %CDDRIVE%\I386\SVCPACK\DP\bin\DPsFnshr.ini %SystemDrive%\
COPY /Y %CDDRIVE%\vers_os.txt %SystemRoot%\
IF EXIST %CDDRIVE%\I386\SVCPACK\DP\*.ins COPY /Y %CDDRIVE%\I386\SVCPACK\DP\*.ins %SystemDrive%\
REM +==========================================================================+
REM | Scanning for driverdirectories. |
REM |--------------------------------------------------------------------------|
%CDDRIVE%\I386\SVCPACK\DP\bin\DevPath.exe %SystemDrive%\D
REM +==========================================================================+
REM | Disable Driver Signing Policy and keep it disabled. |
REM |--------------------------------------------------------------------------|
REM START %SystemDrive%\DSPdsblr.exe
EXIT