SharePoint

SharePoint 403.1

Take a look. To get more “content” of this type, go to [http://www.sharepointcomic.com/archive/tags/SharePoint%20Comic/default.aspx][1] btw: Dan is using the CKS:EBE for his blog with a great theme. Well done! [1]: http://www.sharepointcomic.com/archive/tags/SharePoint Comic/default.aspx “ http://www.sharepointcomic.com/archive/tags/SharePoint%20Comic/default.aspx"

AllowWindowsClientInstall

<Setting Id="AllowWindowsClientInstall" Value="True"/> That is the magic line. It will allow us to install SharePoint Foundation/Server 2010 on Vista and Windows 7 (both x64). The only missing part is the public beta 🙁 Setting Up the Development Environment for SharePoint Server: http://msdn.microsoft.com/en-us/library/ee554869%28office.14%29.aspx

SharePoint 2010 news

SharePoint Services are now “SharePoint Foundation 2010” SharePoint Foundation 2010 General Reference on MSDN Any much more… But there are plenty of other bloggers out there (at the SharePoint Conference). A good place to start with their posts is here: http://www.planetsharepoint.org/

SharePoint Conference – Keynote

For all of you who can’t attend the Conference live: The keynote will be streamed live. Go to http://www.mssharepointconference.com and join the keynote…

CodePlex project

Today I’ve created a CodePlex project for some of my SharePoint developments. Interesting to see what I’ve done so far 🙂 The link is http://renehezser.codeplex.com/ Webparts [Access Fileserver Data via SharePoint][3] [Display all my alerts][4] [Webpart to show Sitecollections/Subwebs][5] [TagCloud Webpart][6] [Display a single ListItem][7] Custom Fields [Upload Files and Images][8] Features [.NET 3.5 and Silverlight][9] Control Adapter [Navigation for Wikis][10] Event Handler [Picture Library and Exif data][11] [EventHandler which sends an Email for new/changed items][12] Tools

Disable Loopback Check?

A while ago Microsoft released an update, which prevents that you can log on locally to a website which has a FQDN. To resolve issues with e.g. the crawling a KB article has been published. You receive error 401.1 when you browse a Web site that uses Integrated Authentication and is hosted on IIS 5.1 or a later version You can disable the loopback check completely, or just for the used FQDNs.

Get Central Administration Webapplication

With this code you can get the central administration webapplication. 1: private static SPWebApplication GetCentralAdministrationWebApplication() <span class=lnum> 2: </span>{ 3: SPWebService cS = SPWebService.ContentService; <span class=lnum> 4: </span> var service = cS.Farm.Services.GetValue<SPWebService>(<span class=str>"WSS_Administration"</span>); 5: SPWebApplicationCollection webApplications = service.WebApplications; <span class=lnum> 6: </span> <span class=kwrd>foreach</span> (SPWebApplication webApplication <span class=kwrd>in</span> webApplications) 7: { <span class=lnum> 8: </span> <span class=kwrd>return</span> webApplication; 9: } <span class=lnum> 10: </span> <span class=kwrd>return</span> <span class=kwrd>null</span>; 11: } If you have a better way, let me know 🙂

Word to SharePoint

A picture will you tell more than words: Another great project on CodePlex. –> http://wordtosharepoint.codeplex.com/ Project Description A SharePoint Feature that allows selection of Word 2007 documents for content conversion to a selected WebpageLibrary. The solution also extracts, transfers and re-links images to a selected image library.