aboutsummaryrefslogtreecommitdiff
path: root/post_install.bat
blob: 4b80f1c53fb8db385c1685c91a88ed8621ad2932 (plain)
1
2
3
4
5
6
7
8
9
10
11
@echo off
set ARGS=/LM /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