How to use Internet Free/Busy

Microsoft Technical Article






Guide to Configuring Internet Free/Busy in Microsoft Outlook

1. Overview

Internet Free/Busy (IFB) is a legacy yet robust feature within Microsoft Outlook designed to facilitate meeting scheduling across disparate organizations or for users not sharing a common Exchange environment. By leveraging the iCalendar standard (developed by the IETF), Outlook can generate and read .vfb files that represent a user’s availability.

Unlike modern Exchange-to-Exchange federation, IFB operates by publishing schedule data to a publicly or privately accessible URL (via HTTP, FTP, or UNC paths). This allows attendees’ availability to appear directly within the Outlook Scheduling Assistant, provided the client knows where to look for the recipient’s hosted .vfb file.

2. Key Technical Details

  • The iCalendar Standard: IFB is built upon the iCal/iCalendar framework, providing a structured, interoperable format for scheduling data. This ensures that the free/busy information remains consistent across different server types.
  • Data Publication: Users publish their schedules as .vfb files. The publication path must be a fully qualified URL. Supported protocols include:

    • http:// or https:// for web-based servers.
    • ftp:// for file transfer servers.
    • file://\ for internal network shares.
  • Path Substitution Wildcards: To automate the search for multiple contacts, Outlook supports dynamic variables:

    • %NAME%: Extracted from the portion of the SMTP address before the “@” symbol.
    • %SERVER%: Extracted from the domain portion of the SMTP address after the “@” symbol.
    • Example: A search path of ftp://%SERVER%/fb/%NAME%.vfb for user [email protected] resolves to ftp://contoso.com/fb/admin.vfb.
  • Authentication Requirements: When using FTP servers that require credentials on Windows Vista or newer, the login information must be embedded in the URL string using the following syntax:
    ftp://username:password@ftpservername/path/file.vfb.
  • Sync Frequency: By default, Outlook attempts to update and retrieve published free/busy data every 15 minutes. Admins or users can trigger an immediate update via the “Send/Receive” menu by selecting “Free/Busy Information.”
  • Granular Search Settings:

    • Global Search: Set via Outlook Options to apply a template to all contacts.
    • Contact-Specific: Individual search paths can be defined within the “Details” tab of a specific Outlook Contact record to override global settings.

3. Impact

For IT Administrators:

IFB provides a decentralized method for cross-tenant availability sharing without requiring complex Active Directory trusts or Federation Gateway configurations. However, it requires a maintained web or FTP server to host the .vfb files. Administrators must ensure that these servers are accessible to the intended audience and that firewall rules allow the necessary outbound/inbound traffic for the chosen protocol.

For End Users:

Once configured, the user experience is seamless. When an organizer adds an attendee to a meeting request, Outlook automatically queries the defined IFB URL. If the data is found, the attendee’s free, busy, or tentative blocks appear in the Scheduling Assistant just as they would for an internal colleague, reducing the “trial and error” often associated with scheduling meetings with external partners.

Read the full article on Microsoft.com