MBed Studio Silent Install

Just to help people if required that need to deploy the software to lots of machines

I manually installed the software on a blank machine then created a sccm deployment batch file

rem install trusted publisher cert

CertUtil -AddStore “TrustedPublisher” “%cd%\STMICROELECTRONICS-TP.cer”

rem install drivers from C:\Windows\System32\DriverStore\FileRepository

.\Drivers\stlink_bridge_winusb.inf_amd64_ad2dbf6fd06129a9\dpinst.exe /S
.\Drivers\stlink_dbg_winusb.inf_amd64_0affb16e4aa0fcb7\dpinst.exe /S
.\Drivers\stlink_vcp.inf_amd64_355d13b155f4a7b6\dpinst.exe /S

rem install main application

start /wait “Install MBed Studio 1.4.4” “%CD%\MbedStudio-1.4.4.exe” /S /ALLUSERS=1

rem remove desktop shortcuts if required

IF EXIST “C:\Users\Public\Desktop\Mbed Studio.lnk” DEL /S /Q “C:\Users\Public\Desktop\Mbed Studio.lnk”

Cheers

David

2 Likes