Spring ’14 Wave Update: Installing Dynamics CRM on Tablets for Windows 8.1
One of the added bonuses of Dynamics CRM is its ability go where you go! With the Spring ’14 Wave Update, you can now download CRM to your tablet with Windows 8.1. If you currently have the CRM for tablets installed, make sure to uninstall it before beginning and completing these steps.
1. The Tablet app for Windows 8.1 is simply named Microsoft Dynamics CRM.

2. The Tablet app for Windows 8 is labeled as Microsoft Dynamics CRM for Windows 8.

3. After installing you may receive this message:

4. You will need to follow these steps to modify your registry and add keys.
Note: As always, back up your registry first.
Using Regedit
- Start Registry Editor.
- Before making changes to your registry, you should make a backup. Click or tap File > Export and enter your settings.
- Locate the following registry subkey:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\policies
- Right-click or tap Policies, point to New, and then click or tap Key.
- Type Packages, and then press ENTER.
- Right-click or tap Packages, point to New, and then click or tap Key.
- Type Applications, and then save the text.
- Right-click or tap Applications, point to New, and then click or tap DWORD (32-bit) Value.
- Type EnableDynamicContentUriRules and then save the text.
- Right-click or tap EnableDynamicContentUriRules, and then click or tap Modify.
- Type 1 in the Value Data box, and then click or tap OK.
- Right-click or tap Applications, point to New, and then click or tap Key.
- Type ContentUriRules, and then save the text.
- Right-click or tap ContentUriRules, point to New, and then click or tap String Value.
- Type 1, and then save the text.
- Right-click or tap 1, and then click or tap Modify.
- Type your CRM organization’s URL in the Value Data box (for example, https://contoso.com), and then click or tap OK.
- Exit the Registry Editor.


5. Now your URL should successfully connect. Note: Ensure you do not have a ‘/’ (slash) at the end of the URL.

6. On the OAuth screen you may not successfully log in if OAuth is not configured.

7. If so, click Cancel and you should be presented with the ADFS login:

8. The metadata sync will run for a few minutes. Go get a cup a coffee and it should be done when you return.

9. After completion of the metadata sync you will be into the Tablet dashboard which is the Sales Dashboard.

10. Start enjoying new features such as sign-out and reconfigure.

If you are looking for more information on other Spring ’14 Wave topics, look to these great resources:
- Spring ’14 Wave Update: Entitlements Advanced Features in Dynamics CRM
Spring Wave 14 Update: Working with Entitlements in Microsoft Dynamics CRM
Happy CRM’ing!
Spring ’14 Wave Update: Installing Dynamics CRM on Tablets for Windows 8.1的更多相关文章
- 一、Microsoft Dynamics CRM 4.0 SDK概述
Chapter 1. Microsoft Dynamics CRM 4.0 SDK Overview(SDK概述) You are probably reading this book because ...
- 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 ...
- Dynamics CRM2016 New features in Microsoft Dynamics CRM Online 2015 Update 1 are now available
很多人看过Dynamics CRM Online 2015 Update 1后,被它新的一个界面风格所吸引,还有它的很多新增功能,虽然官网放出了些补丁,但最重要的Server补丁一直没出,包括我在内很 ...
- Dynamics CRM 2015 Update 1 系列(4): 自己定义主键 - Alternate Keys
Alternate Keys. 还是和系统集成相关的一个重量级Feature.使用该Feature能极大的提高开发数据集成接口的时间成本以及接口的执行效率. 在之前的Dynamics CRM 版本号中 ...
- Step by step Dynamics CRM 2011升级到Dynamics CRM 2013
原创地址:http://www.cnblogs.com/jfzhu/p/4018153.html 转载请注明出处 (一)检查Customizations 从2011升级到2013有一些legacy f ...
- Dynamics CRM中一个查找字段引发的【血案】
摘要: 本人微信和易信公众号: 微软动态CRM专家罗勇 ,回复267或者20180311可方便获取本文,同时可以在第一间得到我发布的最新的博文信息,follow me!我的网站是 www.luoyon ...
- 转:JavaScript Reference for Microsoft Dynamics CRM 2011 / 2013
JavaScript Reference for Microsoft Dynamics CRM 2011 / 2013 98 Replies Here’s a quick reference guid ...
- 在VM虚拟机上安装Microsoft Dynamics CRM 2016 步骤图解及安装注意事项
安装Dynamics CRM 2016环境配置要求: 系统版本:Windows Server 2012 R2(必须) SQL 版本: SQLServer2014SP1-FullSlipstream-x ...
- Dynamics CRM 2013 installation
原创地址:http://www.cnblogs.com/jfzhu/p/3445820.html 转载请注明出处 一 硬件要求 1. CRM Server 下表对硬件的要求是假定Microsoft S ...
随机推荐
- 8位灰度图在LCD上显示
一.概述 1.灰度 灰度使用黑色调表示物体,即用黑色为基准色,不同的饱和度的黑色来显示图像.每个灰度对象都具有从 0%(白色)到灰度条100%(黑色)的亮度值. 使用黑白或灰度扫描仪生成的图像通常以灰 ...
- UILocalNotification本地通知
// 执行通知一定要退出应用或挂起应用(进入后台)才能收到通知. 1.在iOS8及其以后版本中使用本地消息需要先获得用户的许可,否则无法成功注册本地消息.因此,我们将询问用户许可的代码片段添加到了ap ...
- Unity3d Shader开发(三)Pass(Pass Tags,Name,BindChannels )
Pass Tags 通过使用tags来告诉渲染引擎在什么时候该如何渲染他们所期望的效果. Syntax 语法 Tags { "TagName1" = "Value1&qu ...
- [转载]C#实现POST提交方式
网页自动登录和提交POST信息的核心就是分析网页的源代码(HTML),在C#中,可以用来提取网页HTML的组件比较多,常用的用WebBrowser.WebClient.HttpWebRequest这三 ...
- asp 下拉框二级联动
<script language = "JavaScript"> //js开始 var aaa;//定义aaa变量 aaa=0;//aaa赋0 bb = new Arr ...
- [codility]tape_equilibrium
http://codility.com/demo/take-sample-test/tapeequilibrium 简单题.记录到i为止的sum就可以了.O(n). // you can also u ...
- [wikioi]二叉树最大宽度和高度
简单的DFS,用数组w记录每一层的宽度就行了,就是遇到一层就++.中间发现在C++里面,如果int未初始化就是用也是有异常的.还有二叉树的数组表示时,从1开始计数会比较好.还有后来学会了数组这样的初始 ...
- 雷军的B面:那些赔到血本无归的失败投资案例
文/李红双 雷军投资方向偏多元化布局,从电商到房地产,从互联网社区到移动互联网,多方跨界的结果必然是有失有得.本文扒一扒“雷军系”中最惨烈的电商投资,凡客诚品融资5.3亿美元目前处于垮台边缘,乐淘融资 ...
- js中replace用法
js中replace的用法 replace方法的语法是:stringObj.replace(rgExp, replaceText) 其中stringObj是字符串(string),reExp可以是正则 ...
- 让VS2010支持HTML5
一.升级Microsoft Visual Studio 2010到Microsoft Visual Studio 2010 sp1 1.升级方法一这里直接给传送门了 Microsoft Visual ...