installer usability - ST drivers #845

This commit is contained in:
rusefi 2019-06-16 19:32:52 -04:00
parent fd127c9a08
commit ef0ed93945
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
@echo off
cd "Virtual comport driver"
cd Win8
echo Let's install VCP driver silently
if "%PROCESSOR_ARCHITEW6432%" == "AMD64" goto VCP_X64
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" goto VCP_X64
start "" dpinst_x86.exe /s
goto VCP_END
:VCP_X64
start "" dpinst_amd64.exe /s
:VCP_END
cd ../..
echo Done installing VCP silently
pwd
echo Let's install ST-Link driver silently
cd ST-LINK_USB_V2_1_Driver
@echo off
if "%PROCESSOR_ARCHITEW6432%" == "AMD64" goto X64
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" goto X64
start "" dpinst_x86.exe /sw
goto END
:X64
start "" dpinst_amd64.exe /sw
:END