Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit e4cc2e5

Browse files
author
Brian Baltz
committed
ATLEDGE-346 auto-install Windows drivers with platform package
Signed-off-by: Brian Baltz <brian.a.baltz@intel.com>
1 parent 52ba092 commit e4cc2e5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

drivers/post_install.bat

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

0 commit comments

Comments
 (0)