![]()
In this โSharePoint search boxโ tutorial, we will learn how to configure the SharePoint search box in the Office 365 suite bar step by step and how we can change the organisation profile settings in Office 365. The reason behind this article is that recently I was working on a custom search result page in my tenant, but I could not find the SharePoint search box in the Office 365 suite bar. However, I was perplexed when I noticed the same search box in my other tenant.
Then I realised there was something seriously wrong with my tenant because it wasnโt working.Throughout this article, I will focus on the two points below:
- How to configure the SharePoint search box in the Office 365 suite bar, step by step
- How to configure organization profile settings in Office 365
Configure SharePoint search box โ Configure the search box in SharePoint online
Letโs have a look at the below screenshot.
Generally, in the below ribbon (at the top โ highlighted) there should be a search box but was missing in my tenant.

So, how to enable the search box at the top of the page in the ribbon?
Letโs follow the below steps:
- In the admin center, go to Settingsย >ย Setting, and under theย Organization profileย tab, chooseย Release preferences.
- To disable the targeted release, select Standard release, then selectย Save changes.
- To enable targeted release for all users in your organization, selectย Targeted release for everyone, then selectย Save changes.
- To enable targeted release for some people in your organization, selectย Targeted release for selected users, then selectย Save changes.
- Chooseย Select usersย to add users one at a time, orย Upload usersย to add them in bulk.
- When youโre done adding users, selectย Save changes.
or
Directly you can browse the below URL to go to the organization profile page.
admin.microsoft.com/Adminportal/Home#/companyprofile
Go to the โRelease Preferencesโ section, next to that click on the โActionโ menu, then click on the โEditโ menu.

โRelease Trackโ configuration
In the next pane, we will see the โRelease Trackโ configuration option, we have the below configuration options:
- Standard release โ Get updates when we release them broadly. By default, this will be selected.
- Targeted release for everyone โ Get updates early for your entire organization.
- Targeted release for selected users โ Pick people to preview updates so that you can prepare your organization

Release Track โ Release Preferences in Office 365 โ Organization Profile
Now, we need to change the selection from โStandard releaseโ to any of the below selections:
- Targeted release for everyone โ Get updates early for your entire organization.
- Targeted release for selected users โ Pick people to preview updates so that you can prepare your organization
In the production, the recommendation is โTargeted release for selected usersโ, as this is my trial tenant I have selected as โTargeted release for everyoneโ.
Then click on the Next button.

Now, I am getting the confirmation message โAre you sure you want to leave Targeted release for select people?โ because I had selected earlier โTargeted release for selected usersโ.
Click on the โYesโ button.
It will update the release preferences, then finally click on the โCloseโ button.
FYI โ For the โTargeted release for selected usersโ configuration, you will get the below screen where you need to add the list of targeted release users.

It might take 24 hours to get it reflected in your tenant.
Office 365 suite bar customization using PnP PowerShell
So, in order to make this change immediately, we need to run the below PnP PowerShell script:
$userName = "Global-sharepoint2020@globalsharepoint2020.onmicrosoft.com"
$passWord = "YourSPOPassword"
$encPassWord = convertto-securestring -String $passWord -AsPlainText -Force
$cred = new-object -typename System.Management.Automation.PSCredential -argumentlist $userName, $encPassWord
Connect-PnPOnline -Url "yourtenant-admin.sharepoint.com/" -Credentials $cred
#Example as below:
Connect-PnPOnline -Url "globalsharepoint2020-admin.sharepoint.com/" -Credentials $cred
try
{
$web = Get-PnPWeb
#0 - Inherit, #1 - AllPages, #2 - ModernOnly, #3 - Hidden enums for Global (Modern Search)
$web.SearchBoxInNavBar=2
$web.Update()
Invoke-PnPQuery
Write-Host "The changes have been updated successfully." -BackgroundColor Green
}
catch
{
$ErrorMessage = $_.Exception.Message +"in applying search setting changes!: "
Write-Host $ErrorMessage -BackgroundColor Red
Write-Log $ErrorMessage
}
Write-Host "The script execution has been completed successfully."
After executing the above script, immediately we can see the search box (at the top ribbon) as expected which was not there at the beginning of this article.

Summary: Configure search box in SharePoint online (SharePoint search box)
Thus, in this article, we have learned the following with respect to organizational profile settings changes in Microsoft 365:
- How to change the organization profile settings in Office 365.
- How to configure the โRelease Trackโ in Office 365.
- What are the Standard release, Targeted releases for everyone, and Targeted releases for selected users
- How to configure the โStandard release (Get updates when we release them broadly)โ.
- How to configure the โTargeted release for everyone (Get updates early for your entire organizationโ)โ.
- How to configure the โTargeted release for selected users (Pick people to preview updates so that you can prepare your organization)โ.
- How to change the โRelease Track โ Release Preferences in Office 365 โ Organization Profileโ using the PnP PowerShell script.
- How to configure the SharePoint online modern search.
- How to configure the SharePoint search box in the office 365 suite bar.
References: Configure search box in SharePoint online (Modern SharePoint search box)
See Also: SharePoint Online tutorial
You may also like the below SharePoint Online tutorials:
- How to auto populate field in InfoPath based on another field
- Add more than 5 conditions in InfoPath formโs rule
- How to validate the date column in Infopath form
- How to a copy list item to another list using SharePoint designer workflow
- Edit user Permission is greyed Out SharePoint Online
- Can not upload SharePoint App to SharePoint App Catalog
- Column header formatting in SharePoint list Quick Edit or Datasheet View
- Enable and configure information rights management (IRM) in SharePoint Online
- 25 quick checklists for SharePoint migration
- Create app catalog site in SharePoint online step by step
- Manage recycle bin in SharePoint Online โ Office 365
ย
About Post Author
Discover more from Global SharePoint
Subscribe to get the latest posts sent to your email.
