這是一張有關標題為 How to Automatically Open Teams Meeting Links Daily 的圖片

How to Automatically Open Teams Meeting Links Daily

Simplify the process of opening Teams meeting links daily by setting up deep links and a task scheduler.

Introduction

Every morning, my company holds a regular Standup meeting using the same Teams meeting link.

I wanted this meeting link to open automatically, so all I need to do is to click Join Meeting to participate.

Before achieving the automatic opening of the meeting link, my process was to open Outlook → find the calendar → double-click the day’s meeting → locate and click Click here to join the meeting to enter the meeting.

Although creating a hyperlink on the desktop was possible, double-clicking the shortcut every morning was still slightly inconvenient and complex.

URI Scheme

A Uniform Resource Identifier (URI) scheme is a method used to identify resources and can be used to create links between different applications. Any application can register a custom URI scheme. With a URI scheme, you can implement deep links that directly navigate the user to a specific page or location within an application.

  1. fb:// - Launches the Facebook application (Facebook’s URI scheme)
  2. fb://profile?id=123 - Opens the Facebook application and directly navigates to the user’s profile with ID 123 (a deep link)

Besides custom URI schemes, there are also solutions like App Links (Android) and Universal Links (iOS).

They use standard HTTPS URLs to implement deep links, aiming to improve the shortcomings of traditional deep links and facilitate seamless integration between web pages and applications, achieving cross-platform connectivity.

According to the official Teams documentation on deep links, to open a meeting link:

https://teams.microsoft.com/l/meetup-join/19%3ameeting_NMwYWYtMjZmZi00NGJiLThlMzMtNmEyMNjU0MmU1%40thread.v2/0?context=%7b%22Tid%22%3a%22a544-4b1f-a938-9134ff526a16%22%2c%22Oid%22%3a%2240cdb769-4f40-a65a-d2d0d98b65a3%22%7d

Simply change https:// to msteams:// to open the meeting link with Teams.

Opening meeting with Teams deep link Waiting to join meeting

Creating a Daily Scheduled Task

  1. Press Win + R to open the Run window, type taskschd.msc to open the Task Scheduler.
  2. In the Task Scheduler, click Task Scheduler Library on the left, then choose Create Basic Task from the Actions panel on the right.
  3. Enter a name, set the trigger frequency/time, and the action.

Task Name Task Trigger Frequency Task Trigger Time Task Action

  1. Enter explorer in the “Program/script” field to open the URL. In the “Add arguments” section, input the deep link starting with “msteams://”. Be sure to enclose it in double quotes.

Enter deep link in arguments

  1. After verifying all settings, complete the task creation.

Complete task creation

  1. Right-click the newly created task and select “Run” to test the task. This will directly open Teams and connect to the meeting.

Test task

Conclusion

After completing the above steps, the Teams meeting link will automatically open every morning.

References

  1. List of URI schemes - Wikipedia
  2. Deep links overview - Teams
  3. Mobile deep linking - Wikipedia
Theme Stack designed by Jimmy