-
Hey guys, I want to share this because I need it so much at customers to find the currently deployed version. I will keep this post up-to-date ;) SharePoint 2010 release numbers can be found similarly to how you find them in 2007 just go to Central Admin | System Settings | Manage Servers In Farm. Or, in PowerShell, use: (get-spfarm).buildversion For
-
Hey guys, I want to share this because I need it so much at customers to find the currently deployed version. I will keep this post up-to-date ;) SharePoint 2013 release numbers can be found similarly to how you find them in 2007 or 2010 just go to Central Admin | System Settings | Manage Servers In Farm. Or, in PowerShell, use: (get-spfarm).buildversion
-
Hey guys, Today i gonna try to renew our SiteDefinition project. First of all i try to save a site collection as template and importing it into Visual Studio. Importing in Visual Studio was not the problem, but when I redeploy the solution and try to create a new site based on the newly created site definition I got the error So I gonna take a look
-
Hey guys, here is a little tutorial for getting quotas easily on each environment. Add first you need to create a new XML Config Files for all values: Name => this is the displayName which will be shown in Central Admin StorageMaximumLevel => Gets or sets a limit in bytes on all disk space used by the site collection. StorageWarningLevel =>
-
Hey guys, I had a problem everytime I executed the following Powershell command, I received a truncated table as default. Get-SPWebTemplate If you don't want the results to be truncated you have to use the following additional command property. (This can be used for every PowerShell command which has an table as output) Get-SPWebTemplate | format
-
Hey guys, today i came across this annoying error. I couldn't believe that this has happened. We only updated the server with Office Web Apps and after running the configuration wizard, each site i try to open failed with the following error message: I searched the web and found a lot of post's, here are my results: I'll tried first the
-
Hey guys, I found a nice site for all people which are interested in SharePoint 2010 http://blogs.msdn.com/b/sharepointalps/archive/2010/02/07/sharepoint-2010-linkliste.aspx There are links for Technical diagrams, Performance, Permissions, Migration and Installation but the most of them are for german guys. cheers
-
Hey guys, In this post I want you to show the SharePoint Installer projects from CodePlex for 2007 and from Andri Yadi for SharePoint 2010. These guys are doing a great job! Solution Installer SharePoint 2007: Luckily the guys from codeplex provide an excellent basis for deploying custom solutions. Go to http://sharepointinstaller.codeplex.com/ and
-
Hey guys, this is the second part for Linq To SharePoint, if you have missed the introduction please click here Getting Started: Open Visual Studio 2010 Create a new SharePoint Project e.g. EventReceiver Import your existing Entity Class which has been generated before (Add->Existing Item -> SampleEntities.cs) Add Microsoft.SharePoint.Linq reference
-
Hey guys, The best new feature within SharePoint 2010 is in my eyes Linq To SharePoint . It's just incredible because there is no further need for CAML Queries:) So i want to describe the first use of this feature. If you don't know what is LINQ or how to write LINQ Queries just click here for a quick introduction in msdn. Getting started: If