Domanda

In my other tenant, I could see the search box at the top of each site (SharePoint top ribbon), but in my below-mentioned tenant I am missing that - I have checked but didn't find any configuration for that.

How to enable searchbox in the ribbon

Can anyone please help me to enable this search box in the SharePoint top ribbon.

È stato utile?

Soluzione

Regarding enable the search bar:

Check the Release preferences setting in the admin center of your tenants.

Your other tenant must be set to get the Targeted release under which you get all the latest changes that are not yet ruled out for all the users.

Your current tenant might be set to Standart Release (By Default). So it will not have the latest changes which are not ruled out for everyone.

However, you can get all the latest changes on your current tenant only for the selected user by setting the Release preferences to Targeted release for the select users.

Reference: Set up the release option in the admin center

You can do the same using PnP PowerShell as well. Below is an example.

Connect-PnPOnline -Url "https://[tenant].sharepoint.com/[site]" -UseWebLogin
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 "Done" -BackgroundColor Green   
}
catch{
 Write-Host "No permission" -BackgroundColor Red    
}
Write-Host "All Done"

Altri suggerimenti

As per the Microsoft 365 Roadmap for Microsoft Search GA, the feature is Rolling out for O365 Standard Release and the estimated time frame is Q1 CY2020.

Currently it is not supported to manually enable this feature in Office365 tenant. I suggest you wait for the status gets updated to Launched in the Microsoft 365 Roadmap site so that you can get this feature automatically.

Change the Release preferences for your tenant to Targeted release for everyone or Targeted release for select users if necessary. It can take up to 24 hours for the changes to take effect in Office 365.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top