Office 365 Sign Out Everywhere

Posted on  by

To force log out users, we can use the Office 365 Admin Center or PowerShell.

Here’s what we recommend for an easy sign-in experience: Bookmark office.com and use your bookmark for signing in. Go to office365.com and click the Sign in button. This video walks you through the steps to sign in and sign out of Office 365. Signing in allows you to access your Outlook inbox, calendar, contacts, and tasks. Stack Overflow for Teams is a private, secure spot for you and your coworkers to find and share information. Poll Everywhere offers an Microsoft 365 add-in on the Office Store. However, if you are presenting from a laptop or a desktop computer, it’s best to use the standalone Poll Everywhere presentation app for Windows or Mac. If you need to present from a tablet, the Poll Everywhere for Microsoft 365 add-in is a great secondary option. To sign-out from Office 365 Home Page, click ‘Sign out’ under your Office 365 Display Name: c. If you are presented with the Office 365 portal ‘sign in’ page displaying your NETID username, click on ‘x’ next to the username. This is a critical step, particularly on a public/shared computer such as a kiosk. Adfs sign out page. Office 365 Single sign On. By scl-family1 on November 27, 2018. 839 Views 0 Likes. ADFS Sign Out Page customization.

In Office 365 Admin center, use the following the following steps.

  1. Office 365 Admin Center
  2. Users -> Active Users ->Select the User and in the OneDrive settings, click Initiate sign out.
Office 365 sign out everywhere page

If you would like to force sign out multiple users, you can also execute following script.

Import-Module MSOnline
$cred = Get-Credential
Connect-MsolService -Credential $cred
Connect-SPOService -Url https://yourdomainname-admin.sharepoint.com -Credential $cred

# To get all enabled users
#$users = Get-MsolUser -EnabledFilter EnabledOnly -All

# To get all the users of a Department
#$users = Get-MsolUser -Department ‘Department Name’ -All

# To get all the users
$users = Get-MsolUser -All;

foreach ( $user in $users){
Revoke-SPOUserSession -user $user.UserPrincipalName -Confirm:$false
}

Security Requirements: You need to be a SharePoint Online Global administrator to run the cmdlet Revoke-SPOUserSession.

The user will be signed out from all the sessions across all the devices.

Office 365 Sign Out Everywhere Please

It may take up to an hour for all sign-outs.

Note: If this is the first time you are running the PowerShell for Office 365, use the following two links to install the required tools.

Office 365 Sign Out Everywhere Email

Please post in the comments section, if you have more ideas for scripts.