Both SharePoint 2010 and Office 2010 will be released by then.
You can see the launch online.
See
http://blogs.msdn.com/sharepoint/archive/2010/03/05/sharepoint-2010-office-2010-launch.aspx for details
Posted:
9-3-2010 10:54:37 by
Marcel van der Lem | with
0 comments
De Rai in Amsterdam. Maandag 18 en dinsdag 19 januari 2010. De place-to-be voor iedere SharePoint liefhebber in Nederland. Robert Jaakke heeft op de expert-stand gestaan met een aantal andere SharePoint MCM’ers. John Mutters en ik zijn voor de inhoudelijke sessies gegaan.
De BI Overview sessie van Mike Fitzmaurice is mij het meest bijgebleven van de eerste dag. Op zich niet veel nieuws gehoord, maar ik ben zelf enorm fan van de BI mogelijkheden met SharePoint 2010. Het is dan altijd leuk om te zien hoe anderen hier over vertellen en welke voorbeelden ze laten zien. Op dag twee heb ik het meest opgestoken van Patrick Savalle met zijn sessie over “How to Create a Successful Social Collaboration Platform with SharePoint 2010”. Een goede mix van methodiek en praktische voorbeelden in hun demo. Zijn boek gaat hierover.
Naast de sessies is het natuurlijk ook altijd weer erg gezellig om alle bekenden te zien. De koffie op de stand van Qurius: absoluut fantastisch.
Groeten,
Joris
Posted:
20-1-2010 20:31:33 by
Joris Engels | with
0 comments
As we all know 'Central Admin' is the place for Sharepoint to administer a lot of things. One of the things we can do in the Central admins 'application management' tab is to create or extend a webapplication.
I recently opened in a Windows 2008 environment 'Central Admin' and went to the 'application management' tab, but found that the link 'Create or extend webapplication' was missing. What the.....
After some research I found a simple solution to fix this. Close the browser. Start a new browser window by right-clicking on the Internet Explorer shortcut and choose the 'Run as administrator' option. Next browse to the Central Admin site and voila. The link is being displayed again.
Hope this post will save you some time!
Ciao,
Niels
Posted:
18-1-2010 21:23:30 by
Niels Loup | with
0 comments
As you might have noticed SharePoint 2010 has quite a few Application Pools running. Spence posted a series of
blogs about SharePoint 2010 Apllications Pools.
SharePoint Server 2010 Worker Processes
More on SharePoint 2010 Application Pools
Application Pool miss configuration in SharePoint 2010
Besides that he posted a new version of te
Application Pool Manager V3 a very handy tool for every SharePoint 2010 developer.
Posted:
18-12-2009 10:53:19 by
Robert Jaakke | with
0 comments
If you're running SharePoint 2010 on a Domain Controller you need to add a ACL Access Rule to enable Sandboxed Solutions. Without this Acces Rule the Microsoft SharePoint Foundation User Code Service will start but the SPUCWorkerProcess.exe won't.
Run the following PowerShell command to fix this...
$acl = Get-Acl HKLM:\System\CurrentControlSet\Control\ComputerName
$person = [System.Security.Principal.NTAccount]"Users"
$access = [System.Security.AccessControl.RegistryRights]::FullControl
$inheritance = [System.Security.AccessControl.InheritanceFlags]"ContainerInherit, ObjectInherit"
$propagation = [System.Security.AccessControl.PropagationFlags]::None
$type = [System.Security.AccessControl.AccessControlType]::Allow
$rule = New-Object System.Security.AccessControl.RegistryAccessRule($person, $access, $inheritance, $propagation, $type)
$acl.AddAccessRule($rule)
Set-Acl HKLM:\System\CurrentControlSet\Control\ComputerName $acl
Posted:
4-12-2009 10:06:59 by
Robert Jaakke | with
0 comments