What s New in SharePoint 2016 (On- Premise) for IT Pros

Size: px
Start display at page:

Download "What s New in SharePoint 2016 (On- Premise) for IT Pros"

Transcription

1 What s New in SharePoint 2016 (On- Premise) for IT Pros This article is based on notes taken during a public presentation at the Microsoft Ignite event by presenter Bill Baer. A video of the session can be viewed here: This is not an official Microsoft document and may not represent an official Microsoft position on the state of SharePoint EXECUTIVE SUMMARY Microsoft s Ignite conference just ended and we were treated to a firehose of information of what s coming in the next iteration of SharePoint Online and on premise. Since so many customers will continue to use the platform in an on premise or hybrid scenario, we thought it would be good to cover the most interesting new features for the IT Professional. Many of these features discussed here are already baked into the product and demonstrable today, and many of what s discussed below are design goals (such as the scalability goals). One thing is clear, however, is that development of the SharePoint platform is a cloud-first model, branched to the on premise code, and much of the new features are based on the learnings from delivering SharePoint Online. The following is broken out into two major sections: Management and Reliability and Performance and Scale. Hopefully you ll find some tidbits of goodness in there, I know we found these topics pretty interesting. 2 MANAGEMENT 2.1 HARDWARE REQUIREMENTS AND PREREQUISITES The hardware requirements haven t changed at all for SharePoint GB memory and a single Quad core CPU for a single server; 12-16GB memory for a farm server. Everything still requires 64 bit architecture. 2.2 SOFTWARE REQUIREMENTS A few changes here - Windows Server 2012 R2 or Windows Server 10 is now required; SharePoint is still using WS AppFabric 1.1, the.net framework 4.5.2, Microsoft Information Protection and Control Client and WCF Data Services. All of these will drive some nice new functionality around in-memory distributed caching, information protection and the creation and consumption of odata services. 1

2 2.3 DEPLOYMENT SCENARIOS Deployment scenarios are pretty much the same as SharePoint 2013 with one important change - developer installations are still supported on a domain controller, but stand-alone installations are no longer supported with SQL Server Express so you ll have to install a real installation of 64 bit SQL Server 2014 SP1 or better. 2.4 UPGRADE VS MIGRATION For Upgrade, the only real change here is that "14.5" mode (that is, SharePoint 2013 running in SharePoint 2010 Mode) upgrades are not supported - you need to fully upgrade your 2013 site collections in order for 2016 upgrade to work - other than that it s just the same DB detach/attach process that we did from SharePoint 2010 to SharePoint It s important to note here that SharePoint 2013 is now the kernel for SharePoint going forward. The service architecture will not really be changed going forward. For Migration (and this is really for third party ISV s), there is a new Data Migration Pipeline that is out of scope for this document, but will be used to enhance the experience of migrating content from on premise to online, or from previous versions to SharePoint OTHER CHANGES SAML Identity As we move to a more cloud based world, SharePoint is moving to a more cloud friendly identity mechanism. SAML Identity will become a first class identity provider for SharePoint, and domain based providers will move more to the background. Windows identity will still be supported, but the cloud based world is moving more in the direction of oauth, openid and cloud based identity. SMTP Connection Encryption for connections, you will now need to use encrypted connections (non-port 25). There will be no support for non-encrypted ports and no fallback mechanism. 3 RELIABILITY, PERFORMANCE AND SCALE 3.1 SERVER ROLES In SharePoint 2013 servers were role agnostic that is, any server could provide any service by stopping or starting services, and the documented guidelines were pretty much around four to five general roles (caching, request management, web servers, batch processing, and specialized workloads). In SharePoint 2016, roles are defined in code instead of in documentation, and there are basically three roles: - User Services - any request initiated by an end user is processed by a User Service machine. In 2013, a user request could traverse the entire topology, in 2016, the new role model is designed to simplify the performance and latency issues around that use case and simplify this scenario. - Robot Services any request not initiated by an end-user - timer jobs, indexing, etc. - Caching Services basically provides support for caching. 2

3 Enter the definition of MinRoles. MinRoles allow you to define the role of the server as you re laying down the bits (either through the configuration wizard, PSConfig, or PowerShell), and apply the appropriate SharePoint logic based on the role. Here are the new MinRoles: - WebFrontEnd (corresponds to UserServices above) - Application (corresponds to Robot Services above) - DistributedCache (corresponds to Caching Services above) - SpecializedLoad (this setting allows you to break the model and lay down pretty much any configuration of services you like just like you did with SharePoint 2013) In the configuration wizard there are a couple of additional choices: - Search allows you to create a Search Server - Single Server Allows you to lay down everything on a single server as you did with SharePoint It s not clear if the naming of these will remain the same or if all of these will make it to the final product but the MinRole model is clear and the topology has clearly changed for the better to minimize the traversal of a user request across multiple servers. 3.2 HEALTH ANALYZER Based on the above Server Roles, the Health Analyzer will detect any deviation from the server role norm and allow you to fix the deviation (with the exception of SpecializedLoad). For example, if you have a WebFrontEnd that had an additional service installed that is outside the definition, the Health Analyzer will detect the deviation, alert you and allow you to fix the deviation by removing the service. 3.3 PATCHING This topic was one of the biggest changes, and it is all due to learnings from delivering on SharePoint Online SLA s. Those SLA s drove the requirement to deliver in-place, on-line, middle-of-the-day, transparent to the user, no need to stop and start services to apply patches. In the past, SharePoint QFE's consisted of a number of MSI's and MSP's. 37 MSI s/msp s plus an additional 18 for each language pack. For 2016, the product team has now minimized this down to 2 MSI's/MSP's for a total of 4 plus 1 for each language pack. This provides a much smaller patch and a smaller footprint, the updates are smaller and now execute with zero downtime. The reduced patches also reduces the number of testing scenarios bottom line patching can now be done during the day, and your users won t notice. 3.4 DISTRIBUTED CACHE There are also some significant improvements to the way the Distributed Cache works by reducing NTLM authentication overhead by switching off NTLM authentication such that the cache doesn t have to authenticate on every request. This significantly improves performance of the cache. 3

4 3.5 NEW BOUNDARIES AND LIMITS These new limits are just guidelines today goals that the dev team hopes to achieve. We sincerely hope they are able to exceed these boundaries. Content Database Size Content database sizing into TB s Site Collections Per Content Database 100,000 site collections per content database List Threshold Max File Size Indexed Items Increased List Threshold >5000 MaxFile Size increases to 10GB and removed character restrictions 2x increase in Search scale to 500 million items 3.6 FILE PERFORMANCE For File upload, they are removing the SOAP over HTTP protocol and replacing that with the BITS (Background Intelligent Transfer Service) protocol, which should significantly improve the upload performance. 3.7 FAST SITE CREATION In typical Site Creation, a site is created, and features are activated one by one, which is a very time consuming process, Fast Site Creation uses a site template with everything already pre-provisioned and then does a site copy of the template at the content database level. This is a significantly faster process, and one that is already being used in SharePoint Online today. 3.8 TRAFFIC MANAGEMENT Traffic Management is a new endpoint running on the web servers that establishes an affinity between the web servers and any load balancers (could be Big IP, F5, etc.). It effectively acts as an intelligent transport layer and routes the traffic to the most efficient server based on usage, etc. This feature may or may not be delivered on premise, but is currently being offered today with SharePoint Online. 3.9 USER PROFILE SERVICE The User Profile Sync is no longer provided based on an internal FIM service, but is now provided bidirectionally using an external FIM service, or unidirectional using native AD synchronization PROJECT SERVER The Project Server Databases now become first class SharePoint citizen in that they are now included as part of the SharePoint content Database. This simplifies the management of databases, but you still have to license this the old fashioned way separately from SharePoint. 4

5 3.11 DURABLE LINKS Saving one of the best for last the URL for a document is now based on a resource ID, not the name, so not matter what you name the document or where you move it, the URL always works. For example if the document was named Sample Document Draft.docx and later named Sample Document, any URL pointing to it would still be able to find it very cool stuff. 4 SUMMARY This is just a first sneak peek into the new features of SharePoint 2016 and really just focused on the IT Professional features of the on premise product. Clearly Microsoft has learned a lot around delivering a world class service and around delivering on very high SLAs around that service. Much of those learnings have made their way into the product to all of our advantage. Since 1988, Kiefer Consulting has been focused on the simple premise that they succeed when their customers succeed. They are an award-winning Microsoft Gold Partner who provides full lifecycle services for Sitecore,.NET, Mobile, Dynamics CRM and SharePoint and are the leading solution provider in Northern California, focused on transforming client needs into user-centric systems. For more information, please contact them at info@kieferconsulting.com or Next Topic: OneDrive For Business 5

SharePoint 2016. What's New, What's Not. Colin Phillips :: SharePoint MVP & Consultant :: itgroove

SharePoint 2016. What's New, What's Not. Colin Phillips :: SharePoint MVP & Consultant :: itgroove SharePoint 2016 What's New, What's Not Colin Phillips :: SharePoint MVP & Consultant :: itgroove Bruce Smith :: SharePoint Consultant & IM Advisor :: itgroove 1 Who I am (part I): Colin Phillips My Background

More information

GET READY FOR SHAREPOINT 2016 S O L U T I O N S A R C H I T E C T

GET READY FOR SHAREPOINT 2016 S O L U T I O N S A R C H I T E C T GET READY FOR SHAREPOINT 2016 BRANDON MURRAY S O L U T I O N S A R C H I T E C T AGENDA Microsoft trends What s new in SP16 More questions... How do I prepare? MICROSOFT TRENDS MICROSOFT TRENDS Microsoft

More information

What s new for SharePoint 2016?

What s new for SharePoint 2016? What s new for SharePoint 2016? Release History and Roadmap SharePoint Portal Server 2001 2001 SharePoint Portal Server 2003 2003 Office SharePoint Server 2007 2006 SharePoint Server 2010 2009 SharePoint

More information

Microsoft SharePoint Architectural Models

Microsoft SharePoint Architectural Models Microsoft SharePoint This topic is 1 of 5 in a series Introduction to Fundamental SharePoint This series is intended to raise awareness of the different fundamental architectural models through which SharePoint

More information

SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0

SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0 SharePoint 2013 on Windows Azure Infrastructure David Aiken & Dan Wesley Version 1.0 Overview With the Virtual Machine and Virtual Networking services of Windows Azure, it is now possible to deploy and

More information

SharePoint, Is IT Time to Move to the Cloud? Minnesota County IT Leadership Association July 15 th, 2015

SharePoint, Is IT Time to Move to the Cloud? Minnesota County IT Leadership Association July 15 th, 2015 SharePoint, Is IT Time to Move to the Cloud? Minnesota County IT Leadership Association July 15 th, 2015 Donald Donais Avtex Sr. Consultant - SharePoint ddonais@avtex.com Blog Tales from IT Side Twitter

More information

SharePoint Server 2016. Quick Start Guide for Single Server Farms

SharePoint Server 2016. Quick Start Guide for Single Server Farms 1 SharePoint Server 2016 Quick Start Guide for Single Server Farms 2016 Microsoft Corporation. All rights reserved. This document is provided as-is. Information and views expressed in this document, including

More information

What s New and Exciting in SharePoint Server 2016

What s New and Exciting in SharePoint Server 2016 What s New and Exciting in SharePoint Server 2016 16 TH M AR 2016 KIRAN KAKANUR, SOLUTIONS ARCHITECT RIGHTPOINT SharePoint 2016 is now in RTM March 14 th marks Release to Manufacturing (RTM) of SharePoint

More information

Professional SharePoint Server 2010 Administration

Professional SharePoint Server 2010 Administration Professional SharePoint Server 2010 Administration Target Audience IT Professionals, Administrators Course Description This accelerated 4-day course has been designed to teach experienced IT Professionals

More information

Module: Sharepoint Administrator

Module: Sharepoint Administrator Module: Sharepoint Administrator Mode: Classroom Duration: 40 hours This course teaches IT Professionals to design and deploy Microsoft SharePoint 2010. Course Outline: Module 1: Designing a Logical Architecture

More information

Metalogix Replicator. Quick Start Guide. Publication Date: May 14, 2015

Metalogix Replicator. Quick Start Guide. Publication Date: May 14, 2015 Metalogix Replicator Quick Start Guide Publication Date: May 14, 2015 Copyright Metalogix International GmbH, 2002-2015. All Rights Reserved. This software is protected by copyright law and international

More information

SHAREPOINT HYBRID AND IMPLICATIONS OF 2016

SHAREPOINT HYBRID AND IMPLICATIONS OF 2016 SHAREPOINT HYBRID AND IMPLICATIONS OF 2016 Dan Charlton Senior Consultant MCSE, MCSA, MCP COMPANY OVERVIEW TOTAL SOLUTIONS OVERVIEW SharePoint Consulting & Development Organization Design Development Administration

More information

SharePoint 2013 Logical Architecture

SharePoint 2013 Logical Architecture SharePoint 2013 Logical Architecture This document is provided "as-is". Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

SQL Server on Azure An e2e Overview. Nosheen Syed Principal Group Program Manager Microsoft

SQL Server on Azure An e2e Overview. Nosheen Syed Principal Group Program Manager Microsoft SQL Server on Azure An e2e Overview Nosheen Syed Principal Group Program Manager Microsoft Dedicated Higher cost Shared Lower cost SQL Server Cloud Continuum Hybrid SQL Server in Azure VM Virtualized Machines

More information

Get started with cloud hybrid search for SharePoint

Get started with cloud hybrid search for SharePoint Get started with cloud hybrid search for SharePoint This document supports a preliminary release of the cloud hybrid search feature for SharePoint 2013 with August 2015 PU and for SharePoint 2016 Preview,

More information

Deploying Microsoft SharePoint Services with Stingray Traffic Manager DEPLOYMENT GUIDE

Deploying Microsoft SharePoint Services with Stingray Traffic Manager DEPLOYMENT GUIDE Deploying Microsoft SharePoint Services with Stingray Traffic Manager DEPLOYMENT GUIDE Table of Contents Overview... 2 Installation and Initial Configuration of SharePoint services... 3 System Requirements...

More information

Multi-Tenancy in SharePoint 2010. DD105 Spencer Harbar Enterprise Architect harbar.net

Multi-Tenancy in SharePoint 2010. DD105 Spencer Harbar Enterprise Architect harbar.net Multi-Tenancy in SharePoint 2010 DD105 Spencer Harbar Enterprise Architect harbar.net About Spencer www.harbar.net spence@harbar.net @harbars General SharePoint Dogsbody Microsoft Certified Master SharePoint

More information

AppSense Environment Manager. Enterprise Design Guide

AppSense Environment Manager. Enterprise Design Guide Enterprise Design Guide Contents Introduction... 3 Document Purpose... 3 Basic Architecture... 3 Common Components and Terminology... 4 Best Practices... 5 Scalability Designs... 6 Management Server Scalability...

More information

Migration from SharePoint 2007 to SharePoint 2010

Migration from SharePoint 2007 to SharePoint 2010 Migration from SharePoint 2007 to SharePoint 2010 Summary This paper provides an overview of the SharePoint 2007 to SharePoint 2010 migration and highlights the KPIT- SYSTIME migration approach. The document

More information

Microsoft Dynamics CRM 2011 Installation and Deployment

Microsoft Dynamics CRM 2011 Installation and Deployment Microsoft Dynamics CRM 2011 Installation and Deployment Course 80296; 2 Days, Instructor-led Course Description This two-day instructor course covers the installation and configuration of Microsoft Dynamics

More information

About this Course This 5 day ILT course teaches IT Professionals to design and deploy Microsoft SharePoint 2010.

About this Course This 5 day ILT course teaches IT Professionals to design and deploy Microsoft SharePoint 2010. Course 10231B: Designing a Microsoft SharePoint 2010 Infrastructure OVERVIEW About this Course This 5 day ILT course teaches IT Professionals to design and deploy Microsoft SharePoint 2010. Audience Profile

More information

Microsoft Training and Certification Guide. Current as of December 31, 2013

Microsoft Training and Certification Guide. Current as of December 31, 2013 Microsoft Training and Certification Guide Current as of December 31, 2013 Welcome to the Microsoft Training and Certification Guide. This device is intended to provide a quick, comprehensive view of our

More information

Inside the mind of a SharePoint Solutions Architect

Inside the mind of a SharePoint Solutions Architect Inside the mind of a SharePoint Solutions Architect Noorez Khamis @nkhamis http://www.khamis.net 23 mai 2015 Bronze Web Or Argent Merci à nos commanditaires! Speaker Bio Noorez Khamis aka Rez SharePoint

More information

Microsoft SharePoint 2010 Administration

Microsoft SharePoint 2010 Administration Microsoft SharePoint 2010 Administration Real-World Skills for MCITP Certification and Beyond Tom Carpenter James Pyles WILEY Wiley Publishing, Inc. Contents Introduction xxiii Chapter 1 Planning the Logical

More information

Team Foundation Server 2013 Installation Guide

Team Foundation Server 2013 Installation Guide Team Foundation Server 2013 Installation Guide Page 1 of 164 Team Foundation Server 2013 Installation Guide Benjamin Day benday@benday.com v1.1.0 May 28, 2014 Team Foundation Server 2013 Installation Guide

More information

Designing a Microsoft SharePoint 2010 Infrastructure

Designing a Microsoft SharePoint 2010 Infrastructure Designing a Microsoft SharePoint 2010 Infrastructure Course Details Course Code: Duration: Notes: 10231B 5 days This course syllabus should be used to determine whether the course is appropriate for the

More information

Server & Cloud Management

Server & Cloud Management Technical Bootcamp: The Cloud-enabled Datacenter with Windows Server 2012 and System Center 2012 This 3-day, instructor-led course will help you understand how to evolve a traditional datacenter configuration

More information

SSC2016: SharePoint 2016 Administrator s Survival Camp

SSC2016: SharePoint 2016 Administrator s Survival Camp SHAREPOINT 2016 FOR IT PROFESSIONALS 5 DAYS SSC2016: SharePoint 2016 Administrator s Survival Camp AUDIENCE FORMAT COURSE DESCRIPTION STUDENT PREREQUISITES Administrators Instructor-led training with hands-on

More information

Azure & SharePoint. Jason Himmelstein, MVP. Senior Technical Director @sharepointlhorn

Azure & SharePoint. Jason Himmelstein, MVP. Senior Technical Director @sharepointlhorn Azure & SharePoint Jason Himmelstein, MVP Senior Technical Director @sharepointlhorn Gold Sponsor Silver Sponsors #CollabCon Share your ideas and feedback on Twitter $250 Future Shop gift card for most

More information

Business Intelligence Competency Partners

Business Intelligence Competency Partners Business Intelligence Competency Partners BI 4.1 Installation Best Practices Presenter: Rich Chlebek May 15, 2014 What We ll Cover Webinar Protocol Introductions Architecture Server Clustering High Availability

More information

Microsoft Office Web Apps Server 2013 Integration with SharePoint 2013 Setting up Load Balanced Office Web Apps Farm with SSL (HTTPS)

Microsoft Office Web Apps Server 2013 Integration with SharePoint 2013 Setting up Load Balanced Office Web Apps Farm with SSL (HTTPS) Microsoft Office Web Apps Server 2013 Integration with SharePoint 2013 Setting up Load Balanced Office Web Apps Farm with SSL (HTTPS) December 25 th, 2015 V.1.0 Prepared by: Manoj Karunarathne MCT, MCSA,

More information

Windows Server 2012 授 權 說 明

Windows Server 2012 授 權 說 明 Windows Server 2012 授 權 說 明 PROCESSOR + CAL HA 功 能 相 同 的 記 憶 體 及 處 理 器 容 量 虛 擬 化 Windows Server 2008 R2 Datacenter Price: NTD173,720 (2 CPU) Packaging All features Unlimited virtual instances Per processor

More information

DottsConnected SHAREPOINT 2010 ADMIN TRAINING. Exercise 1: Create Dedicated Service Accounts in Active Directory

DottsConnected SHAREPOINT 2010 ADMIN TRAINING. Exercise 1: Create Dedicated Service Accounts in Active Directory DottsConnected SHAREPOINT 2010 ADMIN TRAINING Module 1 - Getting started with SharePoint 2010 This introductory module introduces students to the fundamental terminology and architecture of SharePoint

More information

Radware ADC-VX Solution. The Agility of Virtual; The Predictability of Physical

Radware ADC-VX Solution. The Agility of Virtual; The Predictability of Physical Radware ADC-VX Solution The Agility of Virtual; The Predictability of Physical Table of Contents General... 3 Virtualization and consolidation trends in the data centers... 3 How virtualization and consolidation

More information

Microsoft Dynamics AX 2012 Installation Guide. Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change.

Microsoft Dynamics AX 2012 Installation Guide. Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change. 2012 Installation Guide Microsoft Corporation Published: April 2011 This content is preliminary and is subject to change. Microsoft Dynamics is a line of integrated, adaptable business management solutions

More information

Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework

Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework Azure Scalability Prescriptive Architecture using the Enzo Multitenant Framework Many corporations and Independent Software Vendors considering cloud computing adoption face a similar challenge: how should

More information

Radware ADC-VX Solution. The Agility of Virtual; The Predictability of Physical

Radware ADC-VX Solution. The Agility of Virtual; The Predictability of Physical Radware ADC-VX Solution The Agility of Virtual; The Predictability of Physical Table of Contents General... 3 Virtualization and consolidation trends in the data centers... 3 How virtualization and consolidation

More information

SharePoint 2013 Best Practices

SharePoint 2013 Best Practices SharePoint 2013 Best Practices SharePoint 2013 Best Practices When you work as a consultant or as a SharePoint administrator, there are many things that you need to set up to get the best SharePoint performance.

More information

Course 20532B: Developing Microsoft Azure Solutions

Course 20532B: Developing Microsoft Azure Solutions Course 20532B: Developing Microsoft Solutions Five Days, Instructor-Led About this Course This course is intended for students who have experience building vertically scaled applications. Students should

More information

Project Server 2010 - hardware and software requirements

Project Server 2010 - hardware and software requirements Project Server 2010 - hardware and software requirements At a high-level, the key requirements for Project Server 2010 are as follows: The 64-bit version of Windows Server 2008 Service Pack 2 or Windows

More information

10231B: Designing a Microsoft SharePoint 2010 Infrastructure

10231B: Designing a Microsoft SharePoint 2010 Infrastructure 10231B: Designing a Microsoft SharePoint 2010 Infrastructure Course Number: 10231B Course Length: 5 Days Course Overview This 5 day course teaches IT Professionals to design and deploy Microsoft SharePoint

More information

Office 365 deployment checklists

Office 365 deployment checklists Chapter 128 Office 365 deployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of issues.

More information

Quickstart Administration

Quickstart Administration Microsoft Windows Intune 2.0: Quickstart Administration Manage your PCs in the Enterprise through the Cloud with Microsoft Windows Intune David Overton PUBLISHING 1 enterprise 88 professional expertise

More information

Office 365 deploym. ployment checklists. Chapter 27

Office 365 deploym. ployment checklists. Chapter 27 Chapter 27 Office 365 deploym ployment checklists This document provides some checklists to help you make sure that you install and configure your Office 365 deployment correctly and with a minimum of

More information

Mod 3: Office 365 DirSync, Single Sign-On & ADFS

Mod 3: Office 365 DirSync, Single Sign-On & ADFS Office 365 for SMB Jump Start Mod 3: Office 365 DirSync, Single Sign-On & ADFS Chris Oakman Managing Partner Infrastructure Team Eastridge Technology Stephen Hall CEO & SMB Technologist District Computers

More information

Chapter 3 Installing Foundation 2013 onto Windows Server

Chapter 3 Installing Foundation 2013 onto Windows Server Terms This Windows SharePoint Services Operations Guide (WSSOPS) from the Computer Information Agency is provided as is. Every effort has been made by the author to ensure that information provided is

More information

Windows Server Virtualization An Overview

Windows Server Virtualization An Overview Microsoft Corporation Published: May 2006 Abstract Today s business climate is more challenging than ever and businesses are under constant pressure to lower costs while improving overall operational efficiency.

More information

Windows Azure platform What is in it for you? Dominick Baier (dbaier@develop.com) Christian Weyer (cweyer@develop.com

Windows Azure platform What is in it for you? Dominick Baier (dbaier@develop.com) Christian Weyer (cweyer@develop.com Windows Azure platform What is in it for you? Dominick Baier (dbaier@develop.com) Christian Weyer (cweyer@develop.com Objectives Motivation Status quo Cloud Computing Windows Azure platform Windows Azure

More information

SQL Server Hybrid Features. Luis Vargas, Senior Program Manager Lead Xin Jin, Program Manager @ Microsoft

SQL Server Hybrid Features. Luis Vargas, Senior Program Manager Lead Xin Jin, Program Manager @ Microsoft SQL Server Hybrid Features Luis Vargas, Senior Program Manager Lead Xin Jin, Program Manager @ Microsoft Key Takeaway SQL Server integrates cloud services from Azure providing end-to-end experiences that

More information

Product Overview. UNIFIED COMPUTING Managed Hosting Compute Data Sheet

Product Overview. UNIFIED COMPUTING Managed Hosting Compute Data Sheet Product Overview Interoute provide our clients with a diverse range of compute options delivered from our 10 carrier-class data centre facilities. Leveraging our extensive and diverse next generation IP

More information

Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010

Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010 Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010 Better Together Writer: Bill Baer, Technical Product Manager, SharePoint Product Group Technical Reviewers: Steve Peschka,

More information

Introducing. Markus Erlacher Technical Solution Professional Microsoft Switzerland

Introducing. Markus Erlacher Technical Solution Professional Microsoft Switzerland Introducing Markus Erlacher Technical Solution Professional Microsoft Switzerland Overarching Release Principles Strong emphasis on hardware, driver and application compatibility Goal to support Windows

More information

Apps Strategy for Business and IT Rajesh Agadi Netwoven Inc

Apps Strategy for Business and IT Rajesh Agadi Netwoven Inc Apps Strategy for Business and IT Rajesh Agadi Netwoven Inc Who am I? Rajesh Agadi Engagement Director at Netwoven Board member of Silicon Valley SharePoint User Group Contributing Author to SharePoint

More information

SharePoint Migration! & Upgrade! Tips from the Trenches! Jamye Few Summit 7 Systems Jamye.Few@summit7systems.com

SharePoint Migration! & Upgrade! Tips from the Trenches! Jamye Few Summit 7 Systems Jamye.Few@summit7systems.com SharePoint Migration! & Upgrade! Tips from the Trenches! Jamye Few Summit 7 Systems Jamye.Few@summit7systems.com OBJECTIVES! AGENDA! Migration/Upgrade! Office 365! SharePoint 20??! Subsidiary Farms! Demo!

More information

How To Use Windows Small Business Server 2011 Essentials

How To Use Windows Small Business Server 2011 Essentials Everything Your Business Needs in a Server, Nothing it doesn t. Ideal as a first server for small businesses with up to 25 users, Windows Small Business Server 2011 Essentials provides a cost-effective

More information

Microsoft Training and Certification Guide. Current as of March 16, 2015

Microsoft Training and Certification Guide. Current as of March 16, 2015 Microsoft Training and Certification Guide Current as of March 16, 2015 Welcome to the Microsoft Training and Certification Guide. This guide is intended to provide a quick, comprehensive view of our training

More information

Eloquence Training What s new in Eloquence B.08.00

Eloquence Training What s new in Eloquence B.08.00 Eloquence Training What s new in Eloquence B.08.00 2010 Marxmeier Software AG Rev:100727 Overview Released December 2008 Supported until November 2013 Supports 32-bit and 64-bit platforms HP-UX Itanium

More information

Project Server 2010 Migration

Project Server 2010 Migration Project Server 2010 Migration Presented by Chad Olson, Director of Technical Services Agenda Reasons to Migrate Types of Migrations Best Practices Lessons Learned Post Migration Considerations Backwards

More information

ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy

ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy ZEN LOAD BALANCER EE v3.04 DATASHEET The Load Balancing made easy OVERVIEW The global communication and the continuous growth of services provided through the Internet or local infrastructure require to

More information

SharePoint Microsoft SharePoint has become

SharePoint Microsoft SharePoint has become The Essential Guide to SharePoint S p o n s o r e d b y Microsoft SharePoint has become a mission-critical platform for sharing information and delivering improved collaboration to organizations of all

More information

Technical Specifications

Technical Specifications Technical Specifications Deployment and Integration The zero footprint web architecture ensures no intrusion on your users computers. Use ZAP CubeXpress to bring in Microsoft Dynamics customizations and

More information

WorkEngine Pre-Deployment Checklist

WorkEngine Pre-Deployment Checklist 01.06.2011.01 Contents 1.0 Installer s Knowledge Pre-requisites... 1 2.0 Software Prerequisites... 1 3.0 Required Information Prior to Installation... 3 4.0 Client Desktop (Optional)... 4 1.0 Installer

More information

Course 20533: Implementing Microsoft Azure Infrastructure Solutions

Course 20533: Implementing Microsoft Azure Infrastructure Solutions Course 20533: Implementing Microsoft Azure Infrastructure Solutions Overview About this course This course is aimed at experienced IT Professionals who currently administer their on-premises infrastructure.

More information

Windows Server on WAAS: Reduce Branch-Office Cost and Complexity with WAN Optimization and Secure, Reliable Local IT Services

Windows Server on WAAS: Reduce Branch-Office Cost and Complexity with WAN Optimization and Secure, Reliable Local IT Services Windows Server on WAAS: Reduce Branch-Office Cost and Complexity with WAN Optimization and Secure, Reliable Local IT Services What You Will Learn Windows Server on WAAS reduces the cost and complexity

More information

Getting Started with Sitecore Azure

Getting Started with Sitecore Azure Sitecore Azure 3.1 Getting Started with Sitecore Azure Rev: 2015-09-09 Sitecore Azure 3.1 Getting Started with Sitecore Azure An Overview for Sitecore Administrators Table of Contents Chapter 1 Getting

More information

A Middleware Strategy to Survive Compute Peak Loads in Cloud

A Middleware Strategy to Survive Compute Peak Loads in Cloud A Middleware Strategy to Survive Compute Peak Loads in Cloud Sasko Ristov Ss. Cyril and Methodius University Faculty of Information Sciences and Computer Engineering Skopje, Macedonia Email: sashko.ristov@finki.ukim.mk

More information

BI on Cloud using SQL Server on IaaS

BI on Cloud using SQL Server on IaaS BI on Cloud using SQL Server on IaaS Abstract Today s Business Intelligence (BI) Systems are analysing huge volumes of data, which is growing at a rapid pace requiring organizations to scale the hardware/infrastructure

More information

Microsoft Dynamics CRM 2013 Service Provider Planning and Deployment Guide

Microsoft Dynamics CRM 2013 Service Provider Planning and Deployment Guide Microsoft Dynamics CRM 2013 Service Provider Planning and Deployment Guide Copyright This document is provided "as-is". Information and views expressed in this document, including URL and other Internet

More information

Novel Systems. Extensible Networks

Novel Systems. Extensible Networks Novel Systems Active Networks Denali Extensible Networks Observations Creating/disseminating standards hard Prototyping/research Incremental deployment Computation may be cheap compared to communication

More information

Exchange 2013 Deployment, Coexistence, Virtualization. Jeff Mealiffe Senior Program Manager Exchange Product Group

Exchange 2013 Deployment, Coexistence, Virtualization. Jeff Mealiffe Senior Program Manager Exchange Product Group Exchange 2013 Deployment, Coexistence, Virtualization Jeff Mealiffe Senior Program Manager Exchange Product Group Agenda Fundamentals of Deployment Upgrade and Coexistence Public Folder Migrations Virtualization

More information

Virtual Hosting Service Definition SD021 V1.5 Issue Date 18 Sept 09

Virtual Hosting Service Definition SD021 V1.5 Issue Date 18 Sept 09 Virtual Hosting Service Definition SD021 V1.5 Issue Date 18 Sept 09 Service Overview Introduction Virtual Hosting is InTechnology s hosted managed service for virtual servers. Our virtualisation service

More information

CHOOSING A RACKSPACE HOSTING PLATFORM

CHOOSING A RACKSPACE HOSTING PLATFORM CHOOSING A RACKSPACE HOSTING PLATFORM Rackspace has years of experience in hosting and has learnt that the unique needs of our customers businesses often determines the level of accountability and project

More information

Michael Noel. Colin Spence. SharePoint UNLEASHED. 800 East 96th Street, Indianapolis, Indiana 46240 USA

Michael Noel. Colin Spence. SharePoint UNLEASHED. 800 East 96th Street, Indianapolis, Indiana 46240 USA Michael Noel Colin Spence SharePoint 2013 UNLEASHED 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 Part I Planning for and Deploying SharePoint Server 2013 1 Introducing

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2

How To Install Powerpoint 6 On A Windows Server With A Powerpoint 2.5 (Powerpoint) And Powerpoint 3.5.5 On A Microsoft Powerpoint 4.5 Powerpoint (Powerpoints) And A Powerpoints 2 DocAve 6 Service Pack 1 Installation Guide Revision C Issued September 2012 1 Table of Contents About the Installation Guide... 4 Submitting Documentation Feedback to AvePoint... 4 Before You Begin...

More information

SP-2002-10231 - Designing a Microsoft SharePoint 2010 Infrastructure

SP-2002-10231 - Designing a Microsoft SharePoint 2010 Infrastructure SP-2002-10231 - Designing a Microsoft SharePoint 2010 Infrastructure Duration: 5 days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview This 5 day ILT training course

More information

Introduction to the EIS Guide

Introduction to the EIS Guide Introduction to the EIS Guide The AirWatch Enterprise Integration Service (EIS) provides organizations the ability to securely integrate with back-end enterprise systems from either the AirWatch SaaS environment

More information

Microsoft Business Intelligence 2012 Single Server Install Guide

Microsoft Business Intelligence 2012 Single Server Install Guide Microsoft Business Intelligence 2012 Single Server Install Guide Howard Morgenstern Business Intelligence Expert Microsoft Canada 1 Table of Contents Microsoft Business Intelligence 2012 Single Server

More information

SAFE-T RSACCESS REPLACEMENT FOR MICROSOFT FOREFRONT UNIFIED ACCESS GATEWAY (UAG)

SAFE-T RSACCESS REPLACEMENT FOR MICROSOFT FOREFRONT UNIFIED ACCESS GATEWAY (UAG) SAFE-T RSACCESS REPLACEMENT FOR MICROSOFT FOREFRONT UNIFIED ACCESS GATEWAY (UAG) A RSACCESS WHITE PAPER 1 Microsoft Forefront Unified Access Gateway Overview 2 Safe-T RSAccess Secure Front-end Overview

More information

Endpoint Virtualization. Workspace Management: Simplify IT Organizations. Data Sheet Symantec TM Workspace Streaming 6.1

Endpoint Virtualization. Workspace Management: Simplify IT Organizations. Data Sheet Symantec TM Workspace Streaming 6.1 Data Sheet Symantec TM Workspace Streaming 6.1 Workspace Management: Simplify IT Organizations Overview As IT organizations today face the reality of managing an increasingly complex mix of desktops, laptops,

More information

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE

SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE SHAREPOINT 2013 IN INFRASTRUCTURE AS A SERVICE Contents Introduction... 3 Step 1 Create Azure Components... 5 Step 1.1 Virtual Network... 5 Step 1.1.1 Virtual Network Details... 6 Step 1.1.2 DNS Servers

More information

Implementing Microsoft Azure Infrastructure Solutions

Implementing Microsoft Azure Infrastructure Solutions Course Code: M20533 Vendor: Microsoft Course Overview Duration: 5 RRP: 2,025 Implementing Microsoft Azure Infrastructure Solutions Overview This course is aimed at experienced IT Professionals who currently

More information

SharePoint 2010 Interview Questions-Architect

SharePoint 2010 Interview Questions-Architect Basic Intro SharePoint Architecture Questions 1) What are Web Applications in SharePoint? An IIS Web site created and used by SharePoint 2010. Saying an IIS virtual server is also an acceptable answer.

More information

Implementing Microsoft Azure Infrastructure Solutions 20533B; 5 Days, Instructor-led

Implementing Microsoft Azure Infrastructure Solutions 20533B; 5 Days, Instructor-led Implementing Microsoft Azure Infrastructure Solutions 20533B; 5 Days, Instructor-led Course Description This course is aimed at experienced IT Professionals who currently administer their on-premises infrastructure.

More information

Application Development

Application Development Microsoft SQL Azure: Enterprise Application Development Build enterprise-ready applications and projects with SQL Azure Jayaram Krishnaswamy PUBLISHING BIRMINGHAM - MUMBAI Preface 1 Chapter 1: Cloud Computing

More information

OVERVIEW. DIGIPASS Authentication for Office 365

OVERVIEW. DIGIPASS Authentication for Office 365 OVERVIEW DIGIPASS for Office 365 Disclaimer Disclaimer of Warranties and Limitation of Liabilities All information contained in this document is provided 'as is'; VASCO Data Security assumes no responsibility

More information

Feature Comparison. Windows Server 2008 R2 Hyper-V and Windows Server 2012 Hyper-V

Feature Comparison. Windows Server 2008 R2 Hyper-V and Windows Server 2012 Hyper-V Comparison and Contents Introduction... 4 More Secure Multitenancy... 5 Flexible Infrastructure... 9 Scale, Performance, and Density... 13 High Availability... 18 Processor and Memory Support... 24 Network...

More information

Course 20533B: Implementing Microsoft Azure Infrastructure Solutions

Course 20533B: Implementing Microsoft Azure Infrastructure Solutions Course 20533B: Implementing Microsoft Azure Infrastructure Solutions Sales 406/256-5700 Support 406/252-4959 Fax 406/256-0201 Evergreen Center North 1501 14 th St West, Suite 201 Billings, MT 59102 Course

More information

SQL Server Virtualization 101. David Klee, Group Principal and Practice Lead. SQL PASS Virtualization VC, 2014.01.08

SQL Server Virtualization 101. David Klee, Group Principal and Practice Lead. SQL PASS Virtualization VC, 2014.01.08 SQL Server Virtualization 101 David Klee, Group Principal and Practice Lead SQL PASS Virtualization VC, 2014.01.08 www.linchpinpeople.com 1 David Klee Group Principal and Practice Lead @kleegeek davidklee.net

More information

Cisco Wide Area Application Services Optimizes Application Delivery from the Cloud

Cisco Wide Area Application Services Optimizes Application Delivery from the Cloud Cisco Wide Area Application Services Optimizes Application Delivery from the Cloud What You Will Learn The adoption of cloud-based computing and applications promises to improve the agility, efficiency,

More information

126 SW 148 th Street Suite C-100, #105 Seattle, WA 98166 Tel: 877-795-9372 Fax: 866-417-6192 www.seattlepro.com

126 SW 148 th Street Suite C-100, #105 Seattle, WA 98166 Tel: 877-795-9372 Fax: 866-417-6192 www.seattlepro.com SharePoint 2010 Bootcamp This five-day course is designed to equip Systems Administrators, Integrators and Developers with a strong foundation for implementing solutions on Microsoft SharePoint 2010. Attendees

More information

Installation and Deployment in Microsoft Dynamics CRM 2013

Installation and Deployment in Microsoft Dynamics CRM 2013 Course 80539A: Installation and Deployment in Microsoft Dynamics CRM 2013 Course Details Course Outline Module 1: System Requirement and Required Technologies This module provides a high-level overview

More information

Flexible Identity Federation

Flexible Identity Federation Flexible Identity Federation Quick start guide version 1.0.1 Publication history Date Description Revision 2015.09.23 initial release 1.0.0 2015.12.11 minor updates 1.0.1 Copyright Orange Business Services

More information

Alfresco Enterprise on Azure: Reference Architecture. September 2014

Alfresco Enterprise on Azure: Reference Architecture. September 2014 Alfresco Enterprise on Azure: Reference Architecture Page 1 of 14 Abstract Microsoft Azure provides a set of services for deploying critical enterprise workloads on its highly reliable cloud platform.

More information

SharePoint 2013 Business Connectivity Services Hybrid Overview

SharePoint 2013 Business Connectivity Services Hybrid Overview SharePoint 2013 Business Connectivity Services Hybrid Overview Christopher J Fox Microsoft Corporation November 2012 Applies to: SharePoint 2013, SharePoint Online Summary: A hybrid SharePoint environment

More information

Microsoft Azure Cloud on your terms. Start your cloud journey.

Microsoft Azure Cloud on your terms. Start your cloud journey. Microsoft Azure Cloud on your terms. Start your cloud journey. Subscribe, Deploy, Migrate and Get Finance and Support for your Hybrid and/or Cloud Data Center. Never pay huge upfront Cost. How can Azure

More information

INSTALLATION AND DEPLOYMENT IN MICROSOFT DYNAMICS CRM 2013

INSTALLATION AND DEPLOYMENT IN MICROSOFT DYNAMICS CRM 2013 INSTALLATION AND DEPLOYMENT IN MICROSOFT DYNAMICS CRM 2013 LENGTH : 2 DAYS OVERWIEW This two-day training course provides individuals with the skills to install and deploy Microsoft Dynamics CRM 2013.

More information

Application Migration Best Practices. Gregory Shepard Senior Consultant InCycle Software

Application Migration Best Practices. Gregory Shepard Senior Consultant InCycle Software Application Migration Best Practices Gregory Shepard Senior Consultant InCycle Software We Help Organizations Get to the Next Level ALM MVPs and ALM consultants in six locations Application Migration Best

More information

Symantec Workspace Streaming 6.1

Symantec Workspace Streaming 6.1 Workspace Management: Simplify IT Organizations Data Sheet: Endpoint Virtualization Overview As IT organizations today face the reality of managing an increasingly complex mix of desktops, laptops, and

More information

Manage all your Office365 users and licenses

Manage all your Office365 users and licenses Manage all your Office365 users and licenses Delegate 365 White Paper Authors: Toni Pohl, Martina Grom Version: 1.2 of December 2014 atwork information technology gmbh. All rights reserved. For information

More information