I’ve started using a couple of different sitemap editors in my projects for CRM 2013. These tools help to streamline the sitemap editing process by letting you connect directly to your CRM server and push out updates. This saves you the hassle of having to; package your sitemap into a solution, downloading it, unzipping it, opening it, editing it, re-zipping it, re-installing the new sitemap solution. – Tedious.

  1. The XrmToolbox (Formerly SiteMap Editor) by Tanguy. It is available for download HERE
  2. The CRM Sitemap Editor (part of the CRM Solution Manager) by Simpler Software. It is available for download HERE

Both tools are free though Simpler Software has a paid CRM Solution Manager product as well.

XrmToolbox (Tanguy)

When you first download XrmToolbox and try to run it, you may get a warning dialog saying:

“Unable to find Windows Identity Foundation 3.5 on this computer. This program may not work properly. Do you want to continue?”

If so you will need to obtain Windows Identity Foundation 3.5 which is available for download HERE

Install Windows Identity Framework

Grab the right version for your machine (i.e. 32 bit vs 64 bit by checking the install instructions).

Once installed, it still needs to be enabled before it will work.

  1. Hit your Windows Key on Windows 7, or swipe right on Windows 8.
  2. Click in the Search
  3. Type ‘Windows Features’ – which should reveal an option to “Turn Windows Features On or Off”

    Turn Windows Features On or Off

  4. You’ll get a dialog box. Scroll down to the option for “Windows Identity Foundation 3.5″. Check the box.

    Windows Identity Foundation 3.5

  5. Let your machine configure WIF3.5

Run XrmToolbox

  1. After that you can head back to the folder where you unzipped XrmToolbox.

    Run XrmToolbox

  2. Scroll down to to Sitemap Editor

    Using XrmToolbox Sitemap Editor

  3. You will be prompted to connect to your organization first. Click ‘Yes’. (Note without Windows Identity Foundation 3.5 installed you will not be able to successfully connect to your organization(s))

    Connect To CRM Server With XrmToolbox

  4. Click ‘New Connection’
  5. Give your connection a name, and enter your log in credentials
  6. Click ‘Get Orgs’
  7. Once connected click ‘Load Sitemap’

    XrmToolbox Sitemap Editor Interface

  8. Make your changes
  9. Click ‘Update Sitemap’

CRM Sitemap Editor (Simpler Software)

This is another nice editor (though a little more visual). I like that it displays the icons for your entities.

It works much like the XrmToolbox Sitemap Editor.

  1. Launch the application
  2. Enter your log in credentials

    CRM Sitemap Editor

    CRM Sitemap Editor

  3. Once connected you can download your existing site map, make edits, and upload the new one.

    CRM Sitemap Editor

Sitemap Editors for Dynamics CRM 2013的更多相关文章

  1. Step by step Dynamics CRM 2011升级到Dynamics CRM 2013

    原创地址:http://www.cnblogs.com/jfzhu/p/4018153.html 转载请注明出处 (一)检查Customizations 从2011升级到2013有一些legacy f ...

  2. Microsoft Dynamics CRM 2013 and 2011 Update Rollups and Service Packs

      Microsoft Dynamics CRM 2013   BTW: RC stands for Release for Candidate, and RTM stands for Release ...

  3. Dynamics CRM 2013 installation

    原创地址:http://www.cnblogs.com/jfzhu/p/3445820.html 转载请注明出处 一 硬件要求 1. CRM Server 下表对硬件的要求是假定Microsoft S ...

  4. Dynamics CRM 2013 SP1 升级到Dynamics CRM 2015

     首先截图一下我要升级的Dynamics CRM 2013版本如下图,可以看到是打了SP1后的CRM 2013.         运行CRM 2015简体中文版的安装文件CRM2015-Server- ...

  5. Microsoft Dynamics CRM 2013 安装程序及SDK 下载地址

    Microsoft Dynamics CRM 2013 已经具有相关资料 2013 Setup (Microsoft Dynamics CRM Server 2013) 下载地址: http://ww ...

  6. Microsoft Dynamics CRM 2013 --针对特定实体,取消保存功能(包含自动保存)

    AutoSave 是 Microsoft Dynamics CRM 2013 一个新特性. 但AutoSave的有效范围是[所有实体],不允许针对特定某一实体进行设置. 所以,若想针对特定实体进行设置 ...

  7. Microsoft Dynamics CRM 2013 --选项集的多选

    由于从Microsoft Dynamics CRM 2011到Microsoft Dynamics CRM 2013,界面的风格发生了很大的变化 故原先在2011上开发的选项集多选在2013上面已经不 ...

  8. Microsoft Dynamics CRM 2013 安装过程图解及安装序列号

    Microsoft Dynamics CRM 2013 安装过程 图解   在安装前,先持一下SQL配置管理,将相关的服务打开.(由于在虚拟机里,许多服务需要时才会打开,像Reporting Serv ...

  9. Dynamics CRM 2013 初体验(2):UI

    Dynamics CRM 2013 系统的UI与2011相比改动是巨大的:传统的导航栏被去掉了,取代它的是win8风格的小磁铁:Ribbon风格的工具栏也被去掉啦,它的风格将回滚至4.0时代:新系统添 ...

随机推荐

  1. 2.Hashing

    散列法(Hashing)或哈希法是一种将字符组成的字符串转换为固定长度(一般是更短长度)的数值或索引值的方法,称为散列法,也叫哈希法.由于通过更短的哈希值比用原始值进行数据库搜索更快,这种方法一般用来 ...

  2. 一步步学习ASP.NET MVC3 (15)——过滤器

    请注明转载地址:http://www.cnblogs.com/arhat 今天老魏和大家一起讨论一下ASP.NET MVC中非常重要的一个知识:"过滤器".那么这个"过滤 ...

  3. XSS传染基础——JavaScript中的opener、iframe

    最近研究XSS,根据etherDream大神的博客 延长XSS生命周期 写了一个子页面父页面相互修改的demo. 一. 子页面.父页面相互修改——window.opener.window.open 在 ...

  4. 数据结构---顺序表(C++)

    顺序表 是用一段地址连续的存储单元依次存储线性表的数据元素. 通常用一维数组来实现 基本操作: 初始化 销毁 求长 按位查找 按值查找 插入元素 删除位置i的元素 判空操作 遍历操作 示例代码: // ...

  5. js正则匹配查找

    var pattern1 = /好/g; console.log(pattern1.test("你好")); 字符串查找: var pattern1 = /\w/; console ...

  6. 上下切换js

    <div class="wview"> <span class="prevs" id="prevs-j"></ ...

  7. 在Unity中高效工作(上)

    原地址:http://www.unity蛮牛.com/thread-19974-1-1.html 编的话:感谢做编程的IT朋友,帮我翻译文章,我又稍稍做了些修改.给点儿掌声哩.欢迎大家多多评论呦. 我 ...

  8. HDU 1003 Max Sum(DP)

    点我看题目 题意 : 就是让你从一个数列中找连续的数字要求他们的和最大. 思路 : 往前加然后再判断一下就行. #include <iostream> #include<stdio. ...

  9. loadrunner 脚本和replaylog中的中文乱码问题(转载)

    解决这个问题必须认识到一个事实就是,loadrunner和测试服务器交换数据使用的是utf8格式,但是展现在replaylog中是使用gb2312格式,而且在脚本中如何使用web_reg_find的时 ...

  10. .Net remoting, Webservice,WCF,Socket区别

    传统上,我们把计算机后台程序(Daemon)提供的功能,称为"服务"(service).比如,让一个杀毒软件在后台运行,它会自动监控系统,那么这种自动监控就是一个"服务& ...