Tag Archive | "service"

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

Everything There is to Know About SharePoint 2010 SP1

Posted on 20 January 2012 by Spade

imgBTruly "Packed" for "Service!"

*** UPDATE: Service Pack 1 has now been released! ***

As mentioned in my previous post, Tech-Ed 2011 was somewhat subdued. We’re pretty much "between launches", meaning that the emphasis was on real-world application of the existing technology stack, rather than The Next Big Thing. That said, there were some glimmers of things to come.

One of those glimmers was the announcement that Service Pack 1 for Office and SharePoint 2010 products was almost here. Although an exact date wasn’t given, we were told that it would ship in "Late June 2011". That’s about as specific as Microsoft ever gets for anything short of a major launch event.

It’s In There…

Microsoft also released a few hints of what will be included in SP1. Before I go into detail, however, you may need a little background. The effective definition of the term "Service Pack" at Microsoft has always been something of a moving target. Although, officially a Service Pack is just supposed to contain "bug fixes and stability and compatibility enhancements", Service Packs in the past have ranged from just that, to conglomerations of new features that could have almost justified a full point release. (And let’s not even get into actual point releases, "Feature Packs", and the infamous SharePoint 2007 "Infrastructure Update"!) SP1 for SharePoint 2010 falls somewhere in-between those extremes.

Note: This article describes only the features of SP1 that were officially disclosed at Tech-Ed. These may or may not be the only enhancements to come…

Of course, the core of any service pack are those bug fixes I mentioned. While Microsoft didn’t disclose any specific new bugs being fixed, they did say that everything in the previously released Cumulative Update packages (up to and including April 2011) will be included. The main difference between the fixes in a Cumulative Update (also called a "Hot Fix Rollup"), and those in a Service Pack, is that the Service Pack fixes have received more thorough regression testing, and are considered appropriate for deployment to all customers. CU’s, though supported, are primarily meant for customers who know they’re suffering from particular issues included in the package. This is also why, while Service Packs are distributed widely, CU’s have to be specifically requested. Of course, all of these updates are much easier to come by than they used to be. Check out the Updates for SharePoint 2010 Products for the latest and greatest details.

Going Beyond the Bug(s)

So, what are the actual new features in SharePoint 2010 SP1?

Support for Internet Explorer 9 Native Mode and Google Chrome

SharePoint has always had great browser support, but this update officially will add Google Chrome to the "A" list of browsers, supporting the vast majority of SharePoint features – including Office Web Apps. Ditto to Internet Explorer 9 in "Native Mode" – whatever that means… :)

Site Recycle Bin

Here’s a feature that people have been asking for almost as long as SharePoint has been around! As of SharePoint 2010 SP1, administrators will be able to recover deleted sites and site collections without having to first restore a SQL Server database! There have been third party tools, and open source projects, to accomplish this in the past, but now the functionality will be baked in.

Shallow Copy

Shallow Copy needs a little explanation. No, it doesn’t mean a clone with the personality of a Barbie(tm) doll. This feature is primarily of interest to folks using the Remote Blob Storage (RBS) feature of SLQ Server 2008 R2 to reduce the size of their databases. Essentially, when you move a site collection from one database with RBS enabled to another, Shallow Copy allows the file-system-based files to remain where they are, with just the pointers in the Content Database updated. Otherwise, the files would need to be read off the disk, then resaved as part of the copy operation.

StorMan.aspx

This one is less a "new" feature, than the return of an "oldie but goodie". When you had a quota assigned to a site collection, it could be very handy to have a report of where on your site you happen to be using up space. In SharePoint 2007, there was a utility page for this report called storman.aspx. For reasons I’m not sure of, this page was not included in SharePoint 2010. Service Pack 1 brings it back home.

SQL 11 Support

There was a lot of buzz at Tech-Ed about Denali (aka SQL 11 – who knows what the "real" name will be). SP1 brings official support for it to SharePoint. No official word on whether it will light up any new features, except maybe the Crescent real-time Reporting Services tool. I saw a Crescent demo at the show, and it was really cool. I might write more about that later. In the mean time, check out this SQL Reporting Services team blog post

Fix, or Feature?

In the slide show I saw, several items were listed as "Fixes", though a lot of them sure sounded like new and/or improved functionality to me…

Office Web Apps

The Office Web Apps, or OWA, get a lot of love in SP1. I already mentioned the enhanced browser support (Chrome, IE9 "Native"). In addition, you get such goodies as:

  • Open Document Format (ODF) support for viewing and editing
  • Print Word documents in edit mode (not just preview mode)
  • Insert Charts with Excel Web App
  • Copy/Past values and formulas in Excel Web App by dragging the "fill" handle.
  • Print from PowerPoint Web App
  • Edit directly in more shapes in PowerPoint Web App
  • Insert Clip Art in PowerPoint Web App

All in all, very worthy improvements!

Indexing Connector for Documentum

Even though SharePoint offers all kinds of document management, there are still customers for whom Documentum is the product of choice. The Indexing Connector for Documentum allows SharePoint Search to crawl Documentum repositories and return appropriately ranked results within SharePoint. The specific updates for this connector include:

  • Improves overall crawl performance
  • Provides support for customized Documentum Foundation Services (DFS) URL
  • Provides support for Documentum Trusted Content Services (TCS) "Access Restriction" Access Control List (ACL) for security trimming
  • Provides support for custom security trimming solution for TCS enabled Documentum repository by extracting TCS ACLs into SharePoint crawled properties
  • Provides support for Documentum “superuser” permissions level

FAST Search Server 2010

FAST Search Server 2010 is Microsoft’s high-end search product. It wasn’t left out of the Service Pack 1 frenzy. Here’s what you get:

  • Adds the possibility to add and remove indexer and search columns on a live system
  • Adds more flexible custom property extractors
  • Adds Greek spellchecking and stemming
  • Improves title extraction for Word and PowerPoint documents. Titles are now presented correctly and relevancy for Word and PowerPoint documents is improved.
  • Improves default schema which improves relevancy
  • Improves index backup/restore

Conclusion

And that’s the whole thing, at least as far as the information that was released at Tech-Ed goes. Service Pack 1 has been over a year in the making, and it seems pretty clear that it will have been well worth the wait. Although we don’t yet have the exact release date, you can always keep up to speed on what patches are current on the SharePoint Update pages.

Here’s that Update Page link again

And here’s the equivalent for SharePoint 2007 technologies

Have a great Memorial Day weekend!


Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

Method to determine account identity of ‘SharePoint 2010 Timer’ (SPTimerV4) Windows Service

Posted on 20 January 2012 by Spade

As a developer of solutions for the SharePoint 2010 platform, you may on occasion find the need to determine the account identity of the SharePoint 2010 Timer Windows Service (SPTimerV4). The following method will return the service’s account name for you.

 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
private static string GetSPTimerJobAccountName()
{
string retval = null;
ServiceController[] controllers = ServiceController.GetServices();
var cont = controllers.Where(c => c.ServiceName == "SPTimerV4");
ServiceController svc = cont.FirstOrDefault();
if (svc != null)
{
System.Management.SelectQuery query = new System.Management.SelectQuery(string.Format("select name, startname from Win32_Service where name = '{0}'", svc.ServiceName));
using (System.Management.ManagementObjectSearcher searcher = new System.Management.ManagementObjectSearcher(query))
{
foreach (System.Management.ManagementObject service in searcher.Get())
{
retval = service["startname"] as string;
}
}
}

return retval;
}

Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , , , , , ,

SharePoint Server 2010 Service Pack 1 PowerShell Changes

Posted on 20 January 2012 by Tony

As most people know by now, Service Pack 1 for SharePoint 2010 was released to the public today. There’s already been a lot of hype over some of the new capabilities such as the site recycle bin and some folks have documented/demonstrated some of the new PowerShell cmdlets that are available to manage this new [...]
Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

Taxonomy–The Challenge of Starting from Scratch

Posted on 11 January 2012 by Spade

One of the most talked about capabilities since the launch of SharePoint 2010 is the Managed Metadata Service.  For those of you who aren’t already familiar with this service and the support it provides for modeling and deploying a rich corporate taxonomy, I’d recommend reading Pat’s post Introducing Enterprise Metadata Management.  For those of you who are familiar with the great taxonomy capabilities in SharePoint 2010, I’m sure many of you have spent time looking at an empty term store wondering where to start.  If you’re lucky, you already have a well defined corporate taxonomy and should by now have leveraged our import capabilities to pre load SharePoint with the vocabulary you want your users to leverage for tagging and finding content.  On the other hand, you could be like many customers I talk to who don’t even know where to start when it comes to developing a taxonomy, or have spent years in conference rooms debating what the right taxonomy should be.  You’ve probably even head someone say “I’m sure someone has already solved this problem”, and if that’s the case, that someone was the smartest person in the room for two key reasons.  The first is that there are professional taxonomists who have already modeled most business domains and the second is that the people responsible for creating content in your company have already developed a community vocabulary or folksonomy that they use extensively.

If you happen to be one of those customers who is stuck looking at an empty term store then I’ve got great news for you.  The SharePoint team have teamed up with WAND, a leading provider of Enterprise Taxonomies, to make their General Business Taxonomy available as a freely available download.  The General Business Taxonomy consists of around 500 terms describing common functional areas that exist in most businesses.  The General Business Taxonomy can be imported in to the SharePoint 2010 term store within minutes and provides a great starting point for customers looking to build a corporate vocabulary and take advantage of the Managed Metadata Service.  In addition to this freely available download, WAND provide a range of taxonomies covering a variety of domains including Products and Services, Local Search, Enterprise, Jobs, Travel, Medical, Lifecycle, Finance and Records Retention.

Download the General Business Taxonomy today and start to explore the benefits that taxonomy can bring to your business and your people. 

If you’re new to taxonomy and the benefits it can brings to your business, take a look at the following sites:

Ryan Duguid
Senior Product Manager
Microsoft Corporation


Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , ,

SharePoint Day at Microsoft

Posted on 11 January 2012 by Spade

Just a quick note to let you know that Office and SharePoint 2010 Service Pack 1 is now available. See my previous article about SP1 for more details…​

In other SharePoint news, Office 365, the 2010 based version of SharePoint Online (aka BPOS), has also been released.


Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

Building up your Organization’s Value with Taxonomy

Posted on 03 January 2012 by Tony

Getting the most out of SharePoint 2010 should involve the new Managed Metadata Service. For those of you who aren’t familiar with this service and the support it provides for modeling and deploying a rich corporate taxonomy, I’d start by reading Pat’s post Introducing Enterprise Metadata Management. By knowing how the documents and concepts could be grouped together you can start shaping the user experience with your SharePoint instance. Once you decide that you want to take the organization of your enterprise content to the next level, you need to decide how to organize your documents. If you are lucky, you already have a well defined taxonomy that can be imported into the Term Store with SharePoint’s import capabilities. Even if you have something that starts to help organize your data the power of leveraging other views of the subject you already have will help find improved ways to access and organize your data for the users. If your organization hasn’t started to organize, or wants to improve their taxonomies, or wants to compare their data to make sure there aren’t areas where you haven’t covered, you now can find pre-built foundational taxonomies in a variety of fields and expertise.

The SharePoint team has teamed up with WAND, a leading provider of Enterprise Taxonomies, to provide a starting point and make their General Business Taxonomy available as a freely available download. The General Business Taxonomy consists of common functional areas that exist in most businesses. The General Business Taxonomy can be imported in to the SharePoint 2010 term store within minutes and provides a great starting point for customers looking to build out term sets and take advantage of the Managed Metadata Service. In addition to this freely available download, WAND provide a range of taxonomies covering a variety of domains including Products and Services, Jobs, Skills, Medical, Finance, Records Retention, Legal, Insurance, Manufacturing, Information Technology, and Mining

Download the General Business Taxonomy today and start to explore the benefits that taxonomy can bring to your business and your people.

If you’re new to taxonomy and the benefits it can bring to your business, take a look at the following sites:


Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

June 2011 Cumulative Update Refresh

Posted on 29 November 2011 by

​The June 2011 Cumulative Update has been refreshed with additional updates and fixes that resolve specific issues (see below) that were not included in the June 2011 Cumulative Update published between June 28th, 2011 and July 8th, 2011.  We recommend customers install the latest June 2011 Cumulative Update to take advantage of these updates and fixes.

The latest June 2011 Cumulative Update will install on server farms with an existing June 2011 Cumulative Update installed, Service Pack 1 installed, or on environments where previous or no Cumulative Updates are installed.  To learn more about updating SharePoint 2010 Products see the Updates for SharePoint 2010 Products Resource Center at http://technet.microsoft.com/en-us/sharepoint/ff800847.
 

Issues resolved in the June 2011 Update Cumulative Update Refresh:

• Install fails on environments with .NET 4.0 installed
• Some services do not start when the June 2011 Cumulative Update is installed on environments following a least   privileged model

June 2011 Cumulative Update Downloads

 

Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

Data in the cloud! DataMarket Add-In for Excel and Excel Services

Posted on 20 September 2011 by

There are some exciting things happening around Microsoft cloud services. One of the services is Windows Azure marketplace DataMarket, a cloud service that helps end users who need data for business analysis and decision making. You can conveniently consume the data you subscribe to directly in such Microsoft Office applications as Microsoft Excel 2010 and Microsoft business intelligence tools as PowerPivot and SQL Server Reporting Services. Then you can share the reports and visualization you create in SharePoint. To learn more, see the DataMarket_Whitepaper.

There are some end-to-end scenarios where Office draws data from the cloud through DataMaket, then shares it in SharePoint Server 2010 through Excel Services and perhaps from there to a PerformancePoint Services dashboard. The following diagram is a specific scenario where data is drawn from the DataMarket, then saved to your desktop, then shared on SharePoint Server 2010 through Excel Services.

Note: Office365 is included in the image only to give the big picture, in that there are three major offerings and DataMarket is a result of what is offered in Windows Azure and SQL Azure.

This post highlights the DataMarket Add-In for Excel, which is a free application that allows discovering and importing data from Windows Azure Marketplace DataMarket into Microsoft Office Excel. I also give a brief description of each cloud offering.

DataMarket Add-In for Excel (how it works)

The DataMarket Add-in for Excel (CTP1) gives you a simple experience allowing you to discover datasets published on the Windows Azure Marketplace DataMarket. You can browse and search for a rich set of datasets from content publishers within a tool you’re already familiar with, Excel. Here is how:

1. Download the add-in here, open the folder (or save to your machine), and double-click the Windows Installer Package.

Note: You may be asked to download Microsoft .NET Framework 4.0 Client Profile. The 4.0 framework installs the WCF Data Services, which is a component of the .NET Framework that enables you to create REST-based services and applications that use the Open Data Protocol (OData) to expose and consume data over the Web.

2. Open Excel and click the Data tab to see that the add-in was installed as extension to Excel. You should see a button named Import data from DataMarket in the Excel ribbon, as follows:

3. Click the Import data from DataMarket button. The sign-in dialog box opens:

This dialog box introduces the DataMarket and lets you:

  • Browse the marketplace: Clicking this link opens a new browser window where you can browse the datasets exposed by the DataMarket.
  • Sign up for DataMarket: Opens the browser with the sign-up page for the DataMarket. Signing up is free!
  • Privacy statement: Opens the browser showing the privacy statement for this add-in.

The main purpose of this dialog box is to help you sign in to your list of subscribed datasets. To sign in, you need to provide an account key. An account key is your password to access all the datasets in the DataMarket and it can be found at https://datamarket.azure.com/account/keys. Because the account key is your password (tied to your DataMarket account), you need to sign up with the DataMarket to get access to it.

Copy the account key from the account key page (https://datamarket.azure.com/account/keys) and paste it into the Account key field. Additionally, you can specify whether the account key is being saved for further use by checking the Remember my account key check box.

If you have signed up, copy your account key and click Sign-In to load your subscribed datasets.

The following screeshot shows the three datasets I signed up for. Some datasets, such as STATS, charge a fee. Other datasets are free but may have limitations on the data you can view. For example, Zillow gives you 3,000 transaction per month for free. The other data providers offer a various number of transactions.

 

For next steps see:

Excel Services overview (SharePoint Server 2010)

Publish a workbook to Excel Services

 


Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

End of License for Microsoft Office SharePoint Server 2007 for Search

Posted on 19 September 2011 by Tony

For any customers who might be using Microsoft Office SharePoint Server 2007 for Search, this is a reminder that in 2008, it was replaced with Microsoft Search Server 2008. At that time, Microsoft discontinued support for Office SharePoint Server 2007 for Search. This is especially important to note if you plan to install Service Pack 2 (SP2) for SharePoint Products and Technologies on a server that is running Office SharePoint Server 2007 for Search. This can cause Office SharePoint Server 2007 for Search to incorrectly register as a trial version.

We recommend that you do one of the following instead:  

 


Read More

Comments (0)

Tags: , , , , , , , , , , , , , , , , , , , , , , , ,

Service Pack 1 for SharePoint 2010 Products documentation

Posted on 28 August 2011 by Tony

After months of planning and hard work, Service Pack 1 for SharePoint 2010 Products is live and available for download. Service Pack 1 provides additional functionality and specific fixes, such as the ability to recover site collections and sites from the Recycle Bin, granular management and insight into storage using StorMan.aspx (Storage Space Allocation), and many others.

The SharePoint documentation team has published new and updated articles that were available as of June 28. For more information about these articles, as well as to learn what’s new in this service pack, download the Service Pack 1 for SharePoint Foundation 2010 and SharePoint Server 2010 white paper.

The following SharePoint team blog post provides more information about the contents of the service pack, such as its contents, how to download it, and FAQs: http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=984

You can also visit the Updates for SharePoint 2010 Products Resource Center (http://technet.microsoft.com/en-us/sharepoint/ff800847.aspx) to get detailed information about installing the service pack.


Read More

Comments (0)