Deleting all Lists with PowerShell
To delete all lists of a Web you can use this little PowerShell script.
To delete all lists of a Web you can use this little PowerShell script.
To read taxonomy field value(s) from a list item via CSOM can be quite cumbersome. Chris Domino explained those problems very detailed in his blog post. I had the same problem that the CSOM API did not create the expected objects by itself but just returning a key value dictionary containing the taxonomy values. So Read more about Get Taxonomy Field Values with CSOM Programmatically[…]
If you want to copy a SQL table from one server to another this is an easy way to do it.
Nach einem Umzug einer WordPress-Seite samt Datenbank konnte ich die installierten Plugins nicht mehr automatisch updaten, da stets kurz nach dem Update-Prozess folgende Fehlermeldung erschien:
Das Verzeichnis “wp-content” konnte nicht gefunden werden
With this code snippet you are able to create a Folder in a SharePoint list (or library) with the usage of CSOM.
When you are querying a big bunch of list items you should consider to use paging functionalities. For example you could download 2000 items within ten separate requests were each one queries a bulk of 200 items.
This will spare the server performance and speeds up the transfer over the wire. When downloading all items at once can lead to a time-out for example.
Just a small pool of interesting articles and references about SharePoint 2013.
To evaluate which SharePoint edition and products are installed you can use the following PowerShell Cmdlet.
Some hot links for handling the SharePoint 2013 Search and its API. Search in SharePoint 2013 SharePoint 2013 Search REST API [MS-SRCHCSOM]: Search Client Query Protocol Building search queries in SharePoint 2013 Query variables in SharePoint Server 2013 Sorting with Search Query in Content By Search Web Part Configuring SharePoint 2013 Search REST API for Read more about SharePoint 2013 Search References[…]
When developing a custom web based application (like ASP.NET in conjunction with IIS) that relies on the usage of the SharePoint server side object model you have to make sure that your code is valid in security related terms. Microsoft integrated a functionality that protects the system against cross-site scripting attacks. The protection is always Read more about SharePoint custom web service with SSOM and Request Digest[…]