Skip to content

Instantly share code, notes, and snippets.

@westerdaled
Created January 7, 2015 14:54
Show Gist options
  • Save westerdaled/9e62abacec01365e9323 to your computer and use it in GitHub Desktop.
Save westerdaled/9e62abacec01365e9323 to your computer and use it in GitHub Desktop.
#
# SharePoint must be configured to allow Remote Endpoint intranet calls to local web services by using the following Windows PowerShell commands.
#
Add-PSSnapin Microsoft.sharepoint.powershell
$f = Get-SPFarm
$f.Properties.DisableIntranetCalls = $false
$f.Properties.DisableIntranetCallsFromApps = $false
$f.Update()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment