Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit 147d8e2

Browse files
committed
adding post_install.bat script
1 parent d16c670 commit 147d8e2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

post_install.bat

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@echo off
2+
set ARGS=/A /SE /SW /SA
3+
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
4+
drivers\dpinst-amd64.exe %ARGS%
5+
drivers\dpinst-amd64.exe %ARGS% /path drivers\x64
6+
) ELSE IF "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
7+
drivers\dpinst-amd64.exe %ARGS%
8+
drivers\dpinst-amd64.exe %ARGS% /path drivers\x64
9+
) ELSE (
10+
drivers\dpinst-x86.exe %ARGS%
11+
drivers\dpinst-x86.exe %ARGS% /path drivers\x86
12+
)
13+
exit /b 0

0 commit comments

Comments
 (0)