w10install/scripts/install-teams.cmd
Michael H.G. Schmidt 09bd6f5e4b .
2021-02-28 22:17:02 +01:00

20 lines
371 B
Batchfile

@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 renaming and moving Teams desktop link ...
move /Y "%USERPROFILE%\Desktop\Microsoft Teams.lnk" "%PUBLIC%\Desktop\Teams.lnk"
echo ####### %0 #######