F3 license

Reggie Muncal 0 Reputation points
2025-01-20T15:18:03.33+00:00

I have script to get all mailbox sizing of our company users but I need a script that can only get users have F3 license only filter for F3 only

User's image

Microsoft 365
Microsoft 365
Formerly Office 365, is a line of subscription services offered by Microsoft which adds to and includes the Microsoft Office product line.
5,727 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Vasil Michev 113.5K Reputation points MVP
    2025-01-20T17:01:43.3833333+00:00

    You can filter mailboxes with the F3 license assigned by leveraging the corresponding mailbox plan value. Mailbox plans in Exchange Online determine the quota and settings on newly provisioned mailboxes, depending on the license assigned. You can view the available plans in your tenant via the Get-MailboxPlan cmdlet. In the case of F3 licenses, we are interested in the "deskless" plan.

    To filter only the mailboxes with F3 plan, you can use this:

    Get-Mailbox -MailboxPlan ExchangeOnlineDeskless -ResultSize Unlimited
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.