In the intranet, the first time the OWA access slow problem

Source: Internet
Author: User

When the network environment is intranet, sometimes access to the OWA site is stuck in the office Web App. This is because SharePoint has a certificate that requires a networked search

This environment is SharePoint 2013

The following three steps can be used to resolve this issue

Steps 1: ( on Start screen, left-click (in Start screen)

Steps 2: ( on the SharePoint 2013 Management Shell, right-click

Steps 3: (Left- click on "Run as Administrator"

Steps 4: ( on the administrator: SharePoint 2013 Management Shell, enter:

$pfxpath = ' C:\SPRA.cer '
$rootCert = (get-spcertificateauthority). Rootcertificate
$rootCert. Export ("Cert") | Set-content $pfxpath-encoding Byte

[System.Security.Cryptography.X509Certificates.StoreLocation] $StoreLocation = ' LocalMachine '
$StoreName = ' root '

Add-type-assemblyname System.Security
$certificate = New-object System.Security.Cryptography.X509Certificates.X509Certificate2
$certificate. Import ($pfxpath)

$Store = New-object System.security.cryptography.X509Certificates.x509Store ($StoreName, $StoreLocation)
$Store. Open (' ReadWrite ')
$Store. ADD ($certificate)
$Store. Close ()

Step 5: Enter gpedit.msc at the command line and return to

Step 6: Open "local Computer Policy" à "Computer Configuration" à "Windows Settings" à "security settings" à "public key policy"

Step 7: Double-click on the right "certificate Path validation Settings"

Step 8: Click the "Web Search" tab

Step 9: Tick "Define these policy settings (F)" and uncheck "Automatically update certificates in Microsoft Root Certificate program (recommended) (M)"

Step 10: Click the "OK" button to close the "Local Group Policy Editor"

Step 11: Enter "Gpupdate/force" at the command line and then enter

Step 12: Open Notepad as an administrator

Step 13: Open the C:\Windows\System32\drivers\etc\hosts file

Step 14: Add the following 2 domain name resolution in the Hosts file

127.0.0.1 crl.microsoft.com

127.0.0.1 ctldl.windowsupdate.com

In the intranet, the first time the OWA access slow problem

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.