w10install/optional/install-teams.cmd

24 lines
403 B
Batchfile
Raw Normal View History

2022-11-13 22:12:39 +01:00
@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 ...
start /wait %EXE% -s
echo renaming Teams desktop link ...
move /Y "%USERPROFILE%\Desktop\Microsoft Teams.lnk" "%USERPROFILE%\Desktop\Teams.lnk"
rem refresh desktop (W10 style)
ie4uinit.exe -show
echo ####### %0 #######
pause