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...
Home » Archives for 2016
Walkthrough : Debugging an Office Add-In Project
in
Add-In,
Debug,
Microsoft Office,
Run,
Visual Studio,
Word
- on 14:50
- No comments
Install an assembly into the Global Assembly Cache without gacutil
in
DLL,
GAC,
GacUtil.exe,
Global Assembly Cache,
Install,
PowerShell,
SharePoint
- on 14:41
- No comments
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
in
Best Practicies,
Office 365
- on 10:29
- No comments
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
in
Appear,
Crawled Property,
Problem,
Search,
SharePoint 2013
- on 17:25
- No comments
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
in
CSOM,
Current User,
Groups,
JavaScript,
Rest API,
SharePoint 2013
- on 17:26
- No comments
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...