sharepoint

SharePoint 2013功能(SPFeature)与GUID对照表

不打扰是莪最后的温柔 提交于 2019-12-23 04:05:07
自从上次遇到了一些无法开启 SharePoint 功能的事件之后(详见《 SharePoint 2013 托管导航 无法被开启的解决办法 》一文),对于在 SharePoint 中所提示的 GUID 就格外注意了,为了不至于每次都 Get-SPFeature 的查询,特将该输出制作成表格方便读者取阅。 DisplayName (显示名) Id ( GUID ) CompatibilityLevel (兼容级别) Scope (归属) ----------- -- ------------------ ----- PublishingStapling 001f4bd7-746d-403b-aa09-a6cc43de7942 14 Farm SiteStatusBar 001f4bd7-746d-403b-aa09-a6cc43de7999 14 Farm BasicWebParts 00bfea71-1c5e-4a24-b310-ba51c3eb7a57 14 Site XmlFormLibrary 00bfea71-1e1d-4562-b56a-f05371bb0115 14 Web LinksList 00bfea71-2062-426c-90bf-714c59600103 14 Web WorkflowProcessList 00bfea71-2d77-4a75-9fca

Get a collection of items in document library/list

六月ゝ 毕业季﹏ 提交于 2019-12-23 03:48:13
问题 I'm new to Powershell. What I'm trying to do is get a list of all the documents in a document library. I have an absolute URL of the document library I want to process, for example. Essentially what I want is a reference to the document library so I can send some CAML queries to it. http://sharepoint2013/sites/superdupersite/shared%20documents Add-PSSnapin Microsoft.SharePoint.Powershell $items = Get-SPList "http://sharepoint2013/sites/superdupersite/shared%20documents" foreach ($item in

Combining data from Project Server and SharePoint into a single report

梦想的初衷 提交于 2019-12-23 03:40:14
问题 I need to combine data from the Project Server reporting database with data from custom lists in SharePoint workspaces . The results need to be displayed within a single report. How should this be done? Options I've thought of: Extend the reporting database with the custom list data (if this is possible). Use Reporting Services to display the output. Query the reporting database and the SharePoint workspaces and combine results in memory. Write custom code to display the output. Any other

Performance issues with SharePoint and Telerik RadGrid Control

亡梦爱人 提交于 2019-12-23 03:21:25
问题 I originally posted this question to narrow down the slowness issues with my SharePoint application. After accepting StriplingWarrior's answer, I began to step through his suggestions. In a nutshell, I have a RadGrid within an Application Page hosted on a SharePoint 2010 Server. The RadGrid runs perfectly fine when paging; however, once a filter is applied, ex: give me last names that contain 'doe' (using Telerik's built-in filter mechanism), the results take upwards of 15 seconds to return.

How to construct/get Office Web App URL for sharepoint documents

﹥>﹥吖頭↗ 提交于 2019-12-23 03:13:36
问题 I am trying to get the right redirection URL for my sharepoint documents which then I can use to open documents in WebView of iOS. Currently I am giving the absolute URL for the document where the doc is rendered inside WebView as PDF(Image/Readonly). Whereas I want to redirect to office webapp. Now my issue is I dont know if the URL for office web app is something which I can construct like appending /_layouts/15/WopiFrame.aspx?sourcedoc= or is the URL custom based on installations and we

Sharing custom macros and custom Excel Ribbon with others via Sharepoint

陌路散爱 提交于 2019-12-23 02:54:14
问题 My colleagues and I use Excel 2013 and Sharepoint I have written some custom macros which I have stored in Personal.xlsb I have also customized the ribbon to add a tab to access these macros. What is the best way of sharing these macros and the ribbon with my colleagues? (and keeping them updated) One way is as follows (and this needs to be done each time there is a change) right-click Ribbon | Customize the Ribbon | Import/Export | Export all Customizations and send this XML file to my

SQL Server does not exist or access denied error

有些话、适合烂在心里 提交于 2019-12-23 02:36:37
问题 I have an application that runs fine when executed off the server. When clients try to connect, they receive the following error: Failed to get data. *Data provider could not be initialized *SQL Server does not exist, or access denied on my Office Web Components (MDAC). I am guessing there is some security or server configuration error, but I'm not able to pinpoint it. I am running SQL Server 2005. *Note - clients can't change their security settings, company policy. 回答1: When you try this

Best way of displaying a Message box or Confirmation box in ASP.NET

这一生的挚爱 提交于 2019-12-23 02:32:10
问题 I came across requirement for message box like everyday since around a year now, I tried jQuery plugins, JavaScripts alert but am still not sure which way would be the best way of doing it. I want to display a message box within ASP.NET Page (well its actually sharepoint application page). <%@ Page Language="C#" MasterPageFile="~/_layouts/abc/simple.master" Inherits="Microsoft.SharePoint.WebControls.LayoutsPageBase" %> <%@ Assembly Name="Microsoft.SharePoint.ApplicationPages, Version=12.0.0.0

Adding a new navigation node to sharepoint 2010 Top Navigation

六月ゝ 毕业季﹏ 提交于 2019-12-23 02:22:20
问题 I am trying to add a new navigation node to Top Navigation bar in my sharepoint website and I am using the following code: public void AddNavigation(SPWeb web, String url, string module, string key) { var resourceFile = "$Resources:" + module + "," + key; UnregisterGlobalNavigationLink(web, url); SPNavigationNode node = web.Navigation.GetNodeByUrl(url); if (node != null && overrideGlobalNavigationSetting) return node; node = new SPNavigationNode(resourceFile, url); node = web.Navigation

Access SharePoint objects from Delphi

帅比萌擦擦* 提交于 2019-12-23 02:17:30
问题 We need to read and write the objects in SharePoint, such as the appointments (events) in SharePoint, from Delphi, what's the best/easiest way to do it? Any advises are appreciated! Thank you. 回答1: If you are able to use .NET references in Delphi and can develop on a SharePoint server then use the SharePoint Object Model. This is the most powerful way of working with SharePoint. Add a reference to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\ISAPI\Microsoft