SharePoint user group meeting, Edinburgh 5th May 2010
I am very excited to announce that the next SUGUK meeting in Scotland is scheduled for May 5th at Microsoft, Waverly Gate, Edinburgh.
Spencer Harbour http://www.harbar.net/articles/About.aspx (MVP) will be discussing
Scaling SharePoint 2010 Topologies
Learn about the new SharePoint Service architecture, and how you architect Services for your organization. We will talk about various Canonical SharePoint deployment types (Internet Presence, Partner Collaboration via Extranets, distributed/consolidated data centers, medium sized organization etc.) and describe how you architect the Services logical topology. In addition to the logical topology, we will drill into how you scale-up/scale-out the physical topology to meet the scale expectations for your organization. Regardless of the nature and scale of your organization, SharePoint 2010 now offers a topology for you!
and Jess Meats http://blogs.technet.com/jessmeats/default.aspx from Microsoft shall be diving into the new workflow capabilities in SP2010 including the visual design capabilities within Visio 2010.
SharePint
The Time
Doors open at 5:30 and will begin promptly at 6:00, with the obligatory half-time pizza and refreshments.
The Venue
Posting on SUGUK.ORG : http://bit.ly/cuapXW
Run Visual Studio 2010 as administrator – by default
Simple thing but you often need to run VS2010 as administrator, certainly if you are going to be doing much debugging with SharePoint 2010. You can make this behaviour automatic by carrying out the following steps.
1. Right click the short cut to VS2010 and select ‘Properties’
2. From the properties window select the ‘Advanced’ button
3. Check the ‘Run as administrator’ checkbox – Your done
Simple way to get the 4-part strong name for an assembly
As you will know when building SharePoint solutions you always need to determine the 4-part assembly name or Strong Name for inclusion in various solution and feature manifests. I typically got this by pointing Reflector at my compiled DLL files.
Simpler way using Power Shell
Using the ‘External Tools’ option within visual studio you can create a quick link, so from your solution just click the ‘Get 4-Part Name’ link and out pops the 4-part assembly name in you’re output window.
Resulting output window…
How to add a new External Tool
Select ‘External Tools…’ from the Tools menu in Visual Studio
TITLE : Give the tool a title. You can use an ‘&’ character which will act as a short cut i.e. ALT+G.
COMMAND : powershell.exe
Arguments: -command "[System.Reflection.AssemblyName]::GetAssemblyName(\"$(TargetPath)\").FullName"
3. Make sure you check ‘use output window’ to post the result in the VS output window.
Simple but a great time saver
Installing SharePoint 2010 (RC) not allowing you to select the installation type and installs as single server.
Noticed a problem when trying to install SharePoint 2010 release candidate on win 2008 running as a DC.
Problem:
The setup was not prompting you for the server type ‘Single Server’, ‘New Farm’. Instead the install would install SharePoint and SQL server express. The configuration wizard would then setup SharePoint as a single server.
Workaround:
Copy the setup.exe to a local directory on the server eg : c:\SPSETUP then open a command prompt ‘as administrator’ and run the following
c:\SPSETUP\setup.exe /extract c:\SPSETUP
Then from the SPSETUP folder run the install with the following command
setup.exe /config c:\spsetup\File\SetupFarm\config,xml
The install shall run as normal, but this time when the configuration wizard is run you should get the prompts to specify the appropriate configuration database server.
If you are running as a single server and using SQL Server Express then I also noticed this problem…
Also noticed that the config. wizard fails at step 5 due to it timing out. Thanks to some other postings I discovered this was due to the Sharepoint Server Search 14 and later on the SharePoint Foundation Search V4 service was being restarted by the configuration wizard. When the service is restarted it was using the ‘Local Service’ account. You can see this happening if you watch the services while the config. wizard is running. If before running the wizard you change these to run with appropriate domain accounts these should start up ok.
Problem with User Profile Service in SharePoint 2010
Bit of a random problem but I received the follo wing error across the top of the ‘User Profile Service Application’ page in SharePoint 2010 Beta 2…
User Profile Application’s connection is currently not available. The Application Pool or User Profile Service may not have been started. Please contact your administrator”.
I found the following blog posting from Travis Nielsen who had also received this message and his posting worked for me.
To avoid repeating what Travis has to say read…
http://blogs.pointbridge.com/Blogs/nielsen_travis/Pages/Post.aspx?_ID=30
Travis talked about commenting out the allowinsecuretransport attribute This is what the commented out section of the client.config file looked like for me. Note there are two references to this, so I commented out both.
After you have made the change remember to do an IISRESET.

