Archive for the ‘SharePoint 2013’ Category
Tip – Get SharePoint Version Number
Tip – Find SharePoint Version Number Give the SharePoint url with “_vti_pvt/service.cnf” which shows the current version of SharePoint site. In the below example “http://app1:42466” is my SharePoint 2013 dev site http://app1:42466/_vti_pvt/service.cnf SharePoint Build Numbers list https://blogs.technet.microsoft.com/steve_chen/sharepoint-2013-build-numbers-and-cus/#Build Powershell script to display versions and language packs https://blogs.technet.microsoft.com/stefan_gossner/2015/04/20/powershell-script-to-display-version-info-for-installed-sharepoint-product-and-language-packs/ Email this page
February 9, 2016
·
Adi ·
No Comments
Posted in: Sharepoint 2010, SharePoint 2013, SharePoint 2016, Tips and Tricks
Deploy dll to GAC using Powershell
Deploy dll to GAC Following snippet will help to add dll to GAC using powershell. The above snippet will add TestApp.dll to GAC. To remove dll from GAC, use $publish.GacRemove Enterprise Services Class Email this page
February 9, 2016
·
Adi ·
No Comments
Posted in: Asp.Net, Powershell, Sharepoint 2010, SharePoint 2013, SharePoint 2016, Tips and Tricks
Office 365 – SharePoint Online: Creating basic SharePoint Hosted App
Introduction Apps for SharePoint are self-contained pieces of functionality that you write to extend the capabilities of SharePoint websites to solve well-defined business problems. An app for SharePoint You can say it’s just a replacement of Sandbox solution in earlier version. An App for SharePoint can have SharePoint component or remote component. One of the […]
October 28, 2015
·
Adi ·
No Comments
Posted in: Apps, Office 365, SharePoint 2013, SharePoint Online
Best way of Listview custom paging with Datapager and objectdatasource
Introduction Listview with paging is very frequent usage for asp.net webapplication. In this post we will see how we can achieve best performance paging with listview. I ended up explaining to some of the senior developers what is meant by paging and why we implement. This basic and very important thing should always be remembered. […]
October 18, 2015
·
Adi ·
No Comments
Posted in: Asp.Net, C#, Sharepoint 2007, Sharepoint 2010, SharePoint 2013, Tools
Snippet – Get selected text or selected html in a div using jquery
Introduction Snippet – Get selected text or selected html in a div using jquery very easily. Get Selected Html of div Email this page
October 16, 2015
·
Adi ·
No Comments
Posted in: Asp.Net, Sharepoint 2010, SharePoint 2013
Quick way to copy custom text to clipboard using Jquery
Introduction Very quick and simple code snippet with jquery to copy text to clipboard. Call the method and you can paste the text. This will be custom way of sending text to clipboard Copy text to clipboard Email this page
October 16, 2015
·
Adi ·
No Comments
Posted in: Asp.Net, Sharepoint 2010, SharePoint 2013
Easily Download any Feed (RSS or Atom) Data in C#
Introduction Simple and very useful code snippet to download rss feed data to xml file. It works for both RSS and ATOM feeds. It is very useful snippet without putting much lines of code. No need to compare feed types also while downloading What are covered in this snippet Download feed data irrespective of type […]
October 5, 2015
·
Adi ·
No Comments
Tags: Atom Feed, Download any Rss Feed, Rss Feed, snippet, Tool · Posted in: C#, Sharepoint 2010, SharePoint 2013, Tools
Powershell – SharePoint document library files report filtered by created date
Introduction Give the date range and this powershell script will generate csv report with total number of files created in all the document libraries. Script will get all the document libraries of sites and its subsites. This can be used as reporting tool to get overview of the total number of documents that were created […]
October 4, 2015
·
Adi ·
No Comments
Tags: caml in powershell script, date range in caml, Powershell, SharePoint document library report · Posted in: Powershell, Sharepoint 2010, SharePoint 2013, Tools
SharePoint Office 365 App Environment Setup
In this article we will go through the roadmap of creating office 365 App Environment setup. What it covers Prerequisites Setting up development environment Creating developer site collection Enable App “SideLoading” in Your Existing Site Collection for Developer feature Setup Visual Studio Template Prerequisites · Developer Machine with Windows 7 or above OS with minimum […]
July 28, 2015
·
Adi ·
No Comments
Tags: Office 365, SharePoint 2013, SharePoint Online · Posted in: Apps, Office 365, SharePoint 2013, SharePoint Online
Get Sql Server 2012 Port and connection details
Introduction This article covers how to get the port Sql Server is connected to and its connection details So, 1035 is the port the sql server 2012 is listening to The same thing can be viewed from Network configuration Email this page
July 23, 2015
·
Adi ·
No Comments
Tags: Default sql server port, Sql Server Network Configuration, sql server port · Posted in: General, Sharepoint 2010, SharePoint 2013, SQL