Posts

Showing posts from January, 2017

SharePoint PnP JavaScript Core Library v2.0

Image
The SharePoint Patterns and Practices JavaScript Core Library was created to help developers by simplifying common operations within SharePoint and the SharePoint Framework. This is open source, community driven library with contributions cross different organizations and teams. Currently it contains a fluent API for working with the full SharePoint REST API as well as utility and helper functions. This takes the guess work out of creating REST requests, letting developers focus on the what and less on the how. PnP JS Core library can be used in SharePoint Online or in on-premises. It's a great library to be used with SharePoint Framework customizations, but it can be also used using classic development models, like with Script Editor Web Part or when you embed JavaScript to SharePoint using User Custom Actions. https://dev.office.com/blogs/sharepoint-pnp-javascript-core-library-v20

Difference beween wiki page, application page, web part page and publishing page

http://sharepoint.stackexchange.com/questions/50232/difference-beween-wiki-page-application-page-web-part-page-and-publishing-page

No longer able to debug typescript after VSCode update

" outFiles " : [ " ${workspaceRoot}/js/**/*.js " ] https://github.com/Microsoft/vscode/issues/13499

A version mismatch between the globally installed tsc compiler (1.0.3.0) and VS Code's language service (1.8.10) has been detected. This might result in inconsistent compile errors.

npm install -g typescript@1.8.10

inheritance in Sharepoint team site to subsite

http://sharepoint.stackexchange.com/questions/74408/inheritance-in-sharepoint-team-site-to-subsite

PnP JavaScript library with Angular JS in SharePoint

http://www.ktskumar.com/2016/06/pnp-javascript-library-angular-js-sharepoint/ http://www.c-sharpcorner.com/article/pnp-javascript-library-with-angularjs-in-sharepoint/ http://www.c-sharpcorner.com/article/pnp-javascript-library-with-angularjs-in-sharepoint/

SharePoint 2013 REST API - Retrieving Subsites and Getting Forbidden Error, Fixed with CSOM

http://brandonatkinson.blogspot.com/2013/08/sharepoint-2013-rest-api-retrieving.html

Limitations of sharepoint sandboxed solutions

https://mihirsharepoint.wordpress.com/2012/08/06/limitations-of-sharepoint-sandboxed-solutions/

SharePoint Infrastructure Assessment Questionnaire for transitioning new customers

https://vigneshsharepointthoughts.com/2017/01/11/sharepoint-infrastructure-assessment-questionnaire-for-transitioning-new-customers/

service unavailable http error 503 Application pool Stopped for the Web Appliaction

Application pool Stopped for the Web Application

Feature has already been installed. Use the force attribute to explicitly re-install the feature

Go to the Manifest.xml and add the AlwaysForceInstall="TRUE" to it. This will allow you to deploy your solution now.

Free ebook: Planning and Preparing for Microsoft SharePoint Hybrid

https://blogs.msdn.microsoft.com/microsoft_press/2016/04/26/free-ebook-planning-and-preparing-for-microsoft-sharepoint-hybrid/

SharePoint – Working with ULS Logs

https://blogs.msdn.microsoft.com/nicolasu/2016/12/20/sharepoint-working-with-uls/

Sharepoint forums

https://social.technet.microsoft.com/Forums/office/en-US/home?forum=sharepointgeneral https://social.msdn.microsoft.com/Forums/sharepoint/en-US/home?forum=sharepointadmin https://social.technet.microsoft.com/Forums/en-us/home?forum=SP2016 https://social.technet.microsoft.com/Forums/en-US/home?category=sharepoint&filter=alltypes&sort=lastpostdesc https://www.reddit.com/r/sharepoint/ http://sharepoint.stackexchange.com/ Twitter hashtag #SPHelp https://blogs.msdn.microsoft.com/blog/tag/sharepoint/

Nauplius

https://github.com/Nauplius

install the Windows Server Roles and features for SharePoint Server 2016 (.PS)

Log in to the Target SharePoint Application Server and Right clicking on Windows PowerShell will allow you run as "administrator". Then paste the below script there and execute it by pressing Enter. This Script will install the Windows Server Roles and features for SharePoint Server 2016. It might need a restart of the server during the installation. Make Sure You Have Inserted the Windows Server media and provide that path end of this Script for the SXS Folder. Import-Module ServerManager Add-WindowsFeature Net-Framework-Features,Web-Server,Web-WebServer,Web-Common-Http,Web-Static- Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-App-Dev,Web-Asp-Net,Web-Net-Ext,Web- ISAPI-Ext,Web-ISAPI-Filter,Web-Health,Web-Http-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Http- Tracing,Web-Security,Web-Basic-Auth,Web-Windows-Auth,Web-Filtering,Web-Digest-Auth,Web-Performance,Web- Stat-Compression,Web-Dyn-Compression,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt

Setup SSRS on a multi server SharePoint farm

https://blogs.msdn.microsoft.com/spucelik/2016/12/22/setup-ssrs-on-a-multi-server-sharepoint-farm/

Setup SSRS on a single SharePoint server farm

https://blogs.msdn.microsoft.com/spucelik/2016/12/21/setup-ssrs-on-a-single-sharepoint-server-farm/

SPContext.Current

// root site – eg. Web App url string rootSiteCollectionURL = SPContext . Current . Web . Site . WebApplication . Sites [ 0 ]. Url ; // site collection url string SiteCollectionURL = SPContext . Current . Web . Site . Url ;

How to get all subsite from site collection with Elevated Privileges using SSOM

try { SPSecurity.RunWithElevatedPrivileges(delegate () { using (SPSite site = new SPSite("http://localhost/sites/collectioname/")) { foreach (SPWeb webCol in site.AllWebs) { if (!webCol.ServerRelativeUrl.Equals(string.Empty)) DropDownList1.Items.Add(webCol.ServerRelativeUrl); } } }); } catch (Exception ex) { }

Create App Catalog Site in SharePoint 2013

http://blog.walisystemsinc.com/2014/11/create-app-catalog-site-in-sharepoint.html

New Features in SharePoint 2016

http://blog.walisystemsinc.com/2016/10/new-features-in-sharepoint-2016.html

SharePoint PnP Webcast – Using modern web stack with SharePoint on-premises deployments

https://dev.office.com/blogs/using-modern-web-stack-with-sharepoint-on-premises-deployments

Patterns and Practices PnP (modern web stack with SharePoint)

https://dev.office.com/patterns-and-practices

Retracting solution from Central Admin

Uninstall - SPSolution - Identity mySolution . wsp - allwebapplications Remove - SPSolution - identity mySolution . wsp - force Get - SPSolution Refrence: http://sharepoint.stackexchange.com/questions/11493/retracting-solution-from-central-admin