-
Cristian Maglie authored
The flag means "install everything or nothing", not really useful in our case.
Cristian Maglie authoredThe flag means "install everything or nothing", not really useful in our case.
post_install.bat 255 B
@echo off
set ARGS=/SE /SW /SA
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
drivers\dpinst-amd64.exe %ARGS%
) ELSE IF "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
drivers\dpinst-amd64.exe %ARGS%
) ELSE (
drivers\dpinst-x86.exe %ARGS%
)
exit /b 0