12 lines
423 B
Batchfile
12 lines
423 B
Batchfile
@echo off
|
|
|
|
set VERSION=%1
|
|
|
|
:: download OpenIFCViewer (https://openifcviewer.com/)
|
|
"%SYSTEMROOT%\System32\bitsadmin.exe" /transfer /download https://pxe.intern.bnvb-ingenieure.de/openifcviewer/OpenIFCViewer_QT6_vc16_amd64dll_%VERSION%.msi %TEMP%\OpenIFCViewer_QT6_vc16_amd64dll_%VERSION%.msi >NUL
|
|
|
|
cd "%TEMP%"
|
|
|
|
:: install OpenIFCViewer
|
|
msiexec /i "OpenIFCViewer_QT6_vc16_amd64dll_%VERSION%.msi" /quiet /norestart
|