Cannot Reach OneDrive and SharePoint

WilliamM 46 Reputation points
2021-08-17T19:20:20.827+00:00

A user in my organization cannot reach OneDrive or SharePoint through any method. Outlook on the web works fine, but whenever the user tries to access OneDrive or SharePoint through a linked document, or from the app 'waffle' in Outlook or from an existing bookmark, Firefox displays the 'We're having trouble finding that site' and Chrome says 'This site can't be reached, dns_probe_finished'.

We have tried clearing browser cache and accessing OneDrive/SharePoint in a private window. That did not solve the problem. I logged in with my credentials on the user's browsers and could not reach OneDrive or SharePoint either.

What could be causing this issue and what may be some solutions?

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,977 questions
OneDrive Management
OneDrive Management
OneDrive: A Microsoft file hosting and synchronization service.Management: The act or process of organizing, handling, directing or controlling something.
1,297 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Echo Du_MSFT 17,196 Reputation points
    2021-08-18T07:36:58.837+00:00

    Hello @WilliamM ,

    Please following steps:

    1.Sign in SharePoint admin center as a Global Administrator to check if the site exists

    124188-c1.png

    2.If the site exists, please check if the site is locked. If the site is locked, there will be an error that "This site can’t be reached".

    124189-c2.png

    3.You can run the below powershell command as an admin to unlock site

    #Connect the SharePoint online Admin center    
    Connect-SPOService -URL https://tenant-admin.sharepoint.com  
    
    #Get the SiteCollection URL    
    $SiteURL = "https://tenant.sharepoint.com/sites/du"  
    
    #Unlock the SharePoint Site    
    Set-SPOSite -Identity $siteURL -Lockstate “Unlock”    
    
    #Lock the SharePoint Site    
    #Set-SPOSite -Identity $siteURL -Lockstate “NoAccess”    
    

    124079-c3.png

    124080-c4.png

    Thanks,
    Echo Du

    ========================

    If an Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


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.