10,994 questions
Hello @JD Kim
Thanks for raising your query.
Please check below code:
Sub LaunchTeams()
Dim teamsPath As String
teamsPath = "C:\Program Files (x86)\Microsoft\Teams\Update.exe" ' Path to Teams executable file
' Launch Teams using Shell command
Shell teamsPath, vbNormalFocus
End Sub