在PowerShell中连接到CRM 2016 IFD

时间:2016-07-18 16:19:42

标签: powershell dynamics-crm crm

我想使用SDK中包含的PowerShell cmdlet Get-CrmConnection连接到CRM 2016服务器。

我无法找到正确的连接字符串。

连接到本地网络中的服务器正常工作:

Get-CrmConnection -ConnectionString "Url=http://<server>/OrganizationName;"

但是连接到为IFD配置的服务器失败:

Get-CrmConnection -ConnectionString "Url=https://crm.ourdomain.com/"

Get-CrmConnection : Organization cannot be null or empty.
Parameter name: Organization Name
At line:1 char:1
+ Get-CrmConnection -ConnectionString "Url=https://crm.ourdomain.com/ ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : SyntaxError: (:) [Get-CrmConnection], ArgumentNullException
    + FullyQualifiedErrorId : -9,Microsoft.Xrm.Tooling.CrmConnector.Powershell.Commands.GetCrmConnectionCommand

我尝试在连接字符串中添加AuthType参数,提供组织名称,但没有成功。重要的是我可以使用交互模式进行连接:

Get-CrmConnection -InteractiveMode

Interactive mode window

返回以下连接:

IsReady                        : True
IsBatchOperationsAvailable     : True
Authority                      :
OAuthUserId                    :
ActiveAuthenticationType       : AD
OrganizationServiceProxy       : Microsoft.Xrm.Tooling.Connector.CrmWebSvc+ManagedTokenOrganizationServiceProxy
OrganizationWebProxyClient     :
LastCrmError                   : OrganizationWebProxyClient is null
LastCrmException               :
CrmConnectOrgUriActual         : https://crm.ourdomain.com/XRMServices/2011/Organization.svc
ConnectedOrgFriendlyName       : OrganizationName
ConnectedOrgUniqueName         : OrganizationName
ConnectedOrgPublishedEndpoints : {[WebApplication, https://crm.ourdomain.com/], [OrganizationService,
                             https://crm.ourdomain.com/XRMServices/2011/Organization.svc],
                             [OrganizationDataService,
                             https://crm.ourdomain.com/XRMServices/2011/OrganizationData.svc]}
ConnectionLockObject           : System.Object
ConnectedOrgVersion            : 8.0.1.79

1 个答案:

答案 0 :(得分:7)

microsoft.xrm.tooling.connector CrmConnection有一些大问题可以让你撞到墙上。

引用http://crmtipoftheday.com/2016/01/14/rumors-about-microsoft-xrm-client-death-are-exaggerated/

  

请注意以下事项:

     
      
  • 网址必须采用https://orgname.contoso.com/orgname的形式。对于内部部署和IFD部署,连接器期望orgname为
      在最后,看起来它没有任何尝试推断
      来自服务器URL的orgname。
  •   
  • 必须指定域名,但不会通过声明传递,因此它可以是任何内容。真的是任何非空字符串o__O
  •   
  • 用户名必须是UPN。如果不是,那么,由于域名未通过它,ADFS 3.0会引发一个拟合(ADFS 2.0假定域名)
  •   

以下为我工作

get-crmconnection -ConnectionString "Server=https://{orgname}.{domain}.com/{orgname}; Domain=this_isnt_used_but_must_be_provided; UserName={domain}\{user}; Password={password}"

稍微修改后的用户名也是UPN

get-crmconnection -ConnectionString "Server=https://{orgname}.{domain}.com/{orgname}; Domain=this_isnt_used_but_must_be_provided; UserName={user}@{domain}; Password={password}"