This commit is contained in:
Michael H.G. Schmidt 2021-02-28 16:31:43 +01:00
parent 4ff022fd37
commit 63a8937ce1
3 changed files with 19 additions and 1 deletions

View File

@ -161,6 +161,9 @@ echo.
call install-totalcommander.cmd
echo.
call install-teams.cmd
echo.
call install-xnview.cmd
echo.

View File

@ -16,4 +16,3 @@ echo removing F-Secure desktop link ...
del /F "%PUBLIC%\Desktop\F-Secure Anti-Virus.lnk" 2>nul
echo ####### %0 #######

16
scripts/install-teams.cmd Normal file
View File

@ -0,0 +1,16 @@
@echo off
set EXE=..\software\teams-setup.exe
if NOT EXIST %EXE% (
echo ERROR: %EXE% not found!
exit /b
)
echo ####### %0 #######
echo installing Microsoft Teams ...
%EXE% -s
timeout /T 10
echo ####### %0 #######