Skip Ribbon Commands
Skip to main content
The Blue Monster
 

 User Groups

 
 Chicago SharePoint User Group
 Chicago .NET Users Group
 Chicago Windows User Group
 Chicago Visual Studio Team System User Group
 

 Midwest Bloggers

 
 Arbindo Chattopadhyay
 U.S. Midwest SharePoint Community
 Ram Gopinathan
 Larry Clarkin
 Kevin Hammond
 Dave Bost
 Angela Binkowski
 Andrew Ehrensing
 John West
Home
An occasional list of stuff
June 28
Office 2010 and SharePoint 2010 Service Pack 1 is out!

Get 'em here:

http://www.microsoft.com/download/en/search.aspx?q=office%202010%20service%20pack%201

 Update 6/30/2011 - If you are like me and want to clear up confusion on how all the various CUs and SPs for all the different SharePoint Editions and components inter-relate, check out this post by Jie Li:

http://blogs.msdn.com/b/opal/archive/2011/06/30/the-mystery-behind-sharepoint-2010-patching.aspx

June 16
ILTA SharePoint Symposium 2011 Recap

I am privileged to serve a vertical industry that has a vibrant organization that unites the information technology community across its members: The International Legal Technology Association.  http://www.iltanet.org/

Yesterday and today were the annual ILTA SharePoint Symposium event held in Downers Grove IL.  This was my second time attending and speaking at the event.  The emphasis on peer-to-peer presentations is a highlight for me.  It is always inspiring to see the ways that our customers are using our products to solve their business challenges.  What I especially like about ILTA is their focus on knowledge sharing across the community.

The audio of the sessions were recorded and will be posted soon. I think SharePoint practitioners across any other vertical industry will hear common threads of concerns, challenges and novel solutions. 

Update 6/24/2011 - Presentations and audio recordings are now posted HERE. (audio recordings are only available to ITLA members - login is required.)

March 20
SharePoint 2010 Capacity Planning Resources

There are some newly released documents that you should leverage as your reliance on SharePoint ramps up – especially for document management scenarios:

 
SharePoint Server 2010 performance and capacity test results and recommendations

September 23
Office Web Apps enhanced to support embedding
Today over on the Microsoft Office Blog (Office Web Apps reach 20 million: New features today + 7 more countries) a number of new features were announced.  Among the coolest are the new ability to embed PowerPoint and Excel files right into blog posts.
 
I would show you an example here, except that unfortunately, I can not.  The reason is that the embed technique relies on IFRAME tag, which the SharePoint blog post logic strips out of the blog post body for safety reasons.  This behavior has been in SharePoint since 2007 and continues in 2010.  So, what that basically means is that within SharePoint if you want to leverage the new PowerPoint and Excel embedding feature the only way you can do it is on web part pages by using a Content Editor Web Part.
 
Aw shucks.
 
 
September 16
SharePoint 2010 Performance Study

​Dell has recently published an execellent whitepaper detailing their experience with performance testing of SharePoint 2010 on various configurations of their hardware.

http://en.community.dell.com/dell-blogs/enterprise/b/tech-center/archive/2010/09/10/sharepoint-2010-medium-farm-a-performance-study.aspx

This is a good reference even if your hardware vendor of choice is another brand.  They clearly demonstrate the impact that smart hardware decisions at the database tier can have on the overall performance of the solutions.

July 23
Getting the CMIS Connector up and running in 2010-7a

With the recent release of the Content Management Interoperability Services (CMIS) connector for SharePoint Server 2010 as part of the Microsoft SharePoint 2010 Administration Toolkit v1.0 I decided that I would like to take it for a spin and see how it works and what it has to offer.  For me, since I don’t have access to any non-Microsoft CMIS Producers or Consumers (such as SAP, Alfresco and Documentum) I figured the easiest thing to do would be deploy the connector into the 2010 Information Worker Demonstration and Evaluation Virtual Machine (RTM) 2010-7a vm.

Generally speaking the experience was pretty smooth, but I did encounter some small bumps along the way.  With the help of my colleagues I got through it, and I’ll share the details here.
The first obstacle I encountered was that as of right now (July 2010) there’s virtually no documentation for the connector.  I’m told that is being addressed, and in the interim hopefully this blog post will temporarily bridge the gap.
 
Step 1 – Run the Administration Toolkit installer.  This is a quick and painless exercise.  I accepted all the defaults, and the final result as far as the CMIS connector goes is that a web solution package will have been deposited onto your server: “C:\Program Files\Microsoft\SharePoint 2010 Administration Toolkit\Content Management Interoperability Services (CMIS) Connectors\spcmis.wsp”  This one package contains both the Producer and Consumer features.
 
Step 2 – Add the solution to the farm solution gallery.  This is done via the PowerShell command line: (don't forget that Tab path completion is your friend here, so you don't have to tediously type all of this)
add solution
 
Step 3 – Deploy the solution.  This can be done either at the PowerShell command line or in the Central Admin UI.  I chose the latter.  Go to Central Administration -> System Settings -> Manage farm solutions, click on the spcmis.wsp name, and then Deploy Solution.  In my case I chose to deploy it to all web apps.  You could be more selective if you like, but keep in mind which will be your Producer; you’ll need to know that for the next step.
When deployment is complete, the Solution Properties will look similar to this:
solution properties
 
Step 4 – Make sure the web app that will host the Producer only has 1 host header.  If you don’t you’ll run into an error down at Step 7 stating that the service could not be activated (like I did initially).  The explanation of the cause and solution to this problem is described here.  So, since in my case I wanted http://intranet.contoso.com to host the Producer sites, I went into IIS Manager, selected the Intranet site (a.k.a web app in SharePoint) clicked on Bindings… and removed the entry for http intranet host header (of course, this means you can’t browse to http://intranet anymore, but oh well).
IIS edit bindings to remove second host header
 
Step 5 – Activate the Producer Feature on the site that holds the content that you want to consume.  I did this on the root site at http://intranet.contoso.com/ .  Site Settings -> Manage site features, and click “Activate”.  The result will look like this:
producer site feature
 
Step 6 – Activate the Consumer Feature on the web app where you will want to be able to use the CMIS Consumer web part.  I did this on the site collection at the root of http://itweb.contoso.com . Site Settings -> Manage site collection features, and click “Activate”.  The result will look like this:
consumer site collection feature
 
Step 7 – Insert the CMIS Consumer web part onto a page.  This is all standard stuff: Pick any page in the consumer site collection, put the page into edit mode, go to the Insert ribbon and pick the CMIS Consumer web part:
consumer web part insert
 
Then edit its properties and then this is where things were mysterious for me.  What the heck goes into the “Specify WSDL Address ” property?  I suppose if I were more familiar with the CMIS spec and/or had spent more time dissecting the spcmis.wsp I might have eventually figured this out, but rather I asked around and luckily I was able to find someone smarter than me to tell me. 
 
The correct URL will be of the form <protocol>://<ProducerSite>/_vti_bin/cmissoapwsdl.aspx . 
 
Once you plug that in, you can press the “Get Repository List” button, which will call the RepositoryService.svc behind the scenes (you’ll be prompted in the UI to enter credentials that have access there…) and finally the “Select Repository” dropdown list will be populated with all of the libraries and lists found on the Producer site.
consumer web part properties 
At this point you’re basically done.  Click “OK” to save the property changes, and “Stop Editing” to finish you page editing, and then you should be looking at documents from the Producer site being displayed in the Consumer web part:
All done!

Thanks to Volkhard, Paul and Ryan for their assistance!
June 30
Announcing the release of patterns & practices Developing Applications for SharePoint 2010
The Developing Applications for SharePoint 2010 guide is out.
 
Head on over to http://www.microsoft.com/spg and check it out.  Anyone doing or planning to do any serious custom application development on the SharePoint 2010 platform will benefit from it's content.
 
I cannot tell you how happy and proud I am to see our guidance materials coming to market in such a timely fashion.  Those of you who rode the MOSS 2007 wave know well that this level of prescriptive guidance was not widely available until 12-18 months after that release's general availability.  Kudos to the p&p team and the SharePoint product groups.
May 27
New Query Tool for FAST Search Server 2010 now available on CodePlex
If you ever used the old SharePoint Search Service Tool that was part of the Search Community Toolkit over on CodePlex, or going even further back its predecessor the MOSSQueryTool which used to live out on the old GotDotNet site, you will be pleased to know that a new generation of this concept has come to life.
 
 
My friend Ben Novak took advantage of his vast SharePoint search experience, his role as a participant in the SharePoint 2010 TAP program, and combined that with his desire to learn and apply WPF and channeled that energy into a the latest incarnation of this toolset.
 
If you are developing any sort of search application that will query the SharePoint Search APIs this tool will help you learn the ins and outs of the query syntax through experimentation.  Check it out and give "MOSSMan" your feedback via the Discussions and Issue Tracker areas over on the CodePlex project!
May 26
SharePoint 2010 Virtual Labs now available
Want to get your hands on SharePoint 2010 but are lacking the time and/or hardware to setup a lab environment?  Problem solved!
 
The first wave of SharePoint 2010 Virtual Labs are now available:
 
IT Pro Labs on TechNet:
 
Developer Labs on MSDN:
 
All of these labs run on Hyper-V servers hosted by Microsoft - you connect remotely via a lightweight browser add-in - system requirements and setup details are here: http://technet.microsoft.com/en-us/bb509309.aspx
April 24
Office 2010 Third-Party Software Application Compatibility List
With the release Office 2010 customers wishing to deploy this new version are going to have questions about its compatibility with Add-ins and other applications that interact with Office client applications.
 
The TechNet Office 2010 Compatibility Resource Center should be your first point of reference.  It features links to all of the Office deployment planning tools and documentation as well as the Office 2010 Third-Party Software Application Compatibility List
http://technet.microsoft.com/en-us/office/ff460851.aspx#Compat
 
Right now the compatibility list is in it’s infancy.  Independent Software Vendors (ISVs) will find it beneficial to publish their products' application compatibility status information here to get this information out to their current and prospective customers.
ISVs can submit their application compatibility information for inclusion on this list via the https://www.isvappcompat.com/ web site (you must be a registered Microsoft Partner to be able to register products for inclusion on the list.  Partner registration at the base level is free.)
1 - 10Next
 

 Archive

 
  
expand Year Month : 2011 06 ‎(2)
expand Year Month : 2011 03 ‎(1)
expand Year Month : 2010 09 ‎(2)
expand Year Month : 2010 07 ‎(1)
expand Year Month : 2010 06 ‎(1)
expand Year Month : 2010 05 ‎(2)
expand Year Month : 2010 04 ‎(2)
expand Year Month : 2010 03 ‎(1)
expand Year Month : 2010 02 ‎(2)
expand Year Month : 2009 11 ‎(1)
expand Year Month : 2009 09 ‎(1)
expand Year Month : 2009 06 ‎(3)
expand Year Month : 2009 05 ‎(2)
expand Year Month : 2009 04 ‎(3)
expand Year Month : 2009 01 ‎(3)
expand Year Month : 2008 12 ‎(4)
expand Year Month : 2008 11 ‎(2)
expand Year Month : 2008 08 ‎(6)
expand Year Month : 2008 05 ‎(5)
expand Year Month : 2008 04 ‎(3)
expand Year Month : 2008 03 ‎(1)
expand Year Month : 2008 02 ‎(6)
expand Year Month : 2007 11 ‎(3)
expand Year Month : 2007 10 ‎(5)
expand Year Month : 2007 09 ‎(3)
expand Year Month : 2007 07 ‎(1)
expand Year Month : 2007 06 ‎(5)
expand Year Month : 2007 05 ‎(3)
expand Year Month : 2007 04 ‎(11)
expand Year Month : 2007 03 ‎(19)
 

 SharePoint Internet Sites (from WSSDemo.com)

 
  cScape
  Equiniti Shareview site hosted on MOSS
  Corgi Consumers web site
  speakTECH SharePoint site upgraded to 2010
  Cegos Group
  AlphaMosaik - French Gold Certified Partner
  Komatsu Australia
  Paul Mitchell salon products site built on SharePoint
  Oasys French consulting company
  ShareSquared site built on SharePoint
  Wortell Holding site built on SharePoint
  Performance Food Group (PFG) hosted on SharePoint Server 2007
  Fifteen - Hosted on MOSS 2007
  JTC Corporation web site hosted on MOSS
  McGrathNicol (Audtralia) hosted on MOSS
  The Body Shop Wise Woman site hosted on MOSS
  Argo Turboserve Corporation site hosted on MOSS
  Plymouth Hospitals NHS Trust web site hosted on MOSS
  Hawaiian Air site hosted on MOSS
  Canon Technology Solutions site hosted on MOSS
  Investors in People UK site hosted on MOSS
  Acquirgy site hosted on MOSS
  Tourism Western Australia web site hosted on MOSS
  SoftwareBizExchange web site hosted on MOSS
  Microsoft Flight Simulator Insiders site hosted on MOSS
  Viacom web site hosted on MOSS
  www.swiss.com hosted on MOSS
  BIO Diversity Hot Spots site hosted on MOSS
  Orange County Public Schools site hosted on MOSS
  Goodman site hosted on MOSS
  American Dairy Association 3-A-Day site powered by MOSS
  UK NHS site hosted on SharePoint
  City of Campbell River site hosted on SharePoint
  Direct Energy web site hosted on SharePoint
  New Škoda web site hosted on SharePoint
  WesTrac Caterpillar dealer site hosted on SharePoint
  South Eastern Regional College site hosted on SharePoint
  Danske Capital site hosted on SharePoint
  Unipol Gruppo Finanziario site hosted on SharePoint
  Games For Windows site hosted on SharePoint
  Ratio One site hosted on SharePoint
  Demos Group site hosted on SharePoint
  OBS Australia Gold Certified partner site hosted on MOSS
  Zain Mobile Telecommunications Company hosted on SharePoint
  imason inc site hosted on SharePoint
  Statoil websitesite hosted on SharePoint
  Fan U, USA Colllege Sports community site hosted on SharePoint
  Indianapolis Opera site hosted on SharePoint
  Revue D'etudes (French) site hosted on SharePoint
  PointBridge Microsoft Gold Certified Partner site hosted on SharePoint
  Australian Innovation site hosted on SharePoint
  South East Water (Australia) web site hosted on SharePoint
  West Pharmaceutical Services site hosted on SharePoint
  Distributed Logic site hosted on SharePoint
  The Capita Group Plc annual report published on SharePoint
  Gilham Consulting (San Diego) site hosted on SharePoint
  George Warren Brown School of Social Work hosted on SharePoint
  Arkansas K12 DL Portal
  Southwest Arkansas Education Cooperative hosted on SharePoint
  Technology Infused Education site hosted on SharePoint
  LHA-ASRA Group site hosted on SharePoint
  Kroger site hosted on SharePoint
  Devon Energy site hosted on SharePoint
  FlyBuys (NZ) site hosted on SharePoint
  Istanbul Metropolitan Municipality site hosted on SharePoint
  The Personal Insurance Company site hosted on SharePoint
  Desjardins General Insurance site hosted on SharePoint
  Gedeon Richter site hosted on SharePoint
  Dennis Gabor Applied University website built on SharePoint
  MS Gold Certified Partner Hyro site hosted on SharePoint
  VICTORINOX "Swiss Army Knife" site hosted on SharePoint
  California Department of Public Health site hosted on SharePoint
  North Hills Community site hosted on WSS
  CGA-Canada’s site hosted on SharePoint
  L'Expresso site hosted on SharePoint
  SURF (Netherlands) site hosted on SharePoint
  Search mashup example using Search Server 2008
  Office Business Applications (OBA) Central hosted on SharePoint
  K9 Search site hosted on SharePoint
  Catapult Systems site hosted on SharePoint
  www.energizer.com hosted on SharePoint 2010
  LoJack Corporation (NASDAQ: LOJN), site hosted on SharePoint
  Another Ministry Of Sound site launched on SharePoint
  Municipality of Ankara’s Public site hosted on SharePoint
  Microsoft Quickstart Serch site for partners hosted on SharePoint
  SharePoint Users Group (TheSUG.org) hosted on SharePoint
  Susquehanna Technologies website built on SharePoint 2010
  World Vision (Canada) hosted on SharePoint
  The University of Sharjah site hosted on SharePoint
  Verizon Business site hosted on SharePoint
  Professional Association for SQL Server site hosted on SharePoint
  Office of the High Commissioner for Human Rights hosted on SharePoint
  SharePoint Conference 2009 web site hosted on SharePoint
  Mental Health First Aid (MHFA) site hosted on SharePoint
  Alberta Mental Health Board site hosted on SharePoint
  3fifteen site hosted on SharePoint
  Sun International site hosted on SharePoint
  Mutual & Federal Insurance site hosted on SharePoint
  Tshwane University of Technology site hosted on SharePoint
  NESCAFÉ Dolce Gusto (French) site hosted on SharePoint
  Advis site hosted on SharePoint
  Amana Living site hosted on SharePoint
  Sonova site hosted on SharePoint
  Software Objectives site hosted on SharePoint
  Strategic Data Management site hosted on SharePoint
  ADA ICT Community Blogs hosted on SharePoint
  DiVa (Netherlands) site hosted on SharePoint
  The Learning Trust site hosted on SharePoint
  Global Food Safety Legislation Database hosted on SharePoint
  King Saud University Portal hosted on SharePoint
  Finnish Forest Industries Federation site hosted on SharePoint
  Starlight Childrens Foundation Australia, Starlight Day site hosted on SharePoint
  Content Editor Web Part community site hosted on SharePoint Services
  Vlaamse Landmaatschappij site hosted on SharePoint
  Carlsberg Group site hosted on SharePoint
  Pilgrim Outlet Store hosted on SharePoint
  Investor Education Fund website built on SharePoint 2010
  Ministry of Sound Housexy site hosted on SharePoint
  Iveco site built on SharePoint
  Avista Utilities site hosted on SharePoint
  Thomson site hosted on SharePoint
  Jabra site hosted on SharePoint
  Tata Consultancy Services site hosted on SharePoint
  AMD Developer Central site built on SharePoint
  Inmobiliaria Group CAM (Spanish) site built on SharePoint
  Fiat Group web site hosted on SharePoint
  Gen-i (Telecom New Zealand) site hosted on SharePoint
  Trinedy website hosted on SharePoint 2010
  SchoolNet.com hosted on SharePoint
  Microsoft Gearup
  Abesse Gold cetified partner site hosted on SharePoint
  Emerson Electric Co. web site hosted on SharePoint
  Project Management Institute site hosted on SharePoint
  Microsoft EPM Connect site hosted on SharePoint
  South African Information Worker community site hosted on SharePoint
  Data#3 Limited (Australia) site hosted on SharePoint
  Department of the Premier & Cabinet (Western Australia) site hosted on SharePoint
  Government of Wester Australia Ministerial Media Statements site hosted on SharePoint
  Rotary International site hosted on SharePoint
  PolyOne Corporation site hosted on SharePoint
  Official U.S. Marine Corps Web Site hosted on SharePoint
  Envision IT (Canada) site hosted on SharePoint
  Canadian Problem Gambling online community site hosted on Sharepoint
  TTNET (Turky) online music store hosted on SharePoint
  AGL Energy (Australia) site hosted on SharePoint
  SharePoint Solutions Persia site hosted on SharePoint
  SharePoint Learning Resources site hosted on SharePoint
  Encon Canadian Insurance Company site hosted on SharePoint
  InnovationWorks site hosted on SharePoint
  Library of Congress Virtual site hosted on SharePoint 2010
  Durham County Council site hosted on SharePoint
  Redland City Council hosted on SharePoint
  Australian Department of Innovation, Industry, Science and Research (DIISR)
  Puget Sound Energy site hosted on SharePoint
  SWORD site hosted on SharePoint
  Microsoft Office Labs site hosted on SharePoint (Site #200 :-)
  Home Group site hosted on SharePoint
  CORPTAX site hosted on SharePoint
  Pfizer site hosted on SharePoint
  National Native Title Tribunal (Australia) hosted on SharePoint
  National Procurement Ltd. (Denmark) site hosted on SharePoint
  Grand Challenges in Global Health site hosted on SharePoint
  Invisalign site hosted on SharePoint
  Dell Financial Services site hosted on SharePoint
  Ingersoll Rand site hosted on SharePoint
  Ofgem (UK) site hosted on SharePoint
  Lake Washington School District site hosted on SharePoint
  Columba Basin Health Association site hosted on SharePoint
  Washington State Department of Natural Resources site hosted on SharePoint
  Oldcastle Precast site hosted
  Onvia site hosted on SharePoint
  DaVita Careers site hosted on SharePoint
  Stemilt Growers, Inc. site hosted on SharePoint
  Evergreen Public Schools site hosted on SharePoint
  Farwest Steel site hosted on SharePoint
  Agência Portuguesa do Ambiente (Portuguese) site hosted on SharePoint
  TVLand Press site hosted on SharePoint
  Hymans Robertson site hosted on SharePoint
  Royal College of Physicians and Surgeons of Glasgow
  Dollar General site hosted on SharePoint
  Technical And Further Education Western Australia (TAFEWA) site hosted on SharePoint
  Kimberley TAFE (Australia) site hosted on SharePoint
  Richard Lees' BI demo site hosted on SharePoint
  The Chamber of Commerce, Industry, Service and Tourism of Santa Cruz (CAINCO) site hosted on SharePoint
  TSEWIN (Bolivia) site hosted on SharePoint
  The Fédération Equestre Internationale (FEI) site hosted on SharePoint
  South American SharePoint Community site hosted on SharePoint
  Environmental Science & Research (NZ) site hosted on SharePoint
  Logta (Saudi Arabia ) site hosted on SharePoint
  That’s Melbourne website hosted on SharePoint
  Kivati Software site hosted on SharePoint
  National Professional Paintball League site hosted on SharePoint
  COX Services Help Center site hosted on SharePoint Services
  St. Jude Medical site hosted on SharePoint
  NSYNERGY PTY LTD site hosted on SharePoint 2010
  Safety-Kleen site hosted on SharePoint
  Cook Children's Hospital site hosted on SharePoint
  DePaul University, College of Computing and Digital Media (CDM) site hosted on SharePoint
  WestLB AG Bank site uses Microsoft Search Server 2008
  Chesapeake Energy site hosted on SharePoint
  Northern NSW Football web site hosted on SharePoint
  MYOB My Business Resource Centre (Australia) site hosted on SharePoint
  Vodafone India site hosted on SharePoint
  St. John Ambulance Canada site hosted on SharePoint
  Aseantic (Swiss) Gold Partner site hosted on SharePoint
  Cendres+Métaux Group site hosted on SharePoint
  Schweizerische Teletext AG (Swiss) site hosted on SharePoint
  bfu – Swiss Council for Accident Prevention site hosted on SharePoint
  The Swiss Federal Institute for Vocational Education and Training (SFIVET) site hosted on SharePoint
  Portal Solutions site hosted on SharePoint 2010
  Avendra site hosted on SharePoint
  Famine Early Warning Systems Network (FEWS NET) site hosted on SharePoint
  Conservation International site hosted on SharePoint
  KPMG site hosted on SharePoint
  Avitiva site hosted on SharePoint
  AgileThought site hosted on SharePoint
  Iwpco (Persian) site hosted on WSS
  Hard2Beat site from Ministry of Sound hosted on SharePoint
  Interactive Intelligence site hosted on SharePoint
  Arab Bank (Switzerland) site hosted on SharePoint
  International Breast Cancer Study Group site hosted on SharePoint
  ESPRiT Consulting site hosted on SharePoint
  GARAIO Technology Lab (Swiss) site hosted on SharePoint
  BASF (Global Chemical Company) sites hosted on SharePoint
  Heart Failure Matters site hosted on SharePoint
  Volvo Cars site hosted on SharePoint 2010
  3 - A - Day site hosted on SharePoint
  Banco Nossa Caixa (Portugues) site hosted on SharePoint
  ICL Chemical Company site hosted on SharePoint
  ECI Telecom site hosted on SharePoint
  Mekorot site hosted on SharePoint
  Scientio LLC site hosted on SharePoint
  Informatica site hosted on SharePoint
  Nestle French and German site hosted on SharePoint
  Motability Operations site hosted on SharePoint
  The Cleveland Clinic site hosted on SharePoint
  Westminster College (USA) site hosted on SharePoint
  The Georgia Department of Transportation site hosted on SharePoint
  Cadence Design Systems site hosted on SharePoint with Community server integration
  International SharePoint Professionals Association site hosted on SharePoint
  Monterey Peninsula College site hosted on SharePoint
  Inter-American Institute for Cooperation on Agriculture
  American College of Cardiology Event sites hosted on SharePoint
  ECRI Institute site hosted on SharePoint
  Boulder Valley School District sites hosted on SharePoint
  Swiss National Science Foundation
  Ohio IT Alliance site hosted on SharePoint
  Sterne Agee Group site hosted on SharePoint
  The Elementary Teachers' Federation of Ontario
  TASER International site hosted on SharePoint
  King Abdulaziz City for science and Technology site hosted on SharePoint
  St Monica’s College (Australia) site hosted on SharePoint
  MicroLink site hosted on SharePoint
  O'Connor Hospital site hosted on SharePoint
  Sunshine Connections site hosted on SharePoint
  City of Santa Rosa, California site hosted on SharePoint
  New Hanover County, North Carolina site hosted on SharePoint
  The American University in Cairo website built on SharePoint
  Australian Science and Mathematics School (ASMS) hosted on SharePoint 2010
  Accor Services Childcare Vouchers site hosted on SharePoint
  ITEMA Group site hosted on SharePoint
  Accor Services Eyecare Vouchers
  Hoover City Schools site hosted on SharePoint
  The Department of Health Care Services (DHCS) site hosted on SharePoint
  California Health and Human Services Agency (CHHS) site hosted on SharePoint
  Julius Baer Group (Switzerland) site hosted on SharePoint
  Malaysian Chinese Association site hosted on SharePoint
  Brazosport College site hosted on SharePoint
  Kansas City Missouri School District site hosted on SharePoint
  MCPS-PRS Alliance site hosted on SharePoint
  Silicon Laboratories
  Chicago Public Schools site hosted on SharePoint
  Numonyx site hosted on SharePoint
  Virginia Farm Bureau "Save Our Food" site hosted on SharePoint
  Virginia Farm Bureau Federation site hosted on SharePoint
  Portuguese Soccer League site hosted on SharePoint
  Sir Wilfred Grenfell College (Canada) site hosted on SharePoint
  Toronto Eaton Centre site hosted on SharePoint
  USfalcon site hosted on SharePoint
  Irvine Valley College site hosted on SharePoint 2010
  Alnwick District Council (UK) site hosted on SharePoint
  Heritage Log Homes site hosted on SharePoint
  State of West Virginia's official Web portal hosted on SharePoint
  Collaborate MU - The University of Missouri's SharePoint System
  Kentucky official Web portal hosted on SharePoint
  Maryland Department of Information Technology
  Microsoft Operations Manager unoffical site hosted on SharePoint
  Hyder Consulting site hosted on SharePoint
  Brightstarr site hosted on SharePoint
  The Department of Resources, Energy and Tourism (Australia) site hosted on SharePoint
  SAGE Automation (Australia) site hosted on SharePoint
  ISSWorld site hosted on SharePoint
  Central TAFE (Perth, WA) site hosted on SharePoint
  Mahindra Homestays site hosted on SharePoint
  Hui Taumata Trust (NZ) site hosted on SharePoint
  STEM Initiative site hosted on SharePoint
  Unique World (Australia) site hosted on SharePoint
  WorleyParsons site hosted on SharePoint
  Embark site hosted on SharePoint
  Hyster site hosted on SharePoint