sharepoint

Teams: Can You Add Members To A Team And Not Generate The 'Welcome To / Intro To Teams' Email?

冷暖自知 提交于 2020-04-30 07:03:07
问题 I'm creating a new Team and I have to add new user to this Team but I don't want that the users receive the welcome email. I had tried to disable this function with a rule filter in Exchange and with this command in PowerShell Set-UnifiedGroup $groupName -UnifiedGroupWelcomeMessageEnabled:$false PS C:\WINDOWS\system32> Get-unifiedGroup | Select-object -Property DisplayName, WelcomeMessageEnabled DisplayName WelcomeMessageEnabled ----------- --------------------- MyTeam False But nothing of

Hiding specific menu items

隐身守侯 提交于 2020-04-17 22:20:50
问题 I am trying to hide menu items where they contain the word 'Benefits HIDDEN' in a quick launch list. I have been trying to get a script to work, but no avail so far. Using F12 in Edge, the class I want to hide is as follows; <span class="menu-item-text">Benefits HIDDEN</span> Which sites under this DIV <div class=" noindex ms-core-listMenu-verticalBox" id="zz13_idPDPQuickLaunch"> I was trying this kind of approach; <script> $(document).ready(function() { $(".zz13_idPDPQuickLaunch *:contains(

Microsoft Graph API serviceNotAvailable error when getting site by ID

試著忘記壹切 提交于 2020-04-11 12:35:11
问题 I am getting an HTTP 503 status MSFT Graph API error when attempting to get a Sharepoint site that was successfully created by a Post with the Graph API. I am using a Developer O365 subscription. A Python application using the MSFT MSAL library for managing the authentication token is being used. I am able to successfully call other parts of the Graph API with the python app. When using the Graph Explorer logged into my account and with Site permissions I get a correct successful response.

Microsoft Graph API serviceNotAvailable error when getting site by ID

↘锁芯ラ 提交于 2020-04-11 12:35:06
问题 I am getting an HTTP 503 status MSFT Graph API error when attempting to get a Sharepoint site that was successfully created by a Post with the Graph API. I am using a Developer O365 subscription. A Python application using the MSFT MSAL library for managing the authentication token is being used. I am able to successfully call other parts of the Graph API with the python app. When using the Graph Explorer logged into my account and with Site permissions I get a correct successful response.

Microsoft Graph API serviceNotAvailable error when getting site by ID

依然范特西╮ 提交于 2020-04-11 12:32:03
问题 I am getting an HTTP 503 status MSFT Graph API error when attempting to get a Sharepoint site that was successfully created by a Post with the Graph API. I am using a Developer O365 subscription. A Python application using the MSFT MSAL library for managing the authentication token is being used. I am able to successfully call other parts of the Graph API with the python app. When using the Graph Explorer logged into my account and with Site permissions I get a correct successful response.

sharepoint 2010 中操作List

限于喜欢 提交于 2020-04-08 08:21:32
  Sharepoint 内置了几种列表类型:    public enum SPBaseType { UnspecifiedBaseType = - 1 , GenericList = 0 , DocumentLibrary = 1 , Unused = 2 , DiscussionBoard = 3 , Survey = 4 , Issue = 5 , } 新建列表 /// <summary> /// 新建列表 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void btn_Click( object sender, EventArgs e) { using (SPSite site = new SPSite(requestUrl)) { using (SPWeb web = site.OpenWeb()) { SPList list = null ; string listName = txtListName.Text.Trim(); // Check whether the list already exists try { list = web.Lists[listName]; } catch (ArgumentException) { }

SHAREPOINT 2013 SECURE STORE SERVICE

我们两清 提交于 2020-04-07 15:12:18
[SharePoint 2010 的那些事儿 – Secure Store Service]SharePoint 2010中的单点登录 SHAREPOINT 2013 SECURE STORE SERVICE http://www.cnblogs.com/renzh/archive/2013/03/31/2990280.html 在 SharePoint Server 2013 中配置网站邮箱 http://technet.microsoft.com/zh-cn/library/jj552524.aspx http://msdn.microsoft.com/zh-cn/library/fp142167.aspx tmg http://technet.microsoft.com/en-us/library/cc995149.aspx http://kb.cnblogs.com/page/90118/ http://stackoverflow.com/questions/10364320/sharepoint-2010-single-sign-on-on-a-claims-web-app-without-a-password-like-se 2007 http://technet.microsoft.com/en-us/library/cc262932.aspx 2013claim

sharepoint pdf preview

五迷三道 提交于 2020-04-07 12:21:46
blogs.technet.com/b/speschka/archive/2012/07/23/using-query-rules-result-types-and-display-templates-for-a-custom-search-sales-report-in-sharepoint-2013.aspx http://blogs.msdn.com/b/murads/archive/2012/10/11/utilizing-web-apps-2010-to-get-powerpoint-previews-of-sharepoint-2010-content-from-sharepoint-2013-search.aspx http://www.wictorwilen.se/sharepoint-2013-enabling-pdf-previews-with-office-web-apps-2013-march-2013-update http://social.msdn.microsoft.com/Forums/en-US/sharepointsearch/thread/f6a509f3-3ce6-4970-9dc8-7e6dc4f94507 http://www.bing.com/search?q=how+to+preview+pdf+in+sharepoint&qs=n

SharePoint 开发小结

六月ゝ 毕业季﹏ 提交于 2020-04-07 09:18:10
目标:将sharepoint网站对接Office 365 最直接的API:How to: Add Office 365 APIs to a Visual Studio project http://msdn.microsoft.com/en-us/library/office/dn605899(v=office.15).aspx ,但目前限定为win8 app或web application。不能用于service,因此放弃。 继续研究:Authentication with SharePoint Online and the Client Side Object Model http://blogs.msdn.com/b/cjohnson/archive/2011/05/03/authentication-with-sharepoint-online-and-the-client-side-object-model.aspx ,但这种方式需要打开一个页面验证身份后,读取cookie来操作。对于service,读取cookie存在权限问题,所以再次放弃。 继续研究: SharePoint Online for Office 365 Developer Guide http://msdn.microsoft.com/zh-cn/library/hh147180.aspx 得到方案

SharePoint 2010 - Client Object Model - ECMAScript

橙三吉。 提交于 2020-04-07 07:45:33
Creating a SharePoint Project First, create an Empty SharePoint Project. Later, you will add an Application Page item to this project. To create a SharePoint Project Start Visual Studio 2010. Open the New Project dialog box, expand the SharePoint node under the language that you want to use, and then click 2010. In the Visual Studio Installed Templates pane, select Empty SharePoint Project. Name the project JSOMDemo, and then click OK. Select Deploy as a farm solution, and then click Finish to accept the default local SharePoint site. Creating an Application Page To create an application page,