Walkthrough : Debugging an Office Add-In Project

Walkthrough : Debugging an Office Add-In Project
Recently, I have worked for a Word AddIn project, but I cannot debug or run it because the required version of Microsoft Office was not installed. Visual Studio show for me this error « you cannot debug or run this project because...

Install an assembly into the Global Assembly Cache without gacutil

Install an assembly into the Global Assembly Cache without gacutil
When we need to register an assembly in the GAC, generally we use the Global Assembly Cache tool (Gacutil.exe) with this command gacutil -i <assembly name> But Gacutil.exe is only for development purposes and should not be used to install...

Office 365 Best Practices

Office 365 Best Practices
Les bonnes pratiques pour Office 365 : La mise à jour de février est disponible https://channel9.msdn.com/blogs/OfficeDevPnP/Office-365-Developer-Patterns-and-Practices-February-2016-Community-Call (adsbygoogle = window.adsbygoogle || []).push...

Crawled property does not re-appear after deletion for a custom crawled property

Crawled property does not re-appear after deletion for a custom crawled property
I have deleted a custom crawled property related to a SharePoint column from the Search Administration > Search Schema > Crawled properties After that,  I performed a full crawl. Once done, I checked crawled properties availability but...

Get current user groups via CSOM (JavaScript) and REST API

Get current user groups via CSOM (JavaScript) and REST API
You can find all current user groups in SharePoint using CSOM (JavaScript). Here is the code I used to find groups : function GetCurrentUserGroups() {     var clientContext = new SP.ClientContext.get_current();     this.currentUser...