Skip to main content

Blog

Go Search
Home
Blog
Publications
Contact
  

Kathy Hughes, MVP > Blog
All things SharePoint, Office and Technical

 ‭(Hidden)‬ Content Editor Web Part

SharePoint Conference 2010 Sydney, Australia
16th and 17th June, 2010, The Hilton, Sydney, Australia
 
Don't miss the Australian SharePoint Conference for 2010, proudly sponsored by Microsoft and leading partners, and organized by members of the Australian and New Zealand SharePoint community. For details and registration, visit the following site:
 
 
 
 
Data and Content Crunching with SharePoint 2010
Presenting at Sydney SharePoint User Group, Tuesday 16th February, 2010, from 5:30pm onwards.
 
Come along to discover the capabilities of how to work with data sources and discover some tips and tricks on how to make your SharePoint sites come alive!
 
Further details and registration at http://www.sharepointusers.org.au/Sydney/default.aspx
 
 
Laurel Papworth on Social Media SBTUG 25th November
Laurel Papworth, well known and respected social media strategist, will present at next week's Sydney Business and Technology User Group (SBTUG) here in Australia.
 
If you want to know what's happening in the latest online social and media trends, such as the open source tools like Twitter, Facebook, blogging and others, then this session is a must for you. Also, if you're wondering how you can make the most out of social networking, such as business benefits, i.e. promoting your own business and profile using online tools, then you'll benefit by attending this session.
 
Laurel has a great site and blog, full of resources - http://laurelpapworth.com/. Her Twitter alias is @silkcharm.
 
She also has made her book/courseware - Social Web Workshop P.R.& Crisis Communication - available for download. You can read about it and get it here - http://www.scribd.com/doc/14549206/COURSEWARE-Social-Media-PR-Crisis-Communication
 
Further details about next week's event, including registration details, can be found at http://sbtug.com.
 
And, I think you'll find that we're also combining our Christmas party with the same event so if you come along expect some Christmas cheer!
 
 
Configuring User Profiles in SharePoint Server 2010

Note: I've added the necessary links relating to SharePoint Server 2010 prerequisites, along with instructions for configuring the user profile synchronization service, at the end of this post.

Now that Beta 2 is out many of you will be installing and setting up new SharePoint 2010 environments and getting to know the product intimately ;-) However, I've seen a number of posts around issues when attempting to setup and configure the User Profile Service or User Profile Synchronization Service. I too had some issues with this service during my installation so I thought I'd share my experience here and also my eventual workaround so that it may help others.

First off, my environments consists of several physical and virtualized servers. I never use a standalone installation since that's not a fair indication of how people will use the product out in the real world and I need to fully test things like authentication scenarios. So in my initial test setup, I had x4 servers. All servers are running Windows 2008 R2 and the domain is Windows 2008 R2 (Windows 2008 R2 functional level). Server one is my DC/Exchange 2010/DNS/DHCP, etc; server 2 is SQL 2008 (patched as per pre-requisite requirements on Ji Lie's blog); server 3 is my main application server, including SharePoint Server 2010 and Visual Studio 2010 B2; server 4 is currently where I have a number of legacy systems.

I initially ran my 2010 install under my domain admin account. However, I'd set up a separate farm account in my AD and given that account the necessary replication permissions (per Dave Pae's instructions) and subsequently added that account as the farm account during install.   The installation had an issue toward the end, where it couldn't fully deploy the user profile service. The error message suggested a timeout issue, but I wasn't convinced that it had completely failed.

Next, while still logged in as the domain admin account, I started the User Profile Synchronization Service on the Manage Services on server page in Central Administration. But the service hanged in the status of 'starting'. When I checked my Windows Services console, I could see that both the Forefront Identity Manager Service and Forefront Identity Manager Synchronization Service were set to 'Started'. So then I checked my Windows Application log and it was full of errors. I won't repeat those errors here, but you can see similar errors experienced by others in various posts on the 2010 forums, like this one started by Jeremy -http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/thread/8fffb030-c118-4e36-94ab-8601b25f3a97.

Next, I checked the account under which both the Forefront services were running and of course it was the farm account I'd added during initial installation. So my next attempt was to stop the User Profile Synchronization service which was stuck at a status of 'starting'. To do this, I used the PowerShell cmdlet stop-spserviceinstance [guid]. For those reading this post unfamiliar with PowerShell, you'll need to firstly discover the GUID for the user profile synchronization service before being able to stop it. To do this use the get-spserviceinstance cmdlet first to enumerate and access all the service GUIDS. I used:

get-spserviceinstance >file.txt to save them to a file on my local drive for convenience.

Next, locate the GUID for the user profile synchronization service (it'll probably show a status of 'provisioning' in PowerShell) and use the following command:

stop-spserviceinstance [userprofilesynchronizationservice GUID]

This will eventually stop the service and the status of the service on the SharePoint Manage services on server page will show a status of 'stopped'.

Also, the two Forefront services in the Windows Services console should be set back to a status of disabled.

Next I logged in as the farm account I'd assigned during install and the same account under which the Forefront services was running. I then attempted to start the user profile synchronization service using this account, but once again the service got stuck on a status of 'starting'. And my Windows application event log was full of Forefront errors once again along with some additional SQL access errors.

I think what happened was that by initially using my domain admin account to start the service confused everything along with the encrypted key used by the Forefront services.

So, next I decided to reinstall SharePoint Server 2010 but this time I used the domain admin account and I also installed it on my SQL box. This time, everything mostly worked though I still had a timeout error toward the end of my installation. But, I could then successfully start my user profile synchronization service and import user profiles from my domain.

IMPORTANT: once you've successfully started your user profile synchronization service you may still see a message on the User Profile Service Application page under Configure Syncrhronization Connections that the server is unable to connect to SQL or Search Service, etc. Make sure you have started your Search service back on the Manage services on server page and then do an IISRESET. Dave Pae mentions the IISRESET bit on his blog post. Once you've done this then all should be good to go and you should then be able to Configure Synchronization Connections and Start Profile Synchronization.

Finally, because the user profile service hadn't completely installed using the SharePoint wizard, once I had everything configure including services started and profiles imported, I needed to go back to my Web application and add my user profile service into the available Service Connections.

To do this, go to your Web application and click Service Connections in the ribbon. In the Configure Service Application Associations dialog you'll notice the checkboxes greyed out. To make them editable, from the dropdown at the top of the dialog select [custom] and then go check the User Profile Service Application (or whatever you've named your user profile service app) and click OK.

 

I realize using the domain admin account isn't best practice, but if you need to get things working in your dev or test environments then it worked for me. I'll be doing some further investigation but for now my user profile synching is working. Another thought is around which authentication protocol you're using. Initially I used NTLM. I've now switched to Kerberos. But I'm not convinced that switching to Kerberos in the beginning would have resolved my initial issue.

My only problem now is that my organizational browser isn't rendering properly with or without Silverlight so that's the next thing to tackle...oneday! ;-)

Here are some relevant postings:

Dave Pae has posted some instructions on the SharePoint team blog

http://blogs.msdn.com/sharepoint/archive/2009/11/18/path-to-user-profile-synchronization-success-in-sharepoint-2010-beta.aspx

Ji Lie posted some great instructions here http://blogs.msdn.com/opal/archive/2009/11/19/user-profile-sync-setup-in-sharepoint-server-2010-beta.aspx

plus

Beta 2 installation instructions

http://blogs.msdn.com/opal/archive/2009/11/16/installation-notice-for-sharepoint-2010-public-beta.aspx (great post and it also includes links to other great resources on his blog including a list of all the pre-requisites (important for isolated environments) - http://blogs.msdn.com/opal/archive/2009/10/25/sharepoint-2010-pre-requisites-download-links.aspx.

Importantly if you're running Windows 2008 standard SP2 then you'll need to install the hotfix at http://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=KB971831&DownloadId=7285

if you're running Windows 2008 RC2 then you'll need to install the hotfix at http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=23806

 

Presenting at Sydney SharePoint User Group 17th November 2009
I'll be presenting a session on design and branding in SharePoint 2010 at tomorrow night's Sydney SharePoint user group (17th November, 2009, 6pm-8pm). It will be a similar presentation to the one I delivered at this year's Office DevCon and approximately 1.5-2hrs duration.
 
The presentation will cover new design approaches in SharePoint 2010, including theming, master pages and other rich client-side offerings.
 
See http://www.sharepointusers.org.au/Sydney/default.aspx for location and registration.
 
 
 
 
Office DevCon 2009 Australia schedule now available
31st October and 1st November, Brisbane, Queensland, Australia.
 
The schedule for this year's Australian Office DevCon is now available at http://www.officedevcon.com.au/2009/Download/2009Schedule.pdf
 
Remember, if you plan on attending the event but haven't yet registered please do so by visiting http://www.officedevcon.com.au to ensure adequate seating and catering.
 
I'll be presenting a 90 minute session on design in SharePoint Server 2010, including page options, master page/s, theming and CSS, along with other new rich UI features, plus SharePoint Designer 2010 (now part of the 2010 development platform)! If you're currently working with SharePoint Server 2007 or Windows SharePoint Services 3.0 come along to learn about the new design features. If you're new to SharePoint, then you'll be able to see how to theme a SharePoint site and the various options for applying design.
 
See you there! Techtastic!
 
SharePoint 2010 Extravaganza Sydney Australia
Only a few days away from our SharePoint 2010 Extravaganza event at Microsoft here in Sydney, Australia. Craig has updated the agenda, which now includes SharePoint 2010 over, some deep dive and Visio Services.
Here's the lineup for the evening:
 
6:00 – News & Intro (Craig Bailey)
6:15 – Introduction to SharePoint 2010 (Kathy Hughes + Aaron Saikovski)
7:15 – Pizza break + networking
7:30 – Overview of Office 2010 SharePoint Integration (Alistair Speirs)
7:45 – SharePoint Workspace (previously known as Groove) (Alistair Speirs)
8:00 – Diving into SharePoint 2010 (Kathy Hughes + Aaron Saikovski)
8:30 – Visio Integration Services + SharePoint 2010 (Jamie Hutchins)
8:45 – Final demos + Panel Session Q+A
9:15 – Finish + networking
Further details and registration via Facebook: http://www.facebook.com/home.php#/event.php?eid=139617636781&ref=nf
 
or
 
 
Firefox issue with WPF
Be aware that there's currently an issue with Windows Presentation Foundation 3.5.30729.1 in Firefox browsers which may cause the below dialog to appear when launching certain Web sites in Firefox (in my case I'm running Firefox 3.5.3 and was accessing this site - http://msdn.microsoft.com/en-au/library/ms442469%28office.14,lightweight%29.aspx - when I received the error dialog).
 
 
A recent article on Computerworld explains the current issue: -"Mozilla blocks Microsoft's sneaky Firefox plug-in":  http://www.computerworld.com/s/article/9139518/Mozilla_blocks_Microsoft_s_sneaky_Firefox_plug_in?taxonomyId=125 
 
 
SharePoint Server 2010 – Now and then

I’ve been working with an early SharePoint 2010 beta for the past couple of months and I must say I’m really excited about the new features, including new rich usability features. There are way too many features for one blog post alone!

So, to kick start things I’ve created a number of slides and videos, which I’ve listed below. These should help to whet your appetite and if you’re currently using SharePoint Server 2007 I’ve included some comparative shots in some of the videos. Of course, if you’re one of the lucky 7000+ people attending the SharePoint Conference currently underway in Vegas (USA) then you’re in for a real treat. Get ready for information overload!

Alternatively, go straight to Flickr to view the entire 2010 set at: http://www.flickr.com/photos/kathyhughes/sets/72157622621162114/.

Go straight to YouTube to view the entire Playlist at: http://www.youtube.com/view_play_list?p=FD0BEEE947266904

Download the slide PDF, including links to demos, here: http://www.kathyhughes.com/blog/downloads/SharePoint2010_NowAndThen_HughesKa.pdf

SharePoint Server 2010 – Now and Then

 

SharePoint Server 2010 Now and Then an overview

User Interface

YouTube demo video:

http://www.youtube.com/watch?v=m0BE5foVC_A&feature=PlayList&p=FD0BEEE947266904

Setting User Alerts - Comparison between 2007 and 2010 usability

YouTube demo video:

http://www.youtube.com/watch?v=hgkayzFP_Lo&feature=PlayList&p=FD0BEEE947266904

Publishing Content Types – possible in 2010 via the Web interface!

YouTube demo video:

http://www.youtube.com/watch?v=SDolAuoFfRY&feature=PlayList&p=FD0BEEE947266904

Email Integration

List Enhancements – support for large lists, validation and avoid duplicate entries in lists!

YouTube demo video:

http://www.youtube.com/watch?v=7PGCSyjTdKM&feature=PlayList&p=FD0BEEE947266904

Document Sets

YouTube demo video:

http://www.youtube.com/watch?v=UuoKC5XwjvA&feature=PlayList&p=FD0BEEE947266904

Metadata driven Navigation – taxonomy, filtering and navigation, centrally controlled

Page management – much more fluid, change page layouts on the fly

YouTube demo video:

http://www.youtube.com/watch?v=L9L6NPQzMos&feature=PlayList&p=FD0BEEE947266904

New enriched site templates – improved document center

Master pages and themes – huge improvements here and lots more content to come around this!

Central Administration – ease of use

YouTube demo video:

http://www.youtube.com/watch?v=sQh9Pfjyht0&feature=PlayList&p=FD0BEEE947266904

Analytical Reports – all via Web interface

YouTube demo video:

http://www.youtube.com/watch?v=93ZGF2VVAyw&feature=PlayList&p=FD0BEEE947266904

Q&A

I’ve only just touched the surface here. SharePoint 2010 is feature rich and there are loads of possibilities for customization and extending OOB functionality.

My next book will contain lots of goodies!

Until next time!

 

SharePoint Server 2010 is out!!
As of today's keynote at the 2009 SharePoint Conference happening in Vegas, USA, SharePoint Server 2010 features have been publicly disclosed. A public beta is due out sometime November.
 
Today's earlier keynote is available on demand at http://www.mssharepointconference.com/Pages/default.aspx.
 
Stay tuned for lots of SharePoint Server 2010 goodness!
 
1 - 10 Next

 ‭(Hidden)‬ Admin Links