<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.office.com/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US"><title type="html">SharePoint Blog</title><subtitle type="html" /><id>http://blogs.office.com/b/sharepoint/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.office.com/b/sharepoint/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.office.com/b/sharepoint/atom.aspx" /><generator uri="http://telligent.com" version="5.5.134.15456">Community Server</generator><updated>2013-03-25T10:00:00Z</updated><entry><title>Use event-click parsing to increase e-commerce site revenue</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/05/16/use-event-click-parsing-to-increase-e-commerce-site-revenue.aspx" /><id>/b/sharepoint/archive/2013/05/16/use-event-click-parsing-to-increase-e-commerce-site-revenue.aspx</id><published>2013-05-16T17:00:00Z</published><updated>2013-05-16T17:00:00Z</updated><content type="html">&lt;p&gt;&lt;i&gt;This post is brought to you by Runar Olsen, an Architect at Microsoft Search Center of Excellence, and by Andrew Moll and Greg Guillen, Associate Consultants at Microsoft Big Data Center of Excellence.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;Your e-commerce site can increase revenue opportunities, and understanding what user behavior led to a purchase can help retain repeat customers and gain new ones. In this post, we explore how you can connect SharePoint with Hadoop and map-reduce analysis in the background to create a web browsing experience that is personalized to the end user's intent and past behavior, thus increasing the success of a sale on your e-commerce site.&lt;/p&gt;
&lt;p&gt;We'll use a fictitious e-commerce site, Contoso Electronics, to show how we integrated it with HDInsight Service to provide a Big Data use case for helping end users find results easier on the search result page. &amp;nbsp;We'll also look at how we used HDInsight Service to add functionality to the electronics search result page by doing clickstream analysis on user events. &lt;/p&gt;
&lt;p&gt;The Contoso Electronics site is running on SharePoint 2013, using the new &lt;a target="_blank" href="http://msdn.microsoft.com/en-us/library/jj163225.aspx"&gt;cross-site publishing&lt;/a&gt; model. The product catalog data is maintained in &lt;a target="_blank" href="http://www.microsoft.com/en-us/dynamics/retail.aspx"&gt;Dynamics AX&lt;/a&gt; and pushed to SharePoint 2013 where it's rendered in a web site format. (The data can also be rendered on tablets and phones.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/450x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/4478.SharePointEcommerce_5F00_Image1.jpg" border="0" /&gt;&lt;/p&gt;
&lt;p&gt;The new functionality offers a quicker way for people to find what they were looking for. For instance, if a user is searching for the keyword &lt;i&gt;tablet&lt;/i&gt;, the search results will display products that other users ended up buying after searching for that term. By analyzing the purchase history and search query patterns of previous users, we are able to provide this information to the new user who just entered the site and searched for a tablet. On the web site it would look like this:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/450x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/2671.SharePointEcommerce_5F00_Image2.jpg" border="0" /&gt;&lt;/p&gt;
&lt;p&gt;There are a number of streams of user event data we can use. For this analysis, we need the search query log and purchase logs for all users. We can also look within the web server logs, and find query term referrals from web search engines. For example, a user might search for &lt;i&gt;tablet&lt;/i&gt; on Bing.com. In the search results, they see a Contoso Electronics product and browse directly to the product to buy it without using the search box on the Contoso Electronics site. Often, e-commerce sites already have web analytics tools in place to collect this data, and the logs can be retrieved from there. For our scenario, we auto-generated several gigabytes of user search and purchase logs for our fictitious site.&lt;/p&gt;
&lt;p&gt;Since we have large amounts of unstructured events to parse in log files, we choose to use HDInsight Service to analyze the data. &amp;nbsp;Below is the architecture we settled on for our pilot. The Contoso Electronics web site is running in Azure IaaS, so everything is already in the cloud. &lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/5633.image_2D00_3.png" border="0" /&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;Hadoop analysis&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;Because the web logs are stored in Azure Storage Vault (ASV), we never have to bring any of the data on-premises-we can keep everything in the cloud.&amp;nbsp;When data is stored in ASV, it is easily accessible by our HDInsight Service via Sqoop, which can take multiple data files from ASV and move them into the Hadoop Distributed File System (HDFS) where mappers/reducers can manipulate it.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Another option is to create a Hive External Table. When data is stored in ASV, it is easily accessible by our HDInsight Service via external Hive tables. External Hive tables allow a metadata wrapper to be layered on top of your unstructured data sitting in ASV, ultimately providing a structured table format that can be exported to a relational database for further business analytics. This provides a cost-effective IaaS method for customers to utilize their HDInsight Service Cluster for analytical purposes, leaving the cheap storage aspect of your data to Azure Storage Vault while still relying on HDInsight to perform the data analytics. &lt;/p&gt;
&lt;p&gt;Hadoop Streaming takes 4 inputs: mapper, reducer, input files, and output location.&amp;nbsp; The beauty of this is that your mapper and reducer do not need to be written in Java.&amp;nbsp; Hadoop mappers are natively written in Java, but we wrote ours in C#, and then used Hadoop Streaming to make the necessary adjustments.&amp;nbsp;Not every problem can be solved with MapReduce (M/R) but even fewer can be solved with only one M/R job.&amp;nbsp; This holds true in our example as we have multiple MapReduce jobs.&amp;nbsp; In our example, there are two M/R jobs that are "chained" together, which means that the output of one job is used as the input for the second job.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Our first mapper takes the web logs and pulls out &amp;lt;User ID&amp;gt;&amp;nbsp;and &amp;lt;Event&amp;gt; (purchased, viewed, or queried) &lt;/p&gt;
&lt;p&gt;Example:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;userid123&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; p=itemid123&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;userid123&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; v=itemid123&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;userid123&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; q=surface&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;From here we have a reducer that organizes the user's session and outputs the sorted data to a file.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;Userid123&amp;nbsp;&amp;nbsp; &amp;nbsp;q=surface,v=item1,p=item2,q=ipad&lt;br /&gt;Userid321&amp;nbsp;&amp;nbsp;&amp;nbsp;q=surface,v=product455,v=product966,v=product361,v=product611,v=product877,v=product686,v=product519&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The second mapper picks up the data from the first mapper output. From here the mapper adds a value of 1 or 10, depending on if the product was only viewed (1) or bought (10) times.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;slr|product544&amp;nbsp; 1&lt;br /&gt;slr|product252 &amp;nbsp;1&lt;br /&gt;slr|product70&amp;nbsp;&amp;nbsp; 10&lt;br /&gt;slr|product252&amp;nbsp; 10&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The reducer then takes this data, sorts it, and adds up the values.&amp;nbsp; Therefore a higher number = more products purchased.&amp;nbsp; This data is then exported as a text file to complete the analysis.&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/450x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/6746.SharePointEcommerce_5F00_Image4.jpg" border="0" /&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;The Hadoop portal shows details about the Map Reduce Job that is running on our cluster.&lt;/i&gt;&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;SharePoint integration&lt;/h3&gt;
&lt;p&gt;After Hadoop has completed its analysis, we have a big text file in this format:&lt;br /&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;lt;product id&amp;gt;, [&amp;lt;search query:count&amp;gt;, &amp;lt;search query:count&amp;gt;, ...]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Now you can create a Hive table on top of the text files, giving the data a table format structure which can be exported into any relational data store using SQL Server Integrated Services.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Our source data in the Product Catalog in SharEPoint is of this format:&lt;br /&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;lt;product id&amp;gt;, &amp;lt;category&amp;gt;, &amp;lt;price&amp;gt;, &amp;lt;brand&amp;gt;, &amp;lt;weight&amp;gt;, ..., ...&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;We are now enriching the content of a given product, by adding relevant search queries that lead to the purchase of that given item.&lt;br /&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;lt;product id&amp;gt;, &amp;lt;category&amp;gt;, &amp;lt;price&amp;gt;, &amp;lt;brand&amp;gt;, &amp;lt;weight&amp;gt;, ..., &amp;lt;purchasedqueryfor&amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;There is no overwriting of the existing data, so it can always be updated, independent of our Hadoop data. When the original data changes (for instance, a price update), it will not change the column where we put our output from the analysis conducted above. We used the new RESTful APIs in SharePoint2013 to update the metadata column in the product catalog. (Product Catalog is a SharePoint list.)&lt;/p&gt;
&lt;p&gt;On the front page in SharePoint we added a new Content By Search web part, which adds a custom search query:&lt;br /&gt;&lt;span style="font-family: courier new,courier;"&gt;Purchasedqueryfor:{User SearchTerm}&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The result is a set of products that users ended up buying after searching for the given input query term. The web part that was added to the search page is configuration only, and there is no need for any custom code to achieve this. &lt;/p&gt;
&lt;h3&gt;Increased opportunities&lt;/h3&gt;
&lt;p&gt;What we've seen in this blog post is a concrete example of how to integrate HDInsight Service with SharePoint 2013 to provide functionality on the search page on the Constoso.com website. By increasing search relevance for customers we are able to provide users with the actual and similar products they are looking for, thus increasing the opportunity for a company to boost revenue through products purchased. In addition, a company can also understand what user views led to a purchase, which can assist with planning market product positioning for future customers.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=37367" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author></entry><entry><title>Audio manufacturer boosts go-to-market speed with centralized web content management </title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/05/14/audio-manufacturer-boosts-go-to-market-speed-with-centralized-web-content-management.aspx" /><id>/b/sharepoint/archive/2013/05/14/audio-manufacturer-boosts-go-to-market-speed-with-centralized-web-content-management.aspx</id><published>2013-05-14T16:00:00Z</published><updated>2013-05-14T16:00:00Z</updated><content type="html">&lt;p&gt;New Jersey-based D&amp;amp;M Group is the parent company of several high-end audio brands such as Denon, Marantz, and Boston Acoustics. With offices in more than 70 countries, D&amp;amp;M Group struggled to manage a geographically dispersed IT environment. To centralize IT management and create a single enterprise platform for all of the D&amp;amp;M Group websites, the company implemented Microsoft SharePoint Server 2013. By migrating and redesigning websites using SharePoint Server 2013, D&amp;amp;M Group reports faster go-to-market speed, enhanced mobile publishing capabilities, and simplified product catalog capabilities. By using SharePoint Server 2013 to develop a single global product catalog, the company can now publish and change products with one-person administration.&lt;/p&gt;
&lt;p&gt;&lt;iframe scrolling="no" width="478" frameborder="0" src="http://www.microsoft.com/casestudies/video/Embed.aspx?fr=4000030888" height="359"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;See more &lt;a href="http://office.microsoft.com/en-us/sharepoint/sharepoint-customer-stories-collaboration-software-reviews-FX103789449.aspx"&gt;SharePoint customer stories&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=37326" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author><category term="SharePoint 2013" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+2013/default.aspx" /><category term="Customer Stories" scheme="http://blogs.office.com/b/sharepoint/archive/tags/Customer+Stories/default.aspx" /><category term="Stories" scheme="http://blogs.office.com/b/sharepoint/archive/tags/Stories/default.aspx" /></entry><entry><title>Upgrading to the new SharePoint Online</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/05/08/upgrading-to-the-new-sharepoint-online.aspx" /><id>/b/sharepoint/archive/2013/05/08/upgrading-to-the-new-sharepoint-online.aspx</id><published>2013-05-08T17:00:00Z</published><updated>2013-05-08T17:00:00Z</updated><content type="html">&lt;p&gt;As we announced on February 27, the new Office 365 service is out of "Preview" and available to &lt;a target="_blank" href="http://www.office365.com/"&gt;try and buy today&lt;/a&gt;. We received tons of actionable feedback resulting in new features customers want, improved performance, simple user experiences, more admin controls and the stability they expect. SharePoint Online (SPO) customers will soon be able to self-upgrade to the new SharePoint Online experience - a new user interface, global Office 365 navigation and a whole set of new features and supported scenarios. You can go &lt;a target="_blank" href="http://blogs.office.com/b/sharepoint/archive/2013/04/02/what-s-new-in-sharepoint-online-top-10.aspx"&gt;here&lt;/a&gt; to read all about &lt;a target="_blank" href="http://blogs.office.com/b/sharepoint/archive/2013/04/02/what-s-new-in-sharepoint-online-top-10.aspx"&gt;What's new in SharePoint Online-top 10&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;This article focuses on the coming upgrade experience for existing SharePoint Online customers. New customers will receive these features without any effort on their part.&lt;/p&gt;
&lt;h3&gt;What to expect during upgrade&lt;/h3&gt;
&lt;ul class="unIndentedList"&gt;
&lt;li&gt;Office 365 customers will be notified approximately four weeks prior to their upgrade and will have the opportunity to postpone for a minimum of two months.&lt;/li&gt;
&lt;li&gt;Review &lt;a target="_blank" href="http://blogs.office.com/b/sharepoint/archive/2013/04/02/what-s-new-in-sharepoint-online-top-10.aspx"&gt;What's new in SharePoint Online-top 10&lt;/a&gt; to start planning how your company will take advantage of the new SharePoint Online capabilities soon to be at your fingertips.&lt;/li&gt;
&lt;li&gt;Evaluate whether content and sites are old or unused, and if so, consider removing content or even whole site collections that are no longer necessary.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can learn about all the Office 365 service upgrade options at the broader &lt;a target="_blank" href="http://community.office365.com/en-us/wikis/upgrade/service-upgrade-experience.aspx"&gt;Office 365 Service Upgrade Center&lt;/a&gt;, including what you need to know about Exchange Online, Lync Online and Office client.&lt;/p&gt;
&lt;h3&gt;Test, upgrade, enjoy&lt;/h3&gt;
&lt;p&gt;The new SharePoint Online experience awaits you. Please take time to review the available documentation and the suggested steps to ensure a seamless transition for your company. Make sure you build in the right amount of time to test the new capabilities and look and feel before committing to it. &lt;/p&gt;
&lt;p&gt;You are more in control than ever during your upgrade experience. With a little effort, existing customers will be able to quickly determine the method that provides the right level of testing, allowing you to quickly move to the latest Office 365 has to offer. Let us know via the &lt;a target="_blank" href="http://community.office365.com/"&gt;Office 365 Community&lt;/a&gt; forums how you are doing and what we can do to help.&lt;/p&gt;
&lt;p&gt;Visit &lt;a target="_blank" href="http://community.office365.com/en-us/blogs/office_365_technical_blog/archive/2013/05/03/upgrading-to-the-new-sharepoint-online.aspx"&gt;Office 365 Community&lt;/a&gt; to read the complete blog post - including best practices for upgrade and some known issues.&lt;/p&gt;
&lt;p&gt;Thanks, &lt;br /&gt;The SharePoint Team&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=37147" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author><category term="SharePoint 2013" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+2013/default.aspx" /><category term="SharePoint Online" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+Online/default.aspx" /><category term="upgrade" scheme="http://blogs.office.com/b/sharepoint/archive/tags/upgrade/default.aspx" /></entry><entry><title>Webinar: A beginner's guide to SharePoint Online</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/05/03/office-15-minute-webinar-a-beginners-guide-to-sharepoint.aspx" /><id>/b/sharepoint/archive/2013/05/03/office-15-minute-webinar-a-beginners-guide-to-sharepoint.aspx</id><published>2013-05-03T18:08:00Z</published><updated>2013-05-03T18:08:00Z</updated><content type="html">&lt;p&gt;Office 365 for business allows small and large companies to use the power of SharePoint Online. In this week&amp;rsquo;s webinar, you&amp;rsquo;ll learn some of the basics and we'll answer your questions. &lt;/p&gt;
&lt;p&gt;&lt;iframe width="640" frameborder="0" src="http://www.youtube.com/embed/zaek6P6SDqg" height="360"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What you will learn at Tuesday's webinar&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Logging on the first time &lt;/li&gt;
&lt;li&gt;What&amp;rsquo;s that there? A look around &lt;/li&gt;
&lt;li&gt;Where can I put my stuff? &lt;/li&gt;
&lt;li&gt;Sites: for your company and your customer &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;References for this webinar&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://office.microsoft.com/en-us/business/"&gt;Office 365 for business&lt;/a&gt; (includes SharePoint) 
&lt;ul&gt;
&lt;!--EndFragment--&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="http://office.com/redir/HA104030990.aspx"&gt;Video training courses for SharePoint&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="http://office.com/redir/HA010378184.aspx"&gt;What is SharePoint?&lt;/a&gt; (article)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://office.com/redir/HA102818409.aspx"&gt;Get started with Office 365 business&lt;/a&gt; (video)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://office.com/redir/HA103105947.aspx"&gt;Start using SharePoint sites, SkyDrive Pro, and Newsfeeds&lt;/a&gt;&amp;nbsp;(video &amp;amp; links)&amp;nbsp;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://office.com/redir/FX103995410.aspx"&gt;Set up Office 365 for your business&lt;/a&gt; (site) &lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.office.com/b/sharepoint/archive/2013/04/02/what-s-new-in-sharepoint-online-top-10.aspx"&gt;What&amp;rsquo;s new with SharePoint, a top 10&lt;/a&gt; (blog post) &lt;/li&gt;
&lt;li&gt;New &lt;a href="http://blogs.office.com/b/sharepoint/archive/2013/03/06/out-and-about-new-sharepoint-mobile-offerings.aspx"&gt;SharePoint mobile offerings&lt;/a&gt; (blog post) &lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.contosobistro.com/"&gt;Sample SharePoint consumer site&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;&lt;a href="http://office.com/HA103730801.aspx"&gt;SharePoint Online for small businesses&lt;/a&gt;&amp;nbsp;(index of articles)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://office.com/HA103047257.aspx"&gt;SharePoint Online for midsize/enterprise&lt;/a&gt;&amp;nbsp;(index of articles)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Go to &lt;a href="http://aka.ms/offweb"&gt;http://aka.ms/offweb&lt;/a&gt; for more information on how to join the series. &lt;/p&gt;
&lt;p&gt;&lt;em&gt;--Doug Thomas&lt;/em&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=37062" width="1" height="1"&gt;</content><author><name>Doug T.</name><uri>http://blogs.office.com/members/Doug-T_2E00_/default.aspx</uri></author><category term="office webinars" scheme="http://blogs.office.com/b/sharepoint/archive/tags/office+webinars/default.aspx" /></entry><entry><title>Dialysis services provider adopts business portal to visualize SAP data</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/04/22/dialysis-services-provider-adopts-business-portal-to-visualize-sap-data.aspx" /><id>/b/sharepoint/archive/2013/04/22/dialysis-services-provider-adopts-business-portal-to-visualize-sap-data.aspx</id><published>2013-04-22T17:00:00Z</published><updated>2013-04-22T17:00:00Z</updated><content type="html">&lt;p&gt;Headquartered in Bad Homburg, Germany, Fresenius Medical Care is one of the world's leading providers of products and services for individuals undergoing dialysis treatments. The company runs a network of more than 3,000 dialysis clinics around the world and treats more than 250,000 patients each year.&lt;/p&gt;
&lt;p&gt;The company had been using Microsoft SharePoint Server 2010 since 2010. In April 2012, the Fresenius Medical Care Global Manufacturing Operations adopted SharePoint 2013 with a long-term vision to migrate all SharePoint 2010 dashboards and use SharePoint 2013 as the central collaboration and social system. &lt;/p&gt;
&lt;p&gt;The company sought a collaboration solution that would interoperate easily with Microsoft Office applications, streamline permissions management, and provide access to corporate resources from any browser or device. Fresenius Medical Care wanted also to improve document management. "We were using IBM Lotus Notes and Lotus Quickr to share documents, but it lacked document control features," says Helge Hoehn, Senior Expert SharePoint and Project Manager at Fresenius Netcare, the IT service provider for Fresenius Medical Care. "We needed easier ways for teams to collaborate."&lt;br /&gt;&lt;br /&gt;To test importing production data from the SAP BW, the company conducted a pilot program with SharePoint 2013. The pilot was designed to deliver highly secure business intelligence reports to the company's executive team. After it installed the Windows Server 2008 R2 operating system on a virtual machine, the company migrated its SharePoint 2010 dashboards to SharePoint 2013 in a virtual environment and tested the site.&lt;/p&gt;
&lt;p&gt;By adopting SharePoint 2013, Fresenius Medical Care Global Manufacturing Operations provides executives with dynamic data visualizations, gives employees access from almost anywhere, increases productivity, and solves permissions challenges. "SharePoint 2013 is one of the best business solutions I've ever encountered," says Hoehn. "It's easy to work with and it interoperates well with other Microsoft technologies. You can use it to manage various business needs, from collaboration to business intelligence."&lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://aka.ms/n3lsjm"&gt;Learn more&lt;/a&gt; about how Fresenius Medical Care uses SharePoint 2013&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=37003" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author><category term="SharePoint 2013" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+2013/default.aspx" /><category term="Stories" scheme="http://blogs.office.com/b/sharepoint/archive/tags/Stories/default.aspx" /></entry><entry><title>United Airlines reduces web content administration from months to hours with enterprise solution</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/04/17/united-airlines-reduces-web-content-administration-from-months-to-hours-with-enterprise-solution.aspx" /><id>/b/sharepoint/archive/2013/04/17/united-airlines-reduces-web-content-administration-from-months-to-hours-with-enterprise-solution.aspx</id><published>2013-04-17T17:00:00Z</published><updated>2013-04-17T17:00:00Z</updated><content type="html">&lt;p&gt;Based in Chicago, Illinois, United is one of the largest airlines in the world. To improve enterprise content management (ECM), United wanted to build communities around the products and services it delivers to customers. The airline initially deployed Microsoft Office SharePoint Server 2007 and subsequently migrated to SharePoint Server 2010, which United developed into an enterprise platform for ECM and e-discovery, co-locating approximately 1 terabyte of content for the enterprise. In 2012, the airline deployed SharePoint Server 2013 for a variety of projects-including a service catalog that 87,000 employees rely on to search for and order products from the IT department. By using SharePoint Server 2013, United has also simplified content management-the amount of time required to enter a new item into the catalog has plummeted from two months to a few hours.&lt;/p&gt;
&lt;p&gt;&lt;iframe scrolling="no" width="478" frameborder="0" src="http://www.microsoft.com/casestudies/video/Embed.aspx?fr=4000030871" height="359"&gt;&lt;/iframe&gt;&lt;/p&gt;
&lt;p&gt;See more &lt;a href="http://office.microsoft.com/en-us/sharepoint/sharepoint-customer-stories-collaboration-software-reviews-FX103789449.aspx"&gt;SharePoint customer stories&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=36850" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author><category term="SharePoint 2013" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+2013/default.aspx" /><category term="video" scheme="http://blogs.office.com/b/sharepoint/archive/tags/video/default.aspx" /><category term="Stories" scheme="http://blogs.office.com/b/sharepoint/archive/tags/Stories/default.aspx" /><category term="wcm" scheme="http://blogs.office.com/b/sharepoint/archive/tags/wcm/default.aspx" /><category term="web content management" scheme="http://blogs.office.com/b/sharepoint/archive/tags/web+content+management/default.aspx" /></entry><entry><title>Use cross-site publishing to set up a product-centric website in SharePoint Server 2013</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/04/12/use-cross-site-publishing-to-set-up-a-product-centric-website-in-sharepoint-server-2013.aspx" /><id>/b/sharepoint/archive/2013/04/12/use-cross-site-publishing-to-set-up-a-product-centric-website-in-sharepoint-server-2013.aspx</id><published>2013-04-12T16:00:00Z</published><updated>2013-04-12T16:00:00Z</updated><content type="html">&lt;p&gt;&lt;em&gt;Bella Engen is a Technical Writer on the SharePoint User Content Publishing team, focused on search-driven experiences.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Cross-site publishing is a new publishing method in SharePoint Server 2013 that can help streamline the publishing process in your organization, and at the same time reduce costs associated with maintaining and updating your website. &lt;/p&gt;
&lt;p&gt;By combining cross-site publishing with SharePoint search features, you can reduce the number of pages needed to maintain your website, and gain flexibility in how content is presented to your customers.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;In a nutshell, cross-site publishing simplifies the authoring experience by separating the process of how content is authored from the process of how content is displayed. SharePoint search features enable you to add user-specific behavior to your website, such as displaying different content to different customer groups, or displaying recommendations based on user behavior.&lt;/p&gt;
&lt;p&gt;In a blog series on the &lt;a target="_blank" href="http://blogs.technet.com/b/tothesharepoint/archive/tags/Web+content+management/"&gt;SharePoint IT Pro blog&lt;/a&gt;, you can learn how you can use SharePoint Server 2013 to set up a website that is based on product catalog data. The blog posts describe the different functionalities that are involved when setting up such a site, and show you step-by-step how the features are configured.&amp;nbsp;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;To demonstrate how it all comes together, data from a fictitious company is used. The blog posts use several screenshots and diagrams to explain everything from how the cross-site publishing feature works, to how you can use search features to influence how product data is displayed to visitors on a site.&lt;/p&gt;
&lt;p&gt;To give you an idea of what type of site this blog series describes, here are a few screenshots of the final website:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/1362.image_2D00_1.png" border="0" /&gt;&lt;/p&gt;
&lt;p&gt;Visit the "How to set up a product-centric website in SharePoint Server 2013" &lt;a target="_blank" href="http://blogs.technet.com/b/tothesharepoint/archive/2013/02/14/how-to-set-up-a-product-centric-web-site-in-sharepoint-2013.aspx"&gt;blog series overview page&lt;/a&gt; for the complete list of current and upcoming posts. &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=36782" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author><category term="How-to" scheme="http://blogs.office.com/b/sharepoint/archive/tags/How_2D00_to/default.aspx" /><category term="wcm" scheme="http://blogs.office.com/b/sharepoint/archive/tags/wcm/default.aspx" /><category term="web content management" scheme="http://blogs.office.com/b/sharepoint/archive/tags/web+content+management/default.aspx" /><category term="internet" scheme="http://blogs.office.com/b/sharepoint/archive/tags/internet/default.aspx" /><category term="SharePoint Server 2013" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+Server+2013/default.aspx" /></entry><entry><title>Yammer on Tour: Catch the working world at its turning point</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/04/04/yammer-on-tour-catch-the-working-world-at-its-turning-point.aspx" /><id>/b/sharepoint/archive/2013/04/04/yammer-on-tour-catch-the-working-world-at-its-turning-point.aspx</id><published>2013-04-04T16:00:00Z</published><updated>2013-04-04T16:00:00Z</updated><content type="html">&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We're bringing Yammer to a city near you with &lt;a target="_blank" href="https://sites.yammer.com/tour/faq/"&gt;Yammer on Tour&lt;/a&gt;--a free event series that brings together customers, partners and thought leaders for a unique opportunity to hear our vision for enterprise social, network with like-minded peers, and learn directly from customers how to usher in success in today's rapidly changing business environment.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Yammer on Tour features an action-packed half-day agenda including:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Keynotes and appearances by Yammer co-founder Adam Pisoni and customers&lt;/li&gt;
&lt;li&gt;Breakout sessions featuring product insights and expert discussions on enterprise social success&lt;/li&gt;
&lt;li&gt;Hands-on training and certification&lt;/li&gt;
&lt;li&gt;Networking and demos from Yammer and our partners in the expo hall&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Join us at Yammer on Tour in the following cities:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;New York--April 9: &lt;a target="_blank" href="https://sites.yammer.com/tour/new-york"&gt;Register today&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Chicago--April 16: &lt;a target="_blank" href="https://sites.yammer.com/tour/chicago"&gt;Register today&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Dallas--May 15: Registration opening soon&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We look forward to seeing you at one of these events! &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=36690" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author><category term="social computing" scheme="http://blogs.office.com/b/sharepoint/archive/tags/social+computing/default.aspx" /><category term="Yammer" scheme="http://blogs.office.com/b/sharepoint/archive/tags/Yammer/default.aspx" /><category term="news" scheme="http://blogs.office.com/b/sharepoint/archive/tags/news/default.aspx" /></entry><entry><title>What’s new in SharePoint Online–top 10</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/04/02/what-s-new-in-sharepoint-online-top-10.aspx" /><id>/b/sharepoint/archive/2013/04/02/what-s-new-in-sharepoint-online-top-10.aspx</id><published>2013-04-02T16:00:00Z</published><updated>2013-04-02T16:00:00Z</updated><content type="html">&lt;p&gt;&lt;i&gt;Mark Kashman (@mkashman) is a&amp;nbsp;SharePoint Senior Product Manager on the SharePoint team, focused on SharePoint Online. &lt;/i&gt;&lt;/p&gt;
&lt;p&gt;SharePoint Online (SPO) has a gaggle of new innovation and welcome improvements. The premier sharing service is updated with a new, fluid user interface, active personal file sharing, higher storage limits for both personal and team sites, a high-end cloud app development model, and more robust tooling for admins to more easily and effectively control their SPO environment. Everyone benefits from the new SharePoint Online! &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Users&lt;/b&gt; benefit with new ways to share internally and externally and anonymously, in how they search and discover the right information and people and how they build sites and experiences in a more self-service fashion. &lt;/li&gt;
&lt;li&gt;&lt;b&gt;Project managers&lt;/b&gt; now have better ways to organize documents, project details and timelines.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Developers&lt;/b&gt; are no longer limited on the types of solutions they can deliver to the Office 365 cloud. &lt;/li&gt;
&lt;li&gt;&lt;b&gt;IT Professionals &lt;/b&gt;can more easily manage sites and permissions on behalf of their entire company.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This article will cover the top 10 new SPO innovations with a pointer at the end to the new SPO service description - home to all SharePoint features across all offerings (online and on-premises).&lt;/p&gt;
&lt;h2&gt;1. New user interface (UI)&lt;/h2&gt;
&lt;p&gt;The entire UI across Office 365 on down to SharePoint Online has been reimagined. It's easy on the eyes, easy to navigate and easy to accomplish common tasks. And it's snappy performance will delight! Let's take a look at a few examples of the new UI improvements:&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/5810.image_2D00_1.png" border="1" /&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;A sample site showing the UI of a rich team site template with an embedded PowerPoint Web App, a rollup Top-Rated Doc list, a KPI chart and the new surrounding navigation and share/follow/sync buttons.&lt;/i&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Drag and drop.&lt;br /&gt;&lt;/b&gt;Now you can &lt;a href="http://office.microsoft.com/en-us/sharepoint-help/redir/HA102803549.aspx?CTT=5&amp;amp;origin=HA102785547"&gt;upload documents&lt;/a&gt;, pictures, and other types of files to your site by dragging them from your computer to a library on your site, such as Documents or your SkyDrive Pro library. &lt;/li&gt;
&lt;/ul&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/8836.image_2D00_2.png" border="1" /&gt;&lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;&lt;i&gt;Dragging and dropping a file from the desktop straight into a document library in the browser.&lt;/i&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;On-hover.&lt;/b&gt; Use this new callout feature with any document in a library or from within search results to see a set of rich commands and contextual information. You can open, share, or follow documents, view a document preview, and use &lt;a href="http://technet.microsoft.com/en-us/library/cb36484c-0e8f-480e-be88-5daa8bf2d47d#bkmk_DeepLink"&gt;Deep links&lt;/a&gt; to jump directly to content inside a document. &lt;/li&gt;
&lt;/ul&gt;&lt;p style="padding-left: 30px;"&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/8037.image_2D00_3.png" border="1" /&gt;&lt;/p&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;i&gt;On-hover from a document library showing a preview into a Word document using the embedded Word Web App. Note the ability to Share and Follow from the same on-hover card.&lt;br /&gt;&lt;/i&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;Touch.&lt;/b&gt; A key investment area across all of the products in the new Office, large touch targets make it easy for you to filter, navigate, and work with documents--increasing accessibility across devices, big and small.&lt;b&gt;&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;aSyncronous calls.&lt;/b&gt; Refresh the content you want to focus on. List and library navigation and filtering means fewer full-page refreshes--less time waiting, more time doing.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Office Web Apps edit.&lt;/b&gt; Now available to everyone--even those you invite via External Sharing can edit Office documents on your behalf in the browser. You can know with confidence that your collaborators have the best tools to help you build your business. &lt;/li&gt;
&lt;li&gt;&lt;b&gt;Universal Office 365 top navigation.&lt;/b&gt; Now you can find your way without having to remember (or bookmark) how to get there. And it's all in a simplified, single browser experience--no pop ups, no feeling lost.&lt;/li&gt;
&lt;/ul&gt;
&lt;p style="padding-left: 30px;"&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/510x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/2514.image_2D00_4.png" border="1" /&gt;&lt;/p&gt;
&lt;p style="PADDING-LEFT: 30px"&gt;&lt;i&gt;The new Office 365 top navigation makes it simple to navigate from your Outlook email into SkyDrive Pro, your new cloud storage for work.&lt;/i&gt;&lt;/p&gt;
&lt;h2&gt;2. SkyDrive Pro&lt;/h2&gt;
&lt;p&gt;SkyDrive Pro is cloud storage for employees that is now a core part of SharePoint Online.&amp;nbsp; SkyDrive Pro is intended to&amp;nbsp; meet your usage criteria and provide organizational control. Everyone who has use rights to a Personal Site (what used to be called "My Sites") gets SkyDrive Pro, along with 7GB of personal storage quota--that's increased from 500MB. Personal sites are available within more Office 365 plans than before (review the new &lt;a target="_blank" href="http://office.microsoft.com/en-us/business/compare-office-for-business-plans-FX102918419.aspx"&gt;Office 365 plan comparison site&lt;/a&gt;).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/7762.image_2D00_5.png" border="1" /&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;A view of the SkyDrive Pro library within Office 365, when accessed with an Internet browser.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;With SkyDrive Pro, employees can: &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Sync and share documents&lt;/li&gt;
&lt;li&gt;Collaborate on documents with individuals both inside and outside of their organization &lt;/li&gt;
&lt;li&gt;Access content and information anywhere and from a multitude of devices&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;... while admins can:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Control content lifecycle and versioning&lt;/li&gt;
&lt;li&gt;Protect against data loss and perform eDiscovery&lt;/li&gt;
&lt;li&gt;Manage access permissions&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Learn more &lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepoint-server-help/what-is-skydrive-pro-HA102822076.aspx?CTT=1"&gt;here&lt;/a&gt; today about SkyDrive Pro.&lt;/p&gt;
&lt;p&gt;And by the end of June 2013, you will be able to access your SkyDrive Pro in even more places with native mobile client apps for Windows 8 and iOS. &lt;a target="_blank" href="http://blogs.office.com/b/sharepoint/archive/2013/03/06/out-and-about-new-sharepoint-mobile-offerings.aspx"&gt;SkyDrive Pro access is already embedded within Windows Phone in the Office Hub.&lt;/a&gt; &lt;/p&gt;
&lt;h1&gt;3. Yammer &lt;/h1&gt;
&lt;p&gt;We are very excited about Yammer! Yammer is becoming the social layer across many Microsoft products. This is most prevelant with SharePoint and CRM today--it's our big bet for enterprise social. Office 365 is our next step - Yammer will be included with a SharePoint Online or Office 365 investment (&lt;a target="_blank" href="https://www.yammer.com/about/pricing/"&gt;compare plans&lt;/a&gt;). We &lt;a target="_blank" href="http://blogs.office.com/b/sharepoint/archive/2013/03/19/yammer-and-sharepoint-enterprise-social-roadmap-update.aspx"&gt;recently announced&lt;/a&gt; more details on what will be available and when. &lt;/p&gt;
&lt;p&gt;As you start to see deeper and deeper connections, you'll discover all the Yammer goodness:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Unique adoption model appeals directly to end users and makes it easy for organizations to become social "instantly" &lt;/li&gt;
&lt;li&gt;Utilize the power of Groups (internal and external) and Feeds&lt;/li&gt;
&lt;li&gt;Create notes and discussions around your files&lt;/li&gt;
&lt;li&gt;Use powerful administration tools to help brand, analyze and manage your company's social intellectual property (IP). &lt;/li&gt;
&lt;li&gt;Access Yammer across multiple browsers, operating systems and devices&lt;/li&gt;
&lt;li&gt;Discover &lt;a target="_blank" href="https://www.yammer.com/product/feature-list/"&gt;all the features&lt;/a&gt; Yammer offers &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/5661.image_2D00_6.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;A view on the Yammer home page. You see the main feed with posts, files and discussions, plus navigation to people and groups.&lt;/i&gt;&lt;/p&gt;
&lt;h3&gt;A note on the SharePoint Newsfeed&lt;/h3&gt;
&lt;p&gt;In the short term, the SharePoint Newsfeed will continue to be the default social experience in Office 365, but the option to replace it with Yammer will be a valuable first step. &lt;/p&gt;
&lt;p&gt;The Newsfeed page provides quick access to the lists of people, documents, sites, and tags you're following. If you're familiar with popular social networking sites, you'll feel right at home using the new microblogging features, which allow you to engage in conversations in your Newsfeed.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/7558.image_2D00_7.png" border="1" /&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;A user view of the Newsfeed shows the people Garth is following and their activities within SharePoint.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;The most common actions you can perform within the Newsfeed are:&lt;/p&gt;
&lt;ul type="disc"&gt;
&lt;li&gt;Post information and ideas to the company newsfeed or site newsfeed&lt;/li&gt;
&lt;li&gt;@mention colleagues and include #hashtags&lt;/li&gt;
&lt;li&gt;"Like" posts, include pictures, videos, links to documents, and web URLs &lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepoint-help/results.aspx?qu=sharepoint+2013+newsfeed&amp;amp;ex=1&amp;amp;origin=HA102785948"&gt;Learn more&lt;/a&gt; on Office.com about all the Newsfeed offers.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;No matter which service you select, you can access Yammer or your SharePoint Newsfeed on the go with native client apps:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Visit the &lt;a target="_blank" href="https://www.yammer.com/product/features/accessing-yammer/"&gt;Accessing Yammer&lt;/a&gt; page to discover how Yammer is where you need it, when you need it.&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://blogs.office.com/b/sharepoint/archive/2013/03/06/out-and-about-new-sharepoint-mobile-offerings.aspx"&gt;Learn more&lt;/a&gt; about SharePoint Newsfeed and other mobile offerings. &lt;/li&gt;
&lt;li&gt;And if you are an on-premises SharePoint customer who cannot use Yammer, please review the guidance toward the end of the "&lt;a target="_blank" href="http://blogs.office.com/b/sharepoint/archive/2013/03/19/yammer-and-sharepoint-enterprise-social-roadmap-update.aspx"&gt;Yammer and SharePoint: Enterprise social roadmap update&lt;/a&gt;" blog post.&lt;/li&gt;
&lt;/ul&gt;
&lt;h1&gt;4. Guest Links&lt;/h1&gt;
&lt;p&gt;External Sharing just got better. Now you can share sites, folders, and individual documents with the new &lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepoint-help/redir/HA102894713.aspx?CTT=5&amp;amp;origin=HA102785547"&gt;Guest Links&lt;/a&gt; feature that enables users to invite others from inside and outside the company to collaborate on individual Office documents. To share and collaborate, guests enter a username and password, or they can use &amp;nbsp;anonymous co-authoring. &amp;nbsp;In addition, you can control the contributions by the permission level you choose to grant. You might want some users to have Read permission, while others have permission to Write. You can also revoke sharing at any time. &lt;/p&gt;
&lt;p&gt;For fun, try out this Guest Link I created - it'll take you to a Word document I put together with &lt;a target="_blank" href="https://spreviewer-my.sharepoint.com/personal/mark_spreviewer_onmicrosoft_com/_layouts/15/guestaccess.aspx?guestaccesstoken=1Ilgw5oPQ4bRFj8mlfHynn4BzWC6PbymcnnxakguaR0%3d&amp;amp;docid=0fbe58b53a7534c7ba1f4459293481359"&gt;one of my favorite cloud jokes&lt;/a&gt;. &lt;b&gt;@mkashman&lt;/b&gt; if you know the answerJ.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/4118.image_2D00_8.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;Sharing a single document, showing the new Sharing dialog to invite new users to collaborate. You can also control whether they can view or edit, and whether you require sign-in.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; Based on direct customer feedback, we also simplified the new external invitee sign-in experience so your invited external users do not get lost in the process.&lt;/p&gt;
&lt;h1&gt;5. New and improved Public Website&lt;/h1&gt;
&lt;p&gt;The public website in SharePoint Online includes a new design and new features for customizing the site and individual pages. Because the website is built on the SharePoint platform, you now get publishing capabilities, more Web parts (social media add-ins, blogging and commenting, new &lt;a target="_blank" href="http://office.microsoft.com/en-us/store/apps-for-sharepoint-FX102804987.aspx"&gt;Apps for SharePoint from the Office Store&lt;/a&gt;), SEO property options and advanced design options. Now you also can disable the public website so that it's not visible on the Internet until you choose it to be. This is useful when the site is under construction or in rare cases when the website must be taken offline. Simply enable your website when you're ready for it to go back online. &lt;/p&gt;
&lt;p&gt;If you want to completely redesign the website from scratch or use a design you already have, you can use the &lt;a target="_blank" href="http://blogs.office.com/b/sharepoint/archive/2013/02/25/create-your-online-brand-with-sharepoint-2013-and-the-web-technologies-you-already-know.aspx"&gt;Design Manager&lt;/a&gt;. This set of features lets you turn a conventional HTML web page into a SharePoint master page with page layouts, mobile views, cascading style sheets, and more. You can use your own website editing tools (like Adobe DreamWeaver&lt;sup&gt;TM&lt;/sup&gt;) to do the design work before uploading the files to SharePoint Online's Design Manager--no need to be a SharePoint expert.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/3250.image_2D00_9.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;Sample website designed and hosted in SharePoint Online - check this sample live now: &lt;/i&gt;&lt;a target="_blank" href="http://www.contosobistro.com/"&gt;&lt;i&gt;http://www.contosobistro.com/&lt;/i&gt;&lt;/a&gt;&lt;i&gt; &lt;/i&gt;&lt;/p&gt;
&lt;p&gt;To learn more, view the &lt;a target="_blank" href="http://office.com/VA102801173.aspx"&gt;Get Started with your public website&lt;/a&gt; video and read the &lt;a target="_blank" href="http://office.com/HA102801171.aspx"&gt;Get started with your public website&lt;/a&gt; article.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;
&lt;h1&gt;6. eDiscovery&lt;/h1&gt;
&lt;p&gt;SharePoint Online brings improved ways to help you protect your business with eDiscovery. From a single eDiscovery management site, you can add sources and create queries to discover content across sites and document libraries, mailboxes and discussions and keep them in-place --in SharePoint Online, in Exchange Online and in Lync Online. For example, you can conduct your legal case or audit with powerful search-driven tools from within the SharePoint Online based eDiscovery Center. You can then preserve all items in-place, retain items that matched the queries, and export items to the industry standard format--the Electronic Discovery Reference Model (EDRM) specification. Each legal case or audit is a collaboration site that includes a document library that you can use to store documents related to the management of the case. For information about working with cases, see &lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepoint-help/redir/HA102893857.aspx?CTT=5&amp;amp;origin=HA102785547"&gt;Plan and manage eDiscovery cases&lt;/a&gt;. When the case is closed, all of the holds associated with the case are released. For information about eDiscovery queries, see &lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepoint-help/redir/HA102922715.aspx?CTT=5&amp;amp;origin=HA102785547"&gt;Create and run eDiscovery queries&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/3817.image_2D00_10.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;An eDiscovery site showing query results from SharePoint Online and Exchange Online, plus the on-hover experience on a discovered item.&lt;/i&gt;&lt;/p&gt;
&lt;h1&gt;7. Site Mailbox&lt;/h1&gt;
&lt;p&gt;When two world-class services come together, you get the benefit of both worlds. Combine SharePoint Online's document management strengths with Exchange Online's powerful email solutions and you get Site Mailboxes - powerful project-based "inboxes" that help teams organize project-related content and email into a single view, while everything is preserved in its original location as documents in SharePoint Online and email in Exchange Online. &lt;/p&gt;
&lt;p&gt;You can access Site Mailboxes through Outlook 2013 as well as SharePoint Online. If you don't have Outlook 2013, you can view the same content from the SharePoint Online site that loads in a site-specific Outlook Web App. Only those with permission to the project site can view the Site Mailbox. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/6138.image_2D00_11.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;A Site Mailbox opened from a SharePoint Online project site.&lt;br /&gt;&lt;/i&gt;&lt;i&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/6254.image_2D00_12.png" border="1" /&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;The same Site Mailbox accessed in Outlook 2013 (&lt;b&gt;Note:&lt;/b&gt; "SharePoint Reviewer's Team Site" in Outlook's left-side folder pane is the Site Mailbox).&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://office.microsoft.com/en-us/results.aspx?qu=sharepoint%20site%20mailbox&amp;amp;ex=2"&gt;Learn more&lt;/a&gt; about Site Mailboxes on Office.com Help.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;
&lt;h1&gt;8. Enterprise search&lt;/h1&gt;
&lt;p&gt;Quickly identify if you've found the right person or document before investing time "searching beyond the search results." Users can move their cursor over a search result, and with on-hover, they can get a deep, rich look into the item without opening it. The on-hover displays a person's contact card and/or a document preview by using the embedded Office Web Apps (for example, scroll through a Word document or click through slides in a PowerPoint deck). You will also see Deep Links within the on-hover card based on your search keywords - these take you directly to corresponding pages and slides deep inside your content.&lt;/p&gt;
&lt;p&gt;At the core architectural layer, SharePoint Online search has greatly improved the relevancy of search results. What you get back is more assurance of finding what you are looking for. And SharePoint Online search is more programmable that ever. You can control the user's experience with powerful metadata-driven results and filtering options. Plus the overall Search center is extensible to your business preferred layout and design.&lt;/p&gt;
&lt;p&gt;The more you use the system, Search powers tailored suggestions for people, sites and content you may also be interested in.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/8611.image_2D00_13.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;Rich search experience with refiners, on-hover preview, deep links and more.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Hybrid search&lt;/b&gt;&lt;br /&gt;Gone are the days of CRI--content repository isolation. Users working across Office 365 and on-premises environments will be able to obtain search results that include content from both locations. A hybrid SharePoint environment is composed of a SharePoint Server, typically deployed on-premises, and the newest version of Microsoft Office 365 Enterprise which includes the new SharePoint Online. A hybrid environment may be configured to provide one of several levels of interoperability, depending on the purpose &amp;nbsp;- whether it's one direction or bi-directional in which an on-premises SharePoint Server 2013 farm and SharePoint Online access search results information from each other. And as mentioned above, the search experience is extensible--in relation to hybrid search, you can design the look and feel around the source of where content lives.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/0842.image_2D00_14.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;The above graphic shows a programmatic result block an admin can configure to distinguish results coming from both SharePoint Online and/or SharePoint on-premises.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/ee667266.aspx"&gt;Learn more&lt;/a&gt; about all the new Search offerings in SharePoint. &lt;/p&gt;
&lt;p&gt;Read about the &lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/jj838715.aspx"&gt;breadth of hybrid scenarios&lt;/a&gt; between SharePoint Online and SharePoint on-premises, plus a number of new &lt;a target="_blank" href="http://go.microsoft.com/fwlink/p/?LinkId=254921"&gt;hybrid whitepapers&lt;/a&gt;.&lt;/p&gt;
&lt;h1&gt;9. Cloud app model (CAM)&lt;/h1&gt;
&lt;p&gt;Hello app, nice to meet you. It's so nice that now you can run where apps scale best--on services like Windows Azure. Sandbox Solutions, site collection level custom applications, still apply, but you are no longer limited to them. Now you can build or buy powerful solutions that enable richer scenarios "beyond the sandbox."&lt;/p&gt;
&lt;p&gt;The Cloud App Model in SharePoint Online enables you to build apps for SharePoint by using familiar tools and a rich set of features. For the developer and IT Pro audiences, SharePoint Online in Office 365 now includes this new programming model for the development, installation, management, and use of apps. Users can discover and download apps from the SharePoint Store, or from their organization's own Corporate Catalog. The SharePoint Online admin can use the settings in the SharePoint admin center to manage the App Catalog, get apps from the SharePoint Store, manage licenses for apps purchased from the SharePoint Store, and monitor apps in use. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/2570.image_2D00_15.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;App for SharePoint programming model&lt;/i&gt; &lt;/p&gt;
&lt;p&gt;Visit &lt;a target="_blank" href="http://dev.office.com/"&gt;http://dev.office.com/&lt;/a&gt; to further explore the new Cloud app model.&lt;/p&gt;
&lt;p&gt;To get started exploring third-party apps, &lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepoint-help/redir/HA102897470.aspx?CTT=5&amp;amp;origin=HA102785547"&gt;visit the Office Store and review the Apps for SharePoint.&lt;/a&gt;&lt;i&gt;&lt;/i&gt;&lt;/p&gt;
&lt;h1&gt;10. PowerShell for SPO&lt;/h1&gt;
&lt;p&gt;What's better than doing one thing at a time? That's right: bulk operations. Now, in SharePoint Online, you can chew Chewing gum, walk, AND script with PowerShell all at the same time!&lt;/p&gt;
&lt;p&gt;SharePoint Online Administrators now can use Windows PowerShell to manage their subscription. Connect to SharePoint Online from your desktop and remotely create new site collections, perform upgrade activities, add and remove SharePoint Online users and groups, repair sites, and recycle bin management. These kinds of management tasks can be scripted, automated and performed in bulk to save you time and minimize errors caused by common repetition mistakes. For more information, see &lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepoint-help/redir/HA102915057.aspx?CTT=5&amp;amp;origin=HA102785547"&gt;Introduction to the SharePoint Online Management Shell&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/8306.image_2D00_16.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;The SharePoint Online Management Shell showing results from a Get-SPOSite cmdlet executed against a SharePoint Online tenancy.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;To make the new SharePoint Online Management Shell more accessible to power users - people not fluent in deep IT management - we've developed a Web-based companion tool called the &lt;a target="_blank" href="http://office.microsoft.com/en-us/sharepoint-help/redir/XT102915317.aspx?CTT=5&amp;amp;origin=HA102915057"&gt;Windows PowerShell Command Builder Tool&lt;/a&gt;. It helps you quickly understand and use Windows PowerShell cmdlets designed for SharePoint Online. If you want to create a site, use the Command Builder tool to create a cmdlet, and you can create a site from the command line, instead of stepping through several pages in the user Interface.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/6014.image_2D00_17.png" border="1" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;The Windows PowerShell for SharePoint Command Builder showing an example command being generated to perform a New-SPOSite cmdlet.&lt;/i&gt;&lt;/p&gt;
&lt;h1&gt;And one for good luck: 11. Storage and file upload improvements&lt;/h1&gt;
&lt;p&gt;Limits are made to be exceeded. We received a lot of great feedback during the Office 365 Preview and were able to improve a great number of common requests. Users' storage, SkyDrive Pro, has been raised to 7GB - up from 500MB. Site Collections limits have been raised - 3,000, up from 300. And we've designed for file upload sizes up to 2GB. The complete storage story is shown in the below table across the primary Office 365 plans, plus additional row items to help best plan for your use and migration of SharePoint Online.&lt;/p&gt;
&lt;p&gt;&lt;i&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/550x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/8358.image_2D00_18.png" border="0" /&gt;&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;i&gt;SharePoint Online storage table, all maintained &lt;/i&gt;&lt;a target="_blank" href="http://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/sharepoint-online-software-boundaries-and-limits-HA102694293.aspx"&gt;&lt;i&gt;here&lt;/i&gt;&lt;/a&gt;&lt;i&gt; with real-time updates regarding numerous SharePoint Online boundaries and limits.&lt;/i&gt;&lt;/p&gt;
&lt;h1&gt;Tell us what you think about the new SharePoint Online&lt;/h1&gt;
&lt;p&gt;Office 365 constantly evolves. Microsoft takes feedback seriously and strives to bring you technology that meets and exceeds your requirements - and we hope increases your "wow" experience! For more information beyond these top new features, visit the &lt;a target="_blank" href="http://technet.microsoft.com/en-us/library/jj819267.aspx"&gt;new SharePoint Online service description&lt;/a&gt; where you can compare all new features across all Office 365 plans and SharePoint on-premises offerings.&lt;/p&gt;
&lt;p&gt;Try &lt;a target="_blank" href="http://office.microsoft.com/en-us/products/office-products-FX101825692.aspx?CTT=97"&gt;Office 365&lt;/a&gt; today, test out firsthand all that SharePoint Online now offers, and tell us what you think.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Mark Kashman (@mkashman) is a&amp;nbsp;SharePoint Senior Product Manager on the SharePoint team, focused on SharePoint Online.&lt;/em&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=36601" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author><category term="SharePoint 2013" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+2013/default.aspx" /><category term="Yammer" scheme="http://blogs.office.com/b/sharepoint/archive/tags/Yammer/default.aspx" /><category term="SharePoint Online" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+Online/default.aspx" /><category term="news" scheme="http://blogs.office.com/b/sharepoint/archive/tags/news/default.aspx" /></entry><entry><title>Law enforcement organization cuts costs and streamlines operations with SharePoint 2013</title><link rel="alternate" type="text/html" href="/b/sharepoint/archive/2013/03/25/law-enforcement-organization-cuts-costs-and-streamlines-operations-with-sharepoint-2013.aspx" /><id>/b/sharepoint/archive/2013/03/25/law-enforcement-organization-cuts-costs-and-streamlines-operations-with-sharepoint-2013.aspx</id><published>2013-03-25T17:00:00Z</published><updated>2013-03-25T17:00:00Z</updated><content type="html">&lt;p&gt;&lt;i&gt;Today's post is the latest in an ongoing series spotlighting success stories from SharePoint 2013 early adopters.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;img src="http://blogs.office.com/resized-image.ashx/__size/162x0/__key/CommunityServer-Blogs-Components-WeblogFiles/00-00-00-00-64/4251.Cambridgeshire_2D00_post.jpg" border="0" style="float: left;" /&gt;Cambridgeshire Constabulary replaces aging Lotus Notes environment with 40 Microsoft SharePoint 2013 portals&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The Cambridgeshire Constabulary, which provides law enforcement and public safety services for 800,000 residents in Cambridgeshire, England, started using Microsoft SharePoint 2013 in April 2012 to develop a cost-effective environment where employees can easily discover information, share documents, and manage data. &lt;/p&gt;
&lt;p&gt;To help lower its costs, the constabulary sought new policing tools for working collaboratively and sharing operational data with neighboring constabularies in Bedfordshire and Hertfordshire. For many years, the constabulary used Lotus Notes to manage internal data such as event orders, duty rosters, and other critical policing information. It also used Lotus Notes to manage criminal, public safety, and operations databases, some of which must be maintained for 25 years because of government regulations. &lt;/p&gt;
&lt;p&gt;"By replacing our Lotus Notes environment with SharePoint 2013, we make our police and business staff more efficient, reduce our IT management burden, and lower our costs," says Ian Bell, Head of Information and Communications Technology (ICT) at Cambridgeshire Constabulary. "With SharePoint 2013, people can work together to collect intelligence, complete investigations quickly, and provide effective public services." &lt;/p&gt;
&lt;p&gt;The Lotus Notes environment was expensive to maintain relative to the constabulary's updated IT infrastructure, which included Microsoft Office 2010, Microsoft Exchange Server 2010, and Microsoft Lync 2010. Constables and other employees could search only one Lotus Notes database at a time, and they often had to open more than a dozen databases before finding the information they needed. &lt;/p&gt;
&lt;p&gt;The organization is deploying up to 40 SharePoint 2013 portals and creating collaboration environments for new Police and Crime Commissioners, Cambridgeshire Council, and Hertfordshire and Bedfordshire constabularies. Employees can now take advantage of SharePoint 2013 functionality to: &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Maintain portals and manage enterprise content without relying on the organization's ICT team. &lt;/li&gt;
&lt;li&gt;Synchronize documents stored on their personal sites offline by using SkyDrive Pro in SharePoint 2013. &lt;/li&gt;
&lt;li&gt;Get consolidated search results from the entire Cambridgeshire environment with a single query.&lt;/li&gt;
&lt;li&gt;Use a SharePoint 2013 connector to return data from any Lotus Notes database. &lt;/li&gt;
&lt;li&gt;Collaborate with tools including blogs, wikis, personal and team sites, and integration with social media channels.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;By November 2013, the constabulary expects to deploy SharePoint 2013 to 2,400 internal employees and enable access to almost 10,000 users at Bedfordshire and Hertfordshire. "With SharePoint 2013, we can input information in one place," says Bell. "We can deliver that information to anyone in the organization, anytime, anywhere." &lt;/p&gt;
&lt;p&gt;&lt;a&gt;&lt;/a&gt;For more on how Cambridgeshire Constabulary is using SharePoint 2013, read the complete &lt;a target="_blank" href="http://www.microsoft.com/casestudies/Case_Study_Detail.aspx?CaseStudyID=710000001618"&gt;case study&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=36383" width="1" height="1"&gt;</content><author><name>SharePoint Team</name><uri>http://blogs.office.com/members/SharePoint-Team/default.aspx</uri></author><category term="SharePoint 2013" scheme="http://blogs.office.com/b/sharepoint/archive/tags/SharePoint+2013/default.aspx" /><category term="Customer Stories" scheme="http://blogs.office.com/b/sharepoint/archive/tags/Customer+Stories/default.aspx" /><category term="Stories" scheme="http://blogs.office.com/b/sharepoint/archive/tags/Stories/default.aspx" /></entry></feed>