• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Convert an Exchange Mailbox to a Shared Mailbox

Slipstick Systems

› Exchange Server › Convert an Exchange Mailbox to a Shared Mailbox

Last reviewed on December 4, 2018     58 Comments

After a user quit, an administrator wanted to convert the mailbox to a shared mailbox, to free up the license the mailbox was using. Because the user handled important communications, he didn’t want to delete the mailbox right away.

Create a shared mailbox in Exchange or Office 365

While I’d export the mailbox to a pst for backup, delete it and add the user’s address(es) to the mailbox of the person who took over the job, it is possible to convert a mailbox to a shared mailbox.

Shared mailboxes in the Business and Exchange Online Plan 1 and Plan 2 have a quota of 50 GB.

A license is not required for a shared mailbox provided you do not enable In-place Archive. If you are converting a user mailbox with an In-place archive to a shared mailbox, you'll need export the archive to a pst before converting the mailbox.

Both on-prem Exchange and Office 365 Mailboxes can be converted to shared either using PowerShell or using the Exchange Admin Center.

Using the Admin Center

To convert mailboxes using the web interface, open the Office 365 Admin center in your browser. Select Users then select the mailbox you need to convert.

office 365 convert to shared mailbox (new)

It will take a few minutes to convert the mailbox to shared. Once finished, remove the license from the mailbox in the Office 365 Admin center. Select the account again, then click Edit to the right of Product licenses. Slide the license indicator to Off then click Save.
remove a license
 

Using PowerShell

If you are comfortable using Powershell, you can use the Set-Mailbox cmdlet to convert a mailbox to a shared mailbox.

Set-Mailbox info@domain.com -Type shared

If desired, you can change the quota before setting the mailbox to shared.

Set-Mailbox info@domain.com -Type shared -ProhibitSendReceiveQuota 10GB -ProhibitSendQuota 9.5GB -IssueWarningQuota 9GB
Set-Mailbox info@domain.com -Type shared

The Type parameter supports Regular, Room, Equipment, and Shared as values.

Verify the mailbox is now a shared mailbox:

Get-Mailbox -Identity info@domain.com | Format-List RecipientTypeDetails

use PowerShell to convert a mailbox type

To create a list of all users and mailbox types to a csv file, use this cmdlet. Name returns the display name; you can use alias instead (or add alias as another field).

Get-Mailbox | Select-Object name,RecipientTypeDetails| Sort-Object name| export-csv D:\Documents\output.csv

After converting the mailbox, give other users Full Access and Send As permission as needed. You can do this from the Exchange Control Panel or using PowerShell.

To use PowerShell to give a user or group FullAccess rights:

Add-MailboxPermission username -User newuser -AccessRights FullAccess

To use PowerShell to give a user or group SendAs rights:

Add-RecipientPermission username -Trustee newuser -AccessRights SendAs

Assign fullaccess and send as permissions to the shared mailbox

Now you can remove the license from the account in Users and Groups. Two dialogs will warn you that removing the license will delete the mailbox and the contents, however, because you converted the mailbox to a shared mailbox before removing the license, the mailbox won't be deleted. Note: while the mailbox contents are safe, Lync contacts may be lost.

The first dialog:
Are you sure you want to delete the license

The second dialog reads:

Are you sure you want to remove the Exchange license?

The user’s mailbox and all messages in it are deleted. We recommend that you only delete licenses from users who no longer need email.
All email aliases associated with the user account are deleted. If you need someone in your company to receive email at those aliases, assign them to another user.
Their Lync Contacts list may be deleted. To restore their Lync Contacts, assign the user an Exchange license within 30 days. If you want to remove their Exchange license but keep their Lync Contacts, contact Support before you remove the Exchange license.

More Information

More information is available at Convert a Mailbox (TechNet)

Convert an Exchange Mailbox to a Shared Mailbox was last modified: December 4th, 2018 by Diane Poremsky
Post Views: 74

Related Posts:

  • Create a shared mailbox in Exchange or Office 365
  • Save Sent Items in Shared Mailbox Sent Items folder
  • Send Messages Using Exchange Mailbox Aliases
  • Changing the From Domain in Office 365

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Shawn says

    May 22, 2018 at 4:00 pm

    What would cause a User Mailbox that was converted to a Shared Mailbox using EAC to not show up in the Shared Mailboxes section and the User to still exist in the Mailboxes Section. After running the Convert link on the User that we want as a Shared Mailbox

    Reply
    • Nath says

      February 25, 2019 at 9:01 am

      This is a known issue when using Microsoft Partner logins.

      Reply
  2. Alex says

    February 22, 2018 at 9:33 pm

    What if I want to convert a "user" (=UPN without a license) not a usermailbox to a shared mailbox?

    Reply
    • Diane Poremsky says

      February 24, 2018 at 10:59 pm

      This is a contact? I think you will need to remove the contact from the gal then add the address back as a shared mailbox.

      This powershell converts a mailbox to a user, but i didn't see one to convert a user to mailbox.
      https://gallery.technet.microsoft.com/office/How-to-convert-mailbox-to-c92c9153

      Reply
  3. rino19ny says

    January 18, 2018 at 1:32 am

    i have Exchange 2013 cu17, i don't see that convert option in the ECP.

    Reply
    • Diane Poremsky says

      January 18, 2018 at 7:08 am

      I don't have an Exchange 2013 ECP handy to double check, but if they it's similar to the new Office 365 interface, it was moved to the main user admin screen (where you assign licenses and reset password). Select the user, expand the mail section - convert to shared is at the bottom.

      You can always use a cmdlet: Set-Mailbox alias -Type shared
      https://technet.microsoft.com/en-us/library/bb123981(v=exchg.150).aspx

      Reply
  4. Kevin says

    September 18, 2017 at 9:21 am

    All, I have several mailboxes the need to be converted to shared mailboxes. First, I want to run a script that will verify the type of mailbox it is. I would like to import a CSV file and have the script tell me what each mailbox type it is. 2nd, I would then create another CSV file and import the contents into a 2nd script that would convert the mailboxes to a shared mailbox.

    Help please, Thanks

    Reply
    • Diane Poremsky says

      January 18, 2018 at 7:42 am

      I know you can do the first... and use a csv to convert the listed accounts to shared, but I 'm not sure you can pipe it into set-mailbox (it's not working here, but I'm not a powershell expert, so it could be user error :))

      To get a CSV, use this cmdlet:
      Get-Mailbox | Select-Object name,RecipientTypeDetails| Sort-Object name| export-csv D:\Documents\output.csv
      if you want more fields, see https://technet.microsoft.com/en-us/library/bb123685(v=exchg.160).aspx

      using the csv to do something would be something like this:import-Csv D:\Documents\output.csv | ForEach-Object { Set-Mailbox -Identity $_."name" -type shared}

      Reply
  5. Victoria says

    February 17, 2017 at 9:58 am

    How can I move an Exchange shared calendar to Office 365 as a shared calendar?

    Reply
    • Diane Poremsky says

      February 19, 2017 at 11:08 pm

      You (or someone with the right permission) needs to create the caendar in office 365 then use a list view to select all, copy and paste to the new calendar.

      Reply
  6. Earle Maharaj says

    January 5, 2017 at 12:25 pm

    We've been converting user mailboxes to shared for at least 6 months now. The users with rights to the shared mailboxes are reporting that the shared mailboxes are no longer receiving new emails. Is there another setting in console that needs to be enabled for converted user to shared mailbox to receive email?

    Reply
  7. A-FS says

    September 21, 2016 at 2:50 pm

    Can external users be members of shared mailboxes? How would they access the shared mailbox?

    Reply
    • Diane Poremsky says

      September 21, 2016 at 5:44 pm

      If you create a mail contact, they get a password and an internal address (but no mailbox) then assign their user contact full access permission to the mailbox, they can log into Outlook on the web using the internal address and password - address would be https://owa.domain.com/owa/sharedmailbox@domain.com/. It can take some time for the permissions to propagate.

      You can't use Outlook on the desktop, on the web interface.

      It can take about 15 minutes for permissions to update after adding the contact to the shared mailbox.

      Reply
      • Michael says

        June 3, 2019 at 10:21 am

        Nice article!
        How do you create a mail contact that gets a password?

  8. Stephan says

    May 9, 2016 at 3:51 am

    Thank you for the article. Converting the mailbox is really simple. However, I cannot find the option to remove the license from the AD account. We have a local server, not online. Any ideas?

    Reply
    • Diane Poremsky says

      May 9, 2016 at 9:43 pm

      Is everything on the local server or it is a hybrid configuration?
      This removes an E3 from an account
      Set-MsolUserLicense -UserPrincipalName alias -RemoveLicenses "company-name:ENTERPRISEPACK"
      verify it was removed using
      Get-MsolUser -UserPrincipalName alias

      More information https://technet.microsoft.com/en-us/library/dn771774.aspx

      Reply
  9. Bobby says

    January 31, 2016 at 9:29 am

    I follow the Powershell method to convert user mailboxes to shared if a terminated user's email needs to be retained for a while. However, when I do this, and then go to AD to disable the user account, after a DIRSYNC the user and shared mailbox both disappear in o365. Am I forgetting something?

    Reply
    • Diane Poremsky says

      February 1, 2016 at 1:31 am

      Don't disable the account - remove the license after changing it to shared.

      Reply
  10. Janos says

    January 14, 2016 at 9:58 am

    Using Office 365 Enterprise E3, now the Admin Center is different.
    There is no Recipients, But USERS/Active Users. But the main problem, there is no "Convert to Shared Mailbox" choice!
    Where is it in this new Admin Center?

    Reply
    • Diane Poremsky says

      January 17, 2016 at 1:31 am

      Are you in the Exchange admin portion? https://outlook.office365.com/ecp/?rfr=Admin_o365&exsvurl=1&mkt=en-US&Realm=yourdomain

      Reply
  11. Andy Mayle says

    July 29, 2015 at 12:34 pm

    Having made the mistake of deleting AD users that had left as part of a clean up process, I discovered that all their mailboxes that had been converted to shared were also deleted. I discovered an easy fix. Go to Users > Deleted Users and restore the account as a cloud account. No need to apply a license. The shared mailbox reappears after a time with full content and all permissions restored. It keep the AD clean but the user account does have to exist in the cloud.

    Reply
    • Diane Poremsky says

      July 29, 2015 at 3:05 pm

      Yeah, you need to keep the AD account but can delete the license after converting it to a shared mailbox.

      Reply
  12. Boyejo Ayoola says

    July 24, 2015 at 11:49 pm

    Hi,

    Since it's not possible to log in to a shared mailbox, I would like to set an automatic response for the account so external contacts can know that the user has left the firm. I do I go about this?

    Reply
    • Diane Poremsky says

      July 25, 2015 at 3:09 pm

      Assign permission to the mailbox to your account then create a new profile for the shared mailbox. See https://www.slipstick.com/exchange/create-rules-and-oof-shared-mailbox/ for details.

      Reply
    • BenMarshall says

      February 24, 2016 at 4:12 pm

      Hi Boyejo

      To set an out of office auto responce for a shared mailbox from the exchange online admin centre select your user tile (top right) then select open another mailbox... Type the shared mailbox name and press OK.

      This will load the mailbox preferences for the shared mailbox and you can define any rules / out of office.

      Thanks Ben

      Reply
  13. Dhiraj pandey says

    July 9, 2015 at 5:06 am

    what is limitation shared mailbox conversion?

    Reply
    • Diane Poremsky says

      July 13, 2015 at 12:01 am

      I'm not aware of a limitation either in the number of shared mailboxes you can have or the number of people who have access rights to a mailbox.

      Reply
  14. Dhiraj pandey says

    July 9, 2015 at 4:59 am

    Dear all,
    after some users convert E3 to shared mailbox successfully but convert 91 users, conversion stop and no error message shown?
    Dhiraj

    Reply
  15. ac says

    July 2, 2015 at 7:35 am

    Would a local AD account need to be kept in order to keep using the shared or resource mailbox?

    Reply
    • Diane Poremsky says

      July 2, 2015 at 8:38 am

      Shared and resource mailboxes will have a disabled AD account, so yes, it needs to be kept.

      Reply
  16. Pete Belcher says

    June 22, 2015 at 10:00 am

    So to clarify, for every user who leaves the business, I can convert them to a Shared Mailbox and keep the data indefinitely, this is OK and doesn't breach the license agreement?

    I would have thought this is using the shared mailbox feature as effectively archiving/backing up the users email and data permanently without paying for it.

    Reply
    • Diane Poremsky says

      June 22, 2015 at 10:11 am

      Correct, you can convert it to shared (and remove the license) and keep it without breaching the license agreement. It's really no different than using public folders (which in newer version of Exchange are mailboxes too).

      Reply
    • Pete Belcher says

      June 22, 2015 at 10:15 am

      Thanks for the prompt responses, I am surprised, seems like a way to cheat the system.

      Reply
      • Diane Poremsky says

        June 22, 2015 at 2:30 pm

        Cheating the system is buying 1 mailbox and creating shared mailboxes for active employees to use (with everyone using the same account to log into their own mailboxes). :) In your case, you are just keeping the former employees mailbox around for historical purposes, possibly because its covered by a law that says it must be kept. It's really no different than a generic sales@ or support@ address that is typically a shared mailbox.

  17. Pete Belcher says

    June 22, 2015 at 9:08 am

    What is the legality of this? does it not breach the license agreement? I would think using Shared Mailboxes as a way to effectively archive is not allowed?

    Reply
    • Diane Poremsky says

      June 22, 2015 at 9:38 am

      The legality of converting mailboxes to shared and removing the license? It's legal - you lose the ability to log into it directly, only accounts with permission can access it. You can't automatically archive to it - you'd need to drag and drop mail into it. It also can't have an online archive mailbox, that feature requires a license.

      Some of the comments are asking about converting a licensed mailbox that has an online archive to shared - the online archive needs to be exported to a pst, the mailbox converted and the pst imported. Otherwise, the contents of the online archive are lost.

      At one time an unlicensed shared mailbox had a lower quota (5 GB) but Microsoft recently removed that requirement and they now have the same 50 GB available to licensed mailboxes.

      Reply
  18. Jon R says

    June 15, 2015 at 5:41 pm

    is there a good way to move the archive emails back into the primary mailbox, or is it a manual process thru an Outlook client?

    Reply
    • Diane Poremsky says

      June 15, 2015 at 9:47 pm

      Archived to a pst or to the online archive mailbox?

      Online archive mailbox: either move them yourself or export to a pst then import into the mailbox.

      PST: You can import or just keep them in the archive and open the archive in outlook - file, open, outlook data file.

      Reply
  19. JD in MN says

    April 24, 2015 at 12:23 pm

    I didn't understand that we need to keep shared mailboxes as a user, but not need a license. Delete the license--don't delete from active users.

    I was able to remove the license in Exchange Online Admin, after converting to shared mailbox, without using Powershell.

    Reply
    • Diane Poremsky says

      April 24, 2015 at 12:27 pm

      Yeah, they updated the admin center a few weeks ago to support conversions.

      Reply
  20. Will Nichols says

    March 17, 2015 at 6:24 am

    The only way to remove the license once converted to shared is through powershell now.

    Reply
  21. Bob says

    February 20, 2015 at 10:12 am

    For online archive, you need to backup the online archive to a .pst file, create a shared mailbox, export the .pst file to the shared mailbox and you then have the mailarchive of the old user.
    My question is though, if we delete the user first (after backing up the email to .pst), and then create a shared mailbox with that uses name, would emails still arrive in the inbox just as if the user is still active?
    As I alrady have other shared mailboxes setup that are receiving emails from external users, I am assuming this would be the case?

    Reply
    • Diane Poremsky says

      March 18, 2015 at 1:32 am

      The messages would arrive in the shared mailbox if the smtp address was the same as before. you can export the mail to a pst then remove the online archive and switch it to shared. That might be easier than deleting and recreating.

      Reply
  22. Matthew Marlowe says

    January 2, 2015 at 8:32 am

    This didn't work for me. I converted to Shared, then just removed the license and it deleted the Exchange box. It's gone. ;(

    Reply
    • Diane Poremsky says

      January 2, 2015 at 10:20 pm

      That's not supposed to happen if you convert to shared before removing the license. Are you using Office 365 or an on premise exchange server?

      It should be recoverable for up to 24 hours, if not longer.

      Reply
  23. Charlie says

    December 11, 2014 at 7:44 pm

    That didn't seem to work for me. i converted to Shared, deleted the user, and then it delete the Shared inbox also. Lucky I still took a backup.

    Reply
    • Diane Poremsky says

      December 11, 2014 at 7:48 pm

      Yeah, you don't delete the user, you only remove the license from their account.

      Reply
  24. Andy says

    December 9, 2014 at 7:15 pm

    Like this Idea. Thanks! However I'd like to rename the mailbox to indicate it is for a former employee, my problem is that the object is synced with AD. I can rename it in AD but at some point the AD object will be deleted and the mailbox won't be. Is there a way to break AD sync for one object.
    If not, it's a question of exporting from a user mail box them importing to a shared one. A bit time consuming to say the least. lol.

    Reply
    • Diane Poremsky says

      December 13, 2014 at 1:11 am

      AFAIK, there is no way to break the sync with the AD - you need to keep the unlicensed user. You might be able to rename it, but it will still be linked to the AD object.

      Reply
  25. Frank S. says

    December 9, 2014 at 2:33 pm

    I am getting cmd not available when trying to run the Get-Mailbox from powershell?

    Reply
    • Diane Poremsky says

      December 13, 2014 at 1:01 am

      which command does it say is the problem? I noticed today that there was a space after one dash - there is not supposed to be a space between the dash and the parameters.

      Reply
  26. mdelcar007@hotmail.com says

    November 11, 2014 at 11:43 am

    I'm looking to convert a regular mailbox to a shared mailbox and was looking at risks in doing so. I wanted to confirm your 5gb limit for shared mailboxes, but the technet site says 50gb for shared mailboxes on 365 Enterprise. Can you confirm?

    Reply
    • Diane Poremsky says

      November 11, 2014 at 4:06 pm

      They recently raised the shared quota for a *free* license to 10 GB. You can create a shared mailbox with a higher quota but will need to assign a license to it.

      Looks like they changed the quota again - it's now 50GB, no license required unless you need online archiving.

      Reply
  27. Avinash Illindra says

    October 29, 2014 at 10:50 pm

    Thanks for the great article, it will be very helpful article.

    I have a small doubt on Second dialog:

    We lost the mails surely or is there any alteration for without loosing mails.

    Regards,
    Avinash Illindra

    Reply
    • Diane Poremsky says

      October 30, 2014 at 6:03 pm

      Unless the mailbox is over 5 GB or is using an online archive, you won't lose any messages. If there is more than 5 GB in the mailbox, the mailbox may be truncated - if you are using an online archive, it will be lost. The mailbox should be recoverable though.

      Reply
  28. Mike says

    October 28, 2014 at 4:19 pm

    great article!!! especially for a novice like me. i do have to say though i am lost at the last part where you say

    "Now you can remove the license from the account in Users and Groups."

    where is that done? i can't find it

    Reply
    • Diane Poremsky says

      October 28, 2014 at 11:31 pm

      They keep changing it, but as of this writing, Login to Office 365, select User > Active Users and double click on the account your changes to a shared mailbox. That will open their user account, then click Licenses.
      This link should get you there - https://portal.office.com/admin/default.aspx#ActiveUsersPage

      Reply
  29. Adam says

    August 26, 2014 at 2:28 pm

    This was a very useful article, being the first time I've needed to perform such a task. Thank you!

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 7

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • Reset the New Outlook Profile
  • Disable "Always ask before opening" Dialog
  • How to Hide or Delete Outlook's Default Folders
  • This operation has been cancelled due to restrictions
  • Change Outlook's Programmatic Access Options
  • Use Public Folders In new Outlook
  • Removing Suggested Accounts in New Outlook
  • How to Delete Stuck Read Receipts
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.