web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Dynamics CRM 2011 update help server url

Zhongchen Zhou Profile Picture Zhongchen Zhou 681

PowerShell


PS > Add-PSSnapin Microsoft.Crm.PowerShell
 PS > $web = Get-CrmSetting WebAddressSettings
 PS > $web.HelpServerUrl = ""
 PS > Set-CrmSetting $web

C#


var service = Microsoft.Xrm.Sdk.Deployment.Proxy.ProxyClientHelper.CreateClient(new System.Uri("http://crm2011:5555/XRMDeployment/2011/Deployment.svc"));

var webAddressSettings = (Microsoft.Xrm.Sdk.Deployment.WebAddressSettings)service.Retrieve(Microsoft.Xrm.Sdk.Deployment.DeploymentEntityType.WebAddressSettings, null);

webAddressSettings.HelpServerUrl = "http://crm2011:5555";

service.Update(webAddressSettings);


This was originally posted here.

Comments

*This post is locked for comments