Articles about European Sharepoint Hosting Service
European SharePoint 2010 Hosting
SharePoint 2013 Hosting – HostForLIFE.eu :: How to Enable Rating or Likes Settings in SharePoint 2013?
Aug 2nd
In this tutorial, i will tell you about how to Enable Rating or Likes Settings in SharePoint 2013. It was a tough time to find the PowerShell or a C# API to enable or disable Rating/Likes Settings in SharePoint 2013. I found a helpful post from Nanddeep for c# equivalent. I have converted it in PowerShell, hope this will help some of SharePoint developers and admins.
Add-PSSnapin “Microsoft.SharePoint.PowerShell” -ErrorAction SilentlyContinue.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
$web=Get-SPWeb "http://abc.com/test"; $list=$web.Lists["Pages"]; if($list -ne $null) { Write-Host $list.Title "not null"; $assembly=[System.Reflection.Assembly]::Load("Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c") $reputationHelper =$assembly.GetType("Microsoft.SharePoint.Portal.ReputationHelper"); $bindings = @("EnableReputation", "NonPublic", "Static"); [System.Reflection.BindingFlags]$flags = [System.Reflection.BindingFlags]::Static -bor [System.Reflection.BindingFlags]::NonPublic; $methodInfo = $reputationHelper.GetMethod("EnableReputation", $flags); #For enabling Ratings $values = @($list, "Ratings", $false); #OR for enabling Likes #$values = @($list, "Likes", $false); $methodInfo.Invoke($null, @($values)); #For disable Rating or Likes <#$methodInfo = $reputationHelper.GetMethod("DisableReputation", $flags); $disableValues = @($list); $methodInfo.Invoke($null, @($disableValues));#> } |
SharePoint 2013 Hosting Recommendation
HostForLIFE.eu’s SharePoint 2013 Hosting solution offers a comprehensive feature set that is easy-to-use for new users, yet powerful enough for the most demanding web developer expert. Hosted SharePoint Foundation 2013 is the premiere web-based collaboration and productivity enhancement tool on the market today. With SharePoint 2013 Foundation, you can quickly access and manage documents and information anytime, anywhere though a Web browser in a secure and user friendly way. SharePoint hosting services start at only at €9.99/mo, allowing you to take advantage of the robust feature set for a small business price. HostForLIFE.eu offers a variety of hosted SharePoint Foundation 2013 plans as well as dedicated SharePoint 2013 Foundation options.
SharePoint 2013 Hosting – HostForLIFE.eu :: Remove List Items CSOM SharePoint Online
Jul 26th
Today, we will show you how to remove all items of the list using Client Object Model with PowerShell script for Office 365 sites. When you have more items to delete, we can go for batch delete. I would like to highlight programmatically when we delete list items, those are not moved to the Recycle Bin for the site.
First, Please find the below code. Hope this will help.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
cls Add-Type-Path"E:\PSDLL\Microsoft.SharePoint.Client.dll" Add-Type-Path"E:\PSDLL\Microsoft.SharePoint.Client.Runtime.dll" $0=$MyInvocation.MyCommand.Definition $dp0=[System.IO.Path]::GetDirectoryName($0) $url="https://test.sharepoint.com/sites/test/" $username="abc@microsofttest.com" $password="*****" $securePassword=ConvertTo-SecureString$password-AsPlainText-Force #connect/authenticate to sharepoint online and get ClientContext object... $clientContext=New-ObjectMicrosoft.SharePoint.Client.ClientContext($url) $credentials=New-ObjectMicrosoft.SharePoint.Client.SharePointOnlineCredentials($username,$securePassword) $clientContext.Credentials=$credentials if(!$clientContext.ServerObjectIsNull.Value) { $web=$clientContext.Site.RootWeb $clientContext.Load($web) $clientContext.ExecuteQuery() $list=$clientContext.Web.Lists.GetByTitle('TestList') $clientContext.Load($list) $clientContext.ExecuteQuery() $query=New-ObjectMicrosoft.SharePoint.Client.CamlQuery $query.ViewXml="<View><RowLimit>1000</RowLimit></View>" $items=$list.GetItems($query) $clientContext.Load($items) $clientContext.ExecuteQuery() if ($items.Count-gt0) { for ($i=$items.Count-1; $i-ge0; $i--) { $items[$i].DeleteObject() } $clientContext.ExecuteQuery() } } |
SharePoint 2013 Hosting Recommendation
HostForLIFE.eu’s SharePoint 2013 Hosting solution offers a comprehensive feature set that is easy-to-use for new users, yet powerful enough for the most demanding web developer expert. Hosted SharePoint Foundation 2013 is the premiere web-based collaboration and productivity enhancement tool on the market today. With SharePoint 2013 Foundation, you can quickly access and manage documents and information anytime, anywhere though a Web browser in a secure and user friendly way. SharePoint hosting services start at only at €9.99/mo, allowing you to take advantage of the robust feature set for a small business price. HostForLIFE.eu offers a variety of hosted SharePoint Foundation 2013 plans as well as dedicated SharePoint 2013 Foundation options.

SharePoint Hosting – HostForLIFE.eu :: Configure SharePoint 2010 Search Service Application
Feb 5th
In this article we will show how to create search service application in SharePoint. From central administration home page click on manage service applications. Click new icon form ribbon bar and click on “search service application”
From the opened screen enter the name for search service application , choose search service account “service account that we used for configure all services” , choose or create a new application pool that will used by search admin web service also do the same step for application Pool for Search Query and Site Settings Web Service then click OK.
Go to SharePoint Central Administration, and then select Application Management.
Then select Manage service applications.
Select search service application and then click manage on the ribbon on the top.
In the left hand bar click content source.
Then click on the down arrow next to the local SharePoint sites and select start full crawl.
Wait until the status becomes Idle.

European SharePoint 2013 Hosting :: Resolving The Business Data Connectivity Metadata Store is currently unavailable
Jun 18th
Trying to create a external content type by using the Microsoft SharePoint 2010 Designer I got the error “The Business Data Connectivity Metadata Store is currently unavailable”
Cause
This was caused by the fact that I had installed a “PowerPivot” SharePoint 2010 installation and during the installation you do not run the SharePoint 2010 Configuration Wizard.
Solution
First ensure all update are installed, by using Microsoft Windows Update, then go to the Microsoft SharePoint 2010 Central Administration page and click on Configuration Wizards:
Run the wizard, make sure the Business Data Connectivity Service is checked.
After running this wizard I still got the same exception, this was caused by some services where not running, check if all services are running: Central Administration > Manage services on server:
After starting some services, see screendump the error was resolved

European SharePoint 2010 Hosting :: Microsoft Office and SharePoint 2010 Collaboration
Feb 26th
Of the Four Promises of SharePoint – 1. Enable Collaboration, 2. Manage Information, 3. Automate Processes and 4. Manage Business Performance – SharePoint provides many capabilities for 1. Enabling Collaboration.
When collaborating on a document, it is common to email that document to one or more colleagues to update. However, it can get very confusing determining who has the most up to date version of the document or how to reconcile updates across all the emailed versions.
The first step towards a more efficient collaboration is to work on the same content stored in a central location. However, only one person can make their updates at a time. You might be familiar with this type of SharePoint collaboration that uses the check in and check out document feature within SharePoint document libraries. This process fine for infrequently updated documents, but it can be inefficient when you have to wait for another person to check in their document before you can make your edits or on the occasion when that person might forget to check the document back into the library altogether.
You can come closer to a real-time collaboration by scheduling a virtual meeting with virtual meeting software like Microsoft LiveMeeting or GoToMeeting. However, this is not truly real-time collaboration since only one person can physically be in control of updating the document over the virtual meeting.
So how can you achieve true real-time collaboration while leveraging your current Microsoft Office and SharePoint infrastructure?
The current version of SharePoint 2010 (and SharePoint Online on Microsoft Office 365) and Office 2010 provide co-authoring capabilities for real-time collaboration. SharePoint 2010 Office Web Apps provide online versions of the popular Office applications of Word, Excel, PowerPoint and OneNote.
If you open an Excel spreadsheet or OneNote in Office Web App stored on SharePoint 2010 document library, the Office Web App will also allow your colleagues to open the same file at the same time via Office Web App to make updates. When others join, you will see a notification that they have joined in editing the document at the same time.
When using the Office Web App for Excel, the quantity of editors is indicated in the lower right corner of your status bar. Click on the down arrow to view editors by name.
If you and your colleagues have the Office 2010 desktop applications, you can also co-author Word, PowerPoint and OneNote documents stored in a SharePoint 2010 library. When they make updates, you will see their changes highlighted with their initials.
Number of editors is visible in bottom status bar in Word 2010 desktop application. Click to view editors by name.
To enable this capability within the documents of a SharePoint library you will need to:
- Either enable SharePoint 2010 Office Web Apps within SharePoint 2010 (or SharePoint Online on Microsoft Office 365) or have the Office 2010 desktop applications installed
- Store the Office documents within the SharePoint 2010 document library**
- Enable Contribute or higher permissions for the participants to update documents within the SharePoint 2010 document library
- Turn off Check In/Check Out capability in the document library
- If you are collaborating with OneNote notebook documents, turn off document versioning (or limit it to a limited number of major versions)
That is it! You can start achieving true real-time collaboration with your colleagues.