Skip to main content

Sneek Peek with Joel Oleson

Connecting the Disconnected

Sneak Peek Event: Welcome to the New World of Business Collaboration with Microsoft SharePoint 2010

Guest Speaker: Joel Oleson, Industry Renowned SharePoint Evangelist.


When: Tuesday, March 23, 2010

Where: The Venue of Scottsdale
7117 E. 3rd Avenue
Scottsdale, AZ 85251

Time: 11:30 AM to 2:30 PM

SPACE IS LIMITED


Join industry renowned SharePoint Evangelist and frequent industry speaker, Joel Oleson, of Quest Software, for a candid and engaging thought leadership presentation on SharePoint 2010 the future of business collaboration.
Get the SharePoint 2010® product rundown from Microsoft, and how the platform can help your business:

• Collaborate and innovate. Organizational knowledge gets where it needs to go. With advanced social computing tools, you can build more flexibility into your business. Ideas cross-pollinate, sparking innovation, empowerment, and new perspectives.

• Intimate Integration with Office 2010 - The Office Ribbon user interface (UI) now in SharePoint, Easy use of content and data across client and server. In-context collaboration through the Microsoft Office Backstage, In Browser co-editing

• Gain business insights and act. People across your organization get the ability to monitor and analyze up-to-date information. They can make informed decisions and speed up response times, both of which can give your business a competitive edge.

• Cut Costs with a unified infrastructure
• Reduce risk. You control security levels and usage policies. Information is findable and useable by the right people, and content has policy and process attached.

Gain insight from Ensynch’s experts on best practices approaches for launching and maintaining a successful collaboration platform
• Deployment of SharePoint 2010
• Tips for transforming your existing SharePoint environment to SharePoint 2010
• User and organization wide adoption best practices
• How to prevent information chaos by implementing effective taxonomy and governance of information architecture

Comments

Popular posts from this blog

SharePoint 2013 - Simple Glossary using "HTML Form Web Part"

Introduction At some point you probably thought about incorporating glossary functionality as a part of a larger solution, or perhaps you were simply looking for providing a more intuitive way of filtering hundreds of items within a List or Library. Now there are countless web parts out there that you can either purchase or download from the SharePoint Store free of charge, and they all come with their own set of bells and whistles.  However, if you are looking at building one yourself, well look no further. To accomplish this we will need three major ingredients: SharePoint Page (either Wiki or Publishing will work) SharePoint List/Library with some content (Files/Items) HTML Form Web Part Let's Implement In this post I’m using a simple Wiki page, but you can also use a Publishing page as well.  We just need a canvas to display our glossary. I presume you already have a list or library that contains some content which is applicable to this concept.  I’m

SharePoint 2013 - Can't access the site externally in Internet Explorer ("Page cannot be displayed")

Synopsis Before we start talking about the problem let's understand the setup here.  We have a SharePoint 2013 intranet site that is also configured for access outside of the corporate network.  Employees use the same URL to visit the site both internally and externally via standard ports (80 and 443). Internal URL: http://sharepoint.domain.com Public URL: https://sharepoint.domain.com The site URL has been added to the Local Intranet zone in Internet Explorer for passing domain credentials. Alternate Access Mappings have been configured in such a way that if a user requests the site over HTTP they are automatically re-directed to HTTPS. Internal URL Zone Public URL for Zone https://sharepoint.domain.com Default https://sharepoint.domain.com http://sharepoint.domain.com Default https://sharepoint.domain.com Web application has been configured to use Kerberos protocol for authenticating incoming c

Remove Orphaned Web Parts - MissingWebPart

At some point you may have encountered an error like this while browsing through the SharePoint Health Analyzer or if you are attempting to test your content database (i.e., Test-SPContentDatabase) prior to mounting it. Message reads something like this: One caveat is that the log message never reveals the Location of the culprit web part.  Luckily we can utilize T-SQL to query the content database and reveal the location of the web part in question.   Query the Content Database To do this fire up the SQL Server Management Studio either locally from your machine or while logged on to the SQL Server back-end of your SharePoint farm, open up the new Query window and enter the following statement: USE < Content_Database_Name > SELECT AllDocs.SiteId,WebId, Webs.Title as 'Web Title', ListId, DirName,LeafName  FROM AllDocs    inner join AllWebParts on Alldocs.Id = AllWebParts.tp_PageUrlID  inner join Webs on Alldocs.WebId = webs.Id  WHERE AllWebParts.tp