博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MSCRM 仪表盘 控件 数量 更改(Change the maximum no. of controls on MSCRM Dashboards )
阅读量:4591 次
发布时间:2019-06-09

本文共 1049 字,大约阅读时间需要 3 分钟。

The maximum number of controls allowed on MSCRM dashboards are 6. You cannot put the more than 6 graphs/charts/iframes/webresources etc. on the dashboard.

This setting is applied to the server not a organisation setting. So you cannot change this setting for CRM Online but you can change this for an on-premise installation.
There are two ways to do it.

  1. Using Deployment Web Service (
  2. Using Window Power Shell

Windows Power Shell Option is the easiest one.

  • Open the Windows Power Shell
  • Add the Microsoft Dynamics CRM PowerShell snap-in using
Add-PSSnapin Microsoft.Crm.PowerShell
you may get the message saying something like “Add-PSSnapin : Cannot add Windows PowerShell snap-in Microsoft.Crm.PowerShell because it is already added.” It is okay.
  • Run the following 3 command
$setting = Get-CrmSetting -SettingType DashboardSettings
$setting.MaximumControlsLimit = 8 (// you can change this number)
Set-CrmSetting -Setting $setting

Here is my screen shot with 8 charts.

Setting:

 

View:

 

 

引用地址: 

 

转载于:https://www.cnblogs.com/Earson/p/MSCRM_Dashboards.html

你可能感兴趣的文章
网络对抗作业一
查看>>
数据库运维平台
查看>>
团队项目个人工作总结(4.26)
查看>>
31 | 误删数据后除了跑路,还能怎么办?
查看>>
int Parse方法引发的异常
查看>>
MAVEN 构建包的引用
查看>>
Pyhton网络爬虫之CrawlSpider
查看>>
PHP Windows环境部署
查看>>
LIMIT
查看>>
Web安全相关(三):开放重定向(Open Redirection)
查看>>
【转】并行计算部分总结
查看>>
httpclient提示Cookie rejected: violates RFC 2109: domain must start with a dot
查看>>
linux输入子系统
查看>>
DOM练习及总结(菱形)
查看>>
WEB应用从服务器主动推送Data到客户端有那些方式?
查看>>
[转]ionic Accordion list three levels
查看>>
一个开源的MY BLOG
查看>>
ko.js学习一
查看>>
java学习基础部分
查看>>
C++第二篇--访问控制
查看>>