我正在尝试使用crmsvcutil.exe
CRM 2011 On Premise 安装。我使用以下命令从命令行运行它:
CrmSvcUtil.exe /url:http://crmx36/FMGLegal/XRMServices/2011/Organization.svc
/out:Xrm /username:owsike /password:test /domain:CORP
/namespace:XRM /serviceContextName:LegalDataContext /codeCustomization:"Microsoft.Xrm.Client.CodeGeneration.CodeCustomization,Microsoft.Xrm.Client.CodeGeneration"
然后将打开窗口crmsvcutil.exe
,但不到一秒钟后关闭。我正在尝试启用跟踪,但我看到的所有帖子都建议在其配置文件中添加一行。我的 SDK 下载不包含此 exe 的配置文件,因此我创建了一个包含以下内容的文件:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
</appSettings>
<system.diagnostics>
<trace autoflush="false" indentsize="4">
<listeners>
<add name="configConsoleListener"
type="System.Diagnostics.ConsoleTraceListener">
<filter type="System.Diagnostics.EventTypeFilter"
initializeData="Error" />
</add>
</listeners>
</trace>
</system.diagnostics>
</configuration>
但是日志/跟踪仍然没有被启用,所以我看不到它抛出的错误。有谁知道为什么 exe 仍然没有使用日志记录/跟踪,或者为什么我crmsvcutil.exe
的错误?