SlideShare a Scribd company logo
Agenda
• What’s New in SharePoint 2010
• SharePoint 2010 Development Primer
• New Developer tool for SharePoint 2010
• SharePoint 2010 Integration with PowerShell
SharePoint 2010
SharePoint 2010
What’s New in SharePoint 2010
SharePoint 2007
Are you familiar with MOSS 2007 and WSS 3.0
•as a user?
•as a site administrator?
•as a farm administrator?
•as a developer?
What types of components have you developed for SharePoint?
•Features and Solution packages
•Web Parts and Event Handlers
•List Definition and Site Definition
What Tools and utilities have you used?
•Visual Studio Extensions for WSS 3.0
•Code Plex utilities
What’s New in SharePoint 2010
SharePoint Server 2010 is the next version of the SharePoint technology
stack. There will be three different SKUs for SharePoint Server 2010
•SharePoint 2010 Server Enterprise
•SharePoint 2010 Server Standard
•Microsoft SharePoint Foundation
SharePoint 2010 Server only runs on 64-bit operating systems. This is
different from MOSS 2007 and WSS 3.0 which ran on either a 32-bit OS
and a 64-bit OS.
SharePoint 2010 Server is the first version of the product that supports
installation on a client OS for development.
The supported clients Oss included 64-bit version of Windows 7 and
Windows Vista.
IIS 7.0 investments – few changes for the httpmodules and httphandlers
registrations in the web.config – requires changes to webconfig
modifications .
Ajax & Silverlight modifications natively supported by the platform.
What’s New in SharePoint 2010
What’s New in SharePoint 2010
The value proposition of SharePoint 2010 can be split across 6 functional
areas as seen in what is commonly referred to as the "SharePoint Pie".
Here is a quicker decoder ring to understand what each piece of the pie is
all about.
•Sites: Collaboration (e.g. Team sites)
•Communities: Social networking (Blogs, Wikis, User profiles)
•Search: Content discovery and connecting people
•Content: WCM, ECM, DM and RM
•Composites: Building no-code applications with external data (BCS)
•Insights: Business Intelligence and Reporting
What’s New in SharePoint 2010
What’s New in SharePoint 2010
The SharePoint 2010 Team site looks quite a bit different from
SharePoint 2007
•Master page has changed (Site Action menu now on left)
•Home Page is a wiki page (SitePages/Home.aspx)
•New lists and galleries created behind the scenes
What’s New in SharePoint 2010
What’s New in SharePoint 2010
•Create a new Team using SharePoint Central Admin
•Demo the CA in high level – just to show the new UI
•Create new team site
•Navigate to the Team Site and demonstrate new SharePoint 2010 UI
•Demonstrate ribbon
•Edit page – show the new ribbon functionalities
•Live preview capability
•Picture adding
•Updated WebPart adding functionality
•Versioning of page – including web part versioning
•Fluency – add list web part -> you access the list content from
the web part ribbon settings
What’s New in SharePoint 2010
SharePoint 2010
SharePoint 2010
SharePoint 2010
SharePoint 2007
Things to note about the "Hello world" application - SharePoint style
•This code requires a reference to Microsoft.SharePoint.dll.
•SharePoint object model using a new SPSite object
•using construct to ensure Dispose is called
•Many collections in SharePoint object model support For Each enumeration.
Backward compatible way of handling the objects.
Key code is fully functional from 2007 to 2010.
.NET version is 3.5 for both MOSS 2007 and SharePoint 2010
- Platform as any or x64 for SharePoint 2010
SharePoint 2010
The developer dashboard has been introduced with SharePoint Server 2010. It
shows diagnostics and performance-related statistics.
•How long did the request take to run?
•What event handlers were fired?
•In what sequence did these event handlers fire?
SharePoint 2010
Quite often (but not always) you must launch Visual Studio 2010 as
Administrator to get debugging working correctly. Much of this has to due
with the fact that the identity behind the Windows process for Visual Studio
2010 need sufficient rights to be to attach to and debug the IIS Worker Process
(W3WP.EXE)
SharePoint 2010
SharePoint 2010
Create a simple Console application
•Make a point to mention it has to be built for x64 or Any Platform.
•Connect to site using SPSite
•Make sure to create new SPSite object inside using construct
•Get hold of SPWeb object for top-level site
•Enumerate through all lists and print each list title to Console window
SharePoint 2010
SharePoint 2010
SharePoint 2010
SharePoint 2010
SharePoint Designer has gone through many significant changes
•SharePoint objects such as lists and workflow associations are seen as first
class objects in the new UI
•Each SharePoint object has a summary page
•The new workflow designer is much more powerful
•SPD can create reusable workflows – this was a big problem in SPD 2007
•Prototypes created in SPD can be migrated into Visual Studio 2010
SharePoint 2010
SharePoint 2010
SharePoint Designer
•Launch SharePoint Designer
•Backstage view in Office 2010
•Open team site create earlier this module
•Show summary pages for existing lists
•Explain the ribbon
•Create a new list and show how quick and easy it is to create a custom set of
columns
•Explain the list summary page and how it can be used to manage the
different setting of list. Mention also that you can customize the view rendering
(which can be exported as wsp package features), or create custom actions etc.
SharePoint 2010
SharePoint 2010
SharePoint 2010
The SharePoint team has now gotten in line with many other server product
teams at Microsoft and made SharePoint Server 2010 completely administrate-
able through PowerShell scripts.
The bottom line is that all administrators and developers working with
SharePoint Server 2010 should know or get to know PowerShell scripting. The
remainder of this lecture is designed to give an introductory primer for students
with either limited or no previous experience with PowerShell.
SharePoint 2010
SharePoint 2010
Over the last few years, PowerShell scripting has begun to replace older DOS-
style batch files and VBScript files as the preferred way to manage and automate
administrative tasks
•Cmdlets are callable functions
•Pipelining allow one Cmdlet to return an object as input to another
•PowerShell includes formatting features to display output using lists or tables
•PowerShell is based on a provider-based model based on Snap-ins
•SharePoint support added through Microsoft.SharePoint.Powershell..
SharePoint 2010
SharePoint 2010
The first example shows calling a Cmdlet that takes no parameters The
second example adds filtering by adding a Where command
•Where-Object {$_.name –eq "F*"}
•The syntaxt $_ refers to the object in question
•$_.name refers to the object's name property
•-eq is the operator for equals
The third example adds in formatting instructions The last example
redirects output so it is stored in a new text files.
SharePoint 2010
SharePoint 2010
By default, Powershell does not allow script to run
•Administrator must change execution policy to enable script execution.
Execution Policy Settings
•restricted (default) – scripts prohibited from executing
•unrestricted - scripts can execute. Scripts that are signed can run with user
interaction. Scripts that are not signed result in prompting user for
permission to execute.
•bypass (developer mode) – scripts can execute and user interaction is
suppressed.
SharePoint 2010
SharePoint 2010
SharePoint 2010
SharePoint Server 2010 adds many Cmdlets for SharePoint administration
through a Snap-in provider named Microsoft.SharePoint.PowerShell. The
SharePoint cmdlets cannot be called until the SharePoint snap-in has been
loaded.
There are two common ways to load the SharePoint snap-in
•Call the Add-PSSnapin cmdlet and pass a parameter with the snap-in
name
•Launch the PowerShell console using SharePoint Management Console.
This link points to an XML file that loads the SharePoint snap-in in a
declarative fashion.
SharePoint 2010
The first example shows how to get a farm-wide list of all features that have been
installed with a Display Name that contains the word "Publishing". This example
also shows how to use PowerShell fundamentals for filtering, sorting and
formatting.
The second example shows a PowerShell script which uses the New-SPSite cmdlet
to create a new site. You should observe that the New-SPSite cmdlet returns a
SPSite object which is then used to access the SPWeb object for the top-level site.
SharePoint 2010
SharePoint 2010
SharePoint 2010
If you are going to work with SharePoint Server 2010 as a developer or as an
administrator, you must learn PowerShell from the perspective of someone that
consumes cmdlets. However, it some scenarios you might actually want to develop
our own custom cmdlets by creating a PowerShell snap-in.
This approach allows you to develop in a richer environment like Visual Studio 2010
to build reusable components which encapsulate the logic for ongoing
administrative tasks.
SharePoint Installation
Practical Demonstration
Q & A

More Related Content

What's hot

Advanced SharePoint 2013 Site Administration
Advanced SharePoint 2013 Site AdministrationAdvanced SharePoint 2013 Site Administration
Advanced SharePoint 2013 Site Administration
Learning SharePoint
 
Share Point For Beginners V1
Share Point For Beginners V1Share Point For Beginners V1
Share Point For Beginners V1
MJ Ferdous
 
SharePoint 101
SharePoint 101SharePoint 101
SharePoint 101
Dux Raymond Sy
 
What's new in SharePoint Server 2013 (End user - Admin – Developer)
What's new in SharePoint Server 2013 (End user - Admin – Developer)What's new in SharePoint Server 2013 (End user - Admin – Developer)
What's new in SharePoint Server 2013 (End user - Admin – Developer)
Mahmoud Hamed Mahmoud
 
SharePoint 2010 Team Site Overview
SharePoint 2010 Team Site OverviewSharePoint 2010 Team Site Overview
SharePoint 2010 Team Site Overview
Ivor Davies
 
Core SharePoint 2013 Concepts
Core SharePoint 2013 ConceptsCore SharePoint 2013 Concepts
Core SharePoint 2013 Concepts
Learning SharePoint
 
How to implement SharePoint in your organization
How to implement SharePoint in your organizationHow to implement SharePoint in your organization
How to implement SharePoint in your organization
SPC Adriatics
 
Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013
Vishal Pawar
 
SharePoint Branding Guidance @ SharePoint Saturday Redmond
SharePoint Branding Guidance @ SharePoint Saturday RedmondSharePoint Branding Guidance @ SharePoint Saturday Redmond
SharePoint Branding Guidance @ SharePoint Saturday Redmond
Kanwal Khipple
 
Jordan Remix - SharePoint 2010
Jordan Remix - SharePoint 2010Jordan Remix - SharePoint 2010
Jordan Remix - SharePoint 2010
Jordan Remix
 
Sharepoint 2010 overview - what it is and what it can do
Sharepoint 2010 overview - what it is and what it can doSharepoint 2010 overview - what it is and what it can do
Sharepoint 2010 overview - what it is and what it can do
Faisal Masood
 
Share point overview
Share point overviewShare point overview
Share point overview
Muhammad Younis
 
Advanced SharePoint 2010 Features
Advanced SharePoint 2010 FeaturesAdvanced SharePoint 2010 Features
Advanced SharePoint 2010 FeaturesIvor Davies
 
10 razones para pasarse a SharePoint 2010
10 razones para pasarse a SharePoint 201010 razones para pasarse a SharePoint 2010
10 razones para pasarse a SharePoint 2010
Raona
 
Advanced SharePoint Server Concepts
Advanced SharePoint Server ConceptsAdvanced SharePoint Server Concepts
Advanced SharePoint Server Concepts
Learning SharePoint
 
Microsoft SharePoint 2010 Overview Session 1
Microsoft SharePoint 2010 Overview Session 1Microsoft SharePoint 2010 Overview Session 1
Microsoft SharePoint 2010 Overview Session 1
Sourav Nayyar
 
Introduction To SharePoint 2010
Introduction To SharePoint 2010Introduction To SharePoint 2010
Introduction To SharePoint 2010Rishu Mehra
 
Intermediate SharePoint 2010 Training
Intermediate SharePoint 2010 TrainingIntermediate SharePoint 2010 Training
Intermediate SharePoint 2010 Training
Ivor Davies
 
Basics of SharePoint
Basics of SharePointBasics of SharePoint
Basics of SharePointsamirsangli
 

What's hot (20)

Advanced SharePoint 2013 Site Administration
Advanced SharePoint 2013 Site AdministrationAdvanced SharePoint 2013 Site Administration
Advanced SharePoint 2013 Site Administration
 
Share Point For Beginners V1
Share Point For Beginners V1Share Point For Beginners V1
Share Point For Beginners V1
 
SharePoint 101
SharePoint 101SharePoint 101
SharePoint 101
 
What's new in SharePoint Server 2013 (End user - Admin – Developer)
What's new in SharePoint Server 2013 (End user - Admin – Developer)What's new in SharePoint Server 2013 (End user - Admin – Developer)
What's new in SharePoint Server 2013 (End user - Admin – Developer)
 
SharePoint 2010 Team Site Overview
SharePoint 2010 Team Site OverviewSharePoint 2010 Team Site Overview
SharePoint 2010 Team Site Overview
 
Core SharePoint 2013 Concepts
Core SharePoint 2013 ConceptsCore SharePoint 2013 Concepts
Core SharePoint 2013 Concepts
 
How to implement SharePoint in your organization
How to implement SharePoint in your organizationHow to implement SharePoint in your organization
How to implement SharePoint in your organization
 
Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013Introduction To Microsoft SharePoint 2013
Introduction To Microsoft SharePoint 2013
 
SharePoint Branding Guidance @ SharePoint Saturday Redmond
SharePoint Branding Guidance @ SharePoint Saturday RedmondSharePoint Branding Guidance @ SharePoint Saturday Redmond
SharePoint Branding Guidance @ SharePoint Saturday Redmond
 
Jordan Remix - SharePoint 2010
Jordan Remix - SharePoint 2010Jordan Remix - SharePoint 2010
Jordan Remix - SharePoint 2010
 
Sharepoint 2010 overview - what it is and what it can do
Sharepoint 2010 overview - what it is and what it can doSharepoint 2010 overview - what it is and what it can do
Sharepoint 2010 overview - what it is and what it can do
 
Share point overview
Share point overviewShare point overview
Share point overview
 
Advanced SharePoint 2010 Features
Advanced SharePoint 2010 FeaturesAdvanced SharePoint 2010 Features
Advanced SharePoint 2010 Features
 
10 razones para pasarse a SharePoint 2010
10 razones para pasarse a SharePoint 201010 razones para pasarse a SharePoint 2010
10 razones para pasarse a SharePoint 2010
 
Advanced SharePoint Server Concepts
Advanced SharePoint Server ConceptsAdvanced SharePoint Server Concepts
Advanced SharePoint Server Concepts
 
Microsoft SharePoint 2010 Overview Session 1
Microsoft SharePoint 2010 Overview Session 1Microsoft SharePoint 2010 Overview Session 1
Microsoft SharePoint 2010 Overview Session 1
 
Introduction To SharePoint 2010
Introduction To SharePoint 2010Introduction To SharePoint 2010
Introduction To SharePoint 2010
 
Intermediate SharePoint 2010 Training
Intermediate SharePoint 2010 TrainingIntermediate SharePoint 2010 Training
Intermediate SharePoint 2010 Training
 
Basics of SharePoint
Basics of SharePointBasics of SharePoint
Basics of SharePoint
 
Beginners SharePoint introduction
Beginners SharePoint introductionBeginners SharePoint introduction
Beginners SharePoint introduction
 

Similar to Share point 2010_day5

SharePoint Fundamentals (Lesson 1&2)
SharePoint Fundamentals (Lesson 1&2)SharePoint Fundamentals (Lesson 1&2)
SharePoint Fundamentals (Lesson 1&2)
MJ Ferdous
 
SharePoint Development (Lesson 4)
SharePoint Development (Lesson 4)SharePoint Development (Lesson 4)
SharePoint Development (Lesson 4)
MJ Ferdous
 
Share point review qustions
Share point review qustionsShare point review qustions
Share point review qustions
than sare
 
Share point answer the question
Share point answer the questionShare point answer the question
Share point answer the question
than sare
 
Building End-to-End Solutions Leveraging SharePoint 2010 and Office 2010 Appl...
Building End-to-End Solutions Leveraging SharePoint 2010 and Office 2010 Appl...Building End-to-End Solutions Leveraging SharePoint 2010 and Office 2010 Appl...
Building End-to-End Solutions Leveraging SharePoint 2010 and Office 2010 Appl...
Planet Technologies
 
2012 MindSurf - Augmenting Business Process with SharePoint
2012 MindSurf - Augmenting Business Process with SharePoint2012 MindSurf - Augmenting Business Process with SharePoint
2012 MindSurf - Augmenting Business Process with SharePoint
Don Donais
 
SharePoint 2010 - InfoPath, Workflow
SharePoint 2010 - InfoPath, WorkflowSharePoint 2010 - InfoPath, Workflow
SharePoint 2010 - InfoPath, WorkflowJonathon Schultz
 
Session 5-SharePoint with Office-Donovan Follette
Session 5-SharePoint with Office-Donovan FolletteSession 5-SharePoint with Office-Donovan Follette
Session 5-SharePoint with Office-Donovan FolletteMithun T. Dhar
 
SharePoint 2010 as a Development Platform, Ayman El-Hattab MVP
SharePoint 2010 as a Development Platform, Ayman El-Hattab MVPSharePoint 2010 as a Development Platform, Ayman El-Hattab MVP
SharePoint 2010 as a Development Platform, Ayman El-Hattab MVP
Ayman El-Hattab
 
SharePoint 2010 and its development tools
SharePoint 2010 and its development toolsSharePoint 2010 and its development tools
SharePoint 2010 and its development toolsShakir Majeed Khan
 
Visual Studio2010 Tools For Share Point
Visual Studio2010 Tools For Share PointVisual Studio2010 Tools For Share Point
Visual Studio2010 Tools For Share PointChakkaradeep Chandran
 
Share point 2013
Share point 2013Share point 2013
Share point 2013LiquidHub
 
Sp2010 Office 2010 Web Seminar
Sp2010 Office 2010 Web SeminarSp2010 Office 2010 Web Seminar
Sp2010 Office 2010 Web SeminarASPE, Inc.
 
SharePoint Office 2010 Web Seminar
SharePoint  Office 2010  Web  SeminarSharePoint  Office 2010  Web  Seminar
SharePoint Office 2010 Web SeminarASPE, Inc.
 
SharePoint Development(Lesson 5)
SharePoint Development(Lesson 5)SharePoint Development(Lesson 5)
SharePoint Development(Lesson 5)
MJ Ferdous
 
4 tools, sandboxed solutionds, web part development
4   tools, sandboxed solutionds, web part development4   tools, sandboxed solutionds, web part development
4 tools, sandboxed solutionds, web part development
icdesktop
 
SharePoint 2010 Developer 101
SharePoint 2010 Developer 101SharePoint 2010 Developer 101
SharePoint 2010 Developer 101
Nick Hadlee
 
Share Point 2010 Workflow
Share Point 2010 WorkflowShare Point 2010 Workflow
Share Point 2010 WorkflowPhuong Nguyen
 
Share Point
Share PointShare Point
Share Point
Rameshwar Trivedi
 
Office 365 development
Office 365 developmentOffice 365 development
Office 365 development
younjw
 

Similar to Share point 2010_day5 (20)

SharePoint Fundamentals (Lesson 1&2)
SharePoint Fundamentals (Lesson 1&2)SharePoint Fundamentals (Lesson 1&2)
SharePoint Fundamentals (Lesson 1&2)
 
SharePoint Development (Lesson 4)
SharePoint Development (Lesson 4)SharePoint Development (Lesson 4)
SharePoint Development (Lesson 4)
 
Share point review qustions
Share point review qustionsShare point review qustions
Share point review qustions
 
Share point answer the question
Share point answer the questionShare point answer the question
Share point answer the question
 
Building End-to-End Solutions Leveraging SharePoint 2010 and Office 2010 Appl...
Building End-to-End Solutions Leveraging SharePoint 2010 and Office 2010 Appl...Building End-to-End Solutions Leveraging SharePoint 2010 and Office 2010 Appl...
Building End-to-End Solutions Leveraging SharePoint 2010 and Office 2010 Appl...
 
2012 MindSurf - Augmenting Business Process with SharePoint
2012 MindSurf - Augmenting Business Process with SharePoint2012 MindSurf - Augmenting Business Process with SharePoint
2012 MindSurf - Augmenting Business Process with SharePoint
 
SharePoint 2010 - InfoPath, Workflow
SharePoint 2010 - InfoPath, WorkflowSharePoint 2010 - InfoPath, Workflow
SharePoint 2010 - InfoPath, Workflow
 
Session 5-SharePoint with Office-Donovan Follette
Session 5-SharePoint with Office-Donovan FolletteSession 5-SharePoint with Office-Donovan Follette
Session 5-SharePoint with Office-Donovan Follette
 
SharePoint 2010 as a Development Platform, Ayman El-Hattab MVP
SharePoint 2010 as a Development Platform, Ayman El-Hattab MVPSharePoint 2010 as a Development Platform, Ayman El-Hattab MVP
SharePoint 2010 as a Development Platform, Ayman El-Hattab MVP
 
SharePoint 2010 and its development tools
SharePoint 2010 and its development toolsSharePoint 2010 and its development tools
SharePoint 2010 and its development tools
 
Visual Studio2010 Tools For Share Point
Visual Studio2010 Tools For Share PointVisual Studio2010 Tools For Share Point
Visual Studio2010 Tools For Share Point
 
Share point 2013
Share point 2013Share point 2013
Share point 2013
 
Sp2010 Office 2010 Web Seminar
Sp2010 Office 2010 Web SeminarSp2010 Office 2010 Web Seminar
Sp2010 Office 2010 Web Seminar
 
SharePoint Office 2010 Web Seminar
SharePoint  Office 2010  Web  SeminarSharePoint  Office 2010  Web  Seminar
SharePoint Office 2010 Web Seminar
 
SharePoint Development(Lesson 5)
SharePoint Development(Lesson 5)SharePoint Development(Lesson 5)
SharePoint Development(Lesson 5)
 
4 tools, sandboxed solutionds, web part development
4   tools, sandboxed solutionds, web part development4   tools, sandboxed solutionds, web part development
4 tools, sandboxed solutionds, web part development
 
SharePoint 2010 Developer 101
SharePoint 2010 Developer 101SharePoint 2010 Developer 101
SharePoint 2010 Developer 101
 
Share Point 2010 Workflow
Share Point 2010 WorkflowShare Point 2010 Workflow
Share Point 2010 Workflow
 
Share Point
Share PointShare Point
Share Point
 
Office 365 development
Office 365 developmentOffice 365 development
Office 365 development
 

Recently uploaded

Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 

Recently uploaded (20)

Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 

Share point 2010_day5

  • 1. Agenda • What’s New in SharePoint 2010 • SharePoint 2010 Development Primer • New Developer tool for SharePoint 2010 • SharePoint 2010 Integration with PowerShell SharePoint 2010
  • 3. What’s New in SharePoint 2010
  • 4. SharePoint 2007 Are you familiar with MOSS 2007 and WSS 3.0 •as a user? •as a site administrator? •as a farm administrator? •as a developer? What types of components have you developed for SharePoint? •Features and Solution packages •Web Parts and Event Handlers •List Definition and Site Definition What Tools and utilities have you used? •Visual Studio Extensions for WSS 3.0 •Code Plex utilities
  • 5. What’s New in SharePoint 2010
  • 6. SharePoint Server 2010 is the next version of the SharePoint technology stack. There will be three different SKUs for SharePoint Server 2010 •SharePoint 2010 Server Enterprise •SharePoint 2010 Server Standard •Microsoft SharePoint Foundation SharePoint 2010 Server only runs on 64-bit operating systems. This is different from MOSS 2007 and WSS 3.0 which ran on either a 32-bit OS and a 64-bit OS. SharePoint 2010 Server is the first version of the product that supports installation on a client OS for development. The supported clients Oss included 64-bit version of Windows 7 and Windows Vista. IIS 7.0 investments – few changes for the httpmodules and httphandlers registrations in the web.config – requires changes to webconfig modifications . Ajax & Silverlight modifications natively supported by the platform. What’s New in SharePoint 2010
  • 7. What’s New in SharePoint 2010
  • 8. The value proposition of SharePoint 2010 can be split across 6 functional areas as seen in what is commonly referred to as the "SharePoint Pie". Here is a quicker decoder ring to understand what each piece of the pie is all about. •Sites: Collaboration (e.g. Team sites) •Communities: Social networking (Blogs, Wikis, User profiles) •Search: Content discovery and connecting people •Content: WCM, ECM, DM and RM •Composites: Building no-code applications with external data (BCS) •Insights: Business Intelligence and Reporting What’s New in SharePoint 2010
  • 9. What’s New in SharePoint 2010
  • 10. The SharePoint 2010 Team site looks quite a bit different from SharePoint 2007 •Master page has changed (Site Action menu now on left) •Home Page is a wiki page (SitePages/Home.aspx) •New lists and galleries created behind the scenes What’s New in SharePoint 2010
  • 11. What’s New in SharePoint 2010
  • 12. •Create a new Team using SharePoint Central Admin •Demo the CA in high level – just to show the new UI •Create new team site •Navigate to the Team Site and demonstrate new SharePoint 2010 UI •Demonstrate ribbon •Edit page – show the new ribbon functionalities •Live preview capability •Picture adding •Updated WebPart adding functionality •Versioning of page – including web part versioning •Fluency – add list web part -> you access the list content from the web part ribbon settings What’s New in SharePoint 2010
  • 16. SharePoint 2007 Things to note about the "Hello world" application - SharePoint style •This code requires a reference to Microsoft.SharePoint.dll. •SharePoint object model using a new SPSite object •using construct to ensure Dispose is called •Many collections in SharePoint object model support For Each enumeration. Backward compatible way of handling the objects. Key code is fully functional from 2007 to 2010. .NET version is 3.5 for both MOSS 2007 and SharePoint 2010 - Platform as any or x64 for SharePoint 2010
  • 17. SharePoint 2010 The developer dashboard has been introduced with SharePoint Server 2010. It shows diagnostics and performance-related statistics. •How long did the request take to run? •What event handlers were fired? •In what sequence did these event handlers fire?
  • 18. SharePoint 2010 Quite often (but not always) you must launch Visual Studio 2010 as Administrator to get debugging working correctly. Much of this has to due with the fact that the identity behind the Windows process for Visual Studio 2010 need sufficient rights to be to attach to and debug the IIS Worker Process (W3WP.EXE)
  • 20. SharePoint 2010 Create a simple Console application •Make a point to mention it has to be built for x64 or Any Platform. •Connect to site using SPSite •Make sure to create new SPSite object inside using construct •Get hold of SPWeb object for top-level site •Enumerate through all lists and print each list title to Console window
  • 24. SharePoint 2010 SharePoint Designer has gone through many significant changes •SharePoint objects such as lists and workflow associations are seen as first class objects in the new UI •Each SharePoint object has a summary page •The new workflow designer is much more powerful •SPD can create reusable workflows – this was a big problem in SPD 2007 •Prototypes created in SPD can be migrated into Visual Studio 2010
  • 26. SharePoint 2010 SharePoint Designer •Launch SharePoint Designer •Backstage view in Office 2010 •Open team site create earlier this module •Show summary pages for existing lists •Explain the ribbon •Create a new list and show how quick and easy it is to create a custom set of columns •Explain the list summary page and how it can be used to manage the different setting of list. Mention also that you can customize the view rendering (which can be exported as wsp package features), or create custom actions etc.
  • 29. SharePoint 2010 The SharePoint team has now gotten in line with many other server product teams at Microsoft and made SharePoint Server 2010 completely administrate- able through PowerShell scripts. The bottom line is that all administrators and developers working with SharePoint Server 2010 should know or get to know PowerShell scripting. The remainder of this lecture is designed to give an introductory primer for students with either limited or no previous experience with PowerShell.
  • 31. SharePoint 2010 Over the last few years, PowerShell scripting has begun to replace older DOS- style batch files and VBScript files as the preferred way to manage and automate administrative tasks •Cmdlets are callable functions •Pipelining allow one Cmdlet to return an object as input to another •PowerShell includes formatting features to display output using lists or tables •PowerShell is based on a provider-based model based on Snap-ins •SharePoint support added through Microsoft.SharePoint.Powershell..
  • 33. SharePoint 2010 The first example shows calling a Cmdlet that takes no parameters The second example adds filtering by adding a Where command •Where-Object {$_.name –eq "F*"} •The syntaxt $_ refers to the object in question •$_.name refers to the object's name property •-eq is the operator for equals The third example adds in formatting instructions The last example redirects output so it is stored in a new text files.
  • 35. SharePoint 2010 By default, Powershell does not allow script to run •Administrator must change execution policy to enable script execution. Execution Policy Settings •restricted (default) – scripts prohibited from executing •unrestricted - scripts can execute. Scripts that are signed can run with user interaction. Scripts that are not signed result in prompting user for permission to execute. •bypass (developer mode) – scripts can execute and user interaction is suppressed.
  • 38. SharePoint 2010 SharePoint Server 2010 adds many Cmdlets for SharePoint administration through a Snap-in provider named Microsoft.SharePoint.PowerShell. The SharePoint cmdlets cannot be called until the SharePoint snap-in has been loaded. There are two common ways to load the SharePoint snap-in •Call the Add-PSSnapin cmdlet and pass a parameter with the snap-in name •Launch the PowerShell console using SharePoint Management Console. This link points to an XML file that loads the SharePoint snap-in in a declarative fashion.
  • 40. The first example shows how to get a farm-wide list of all features that have been installed with a Display Name that contains the word "Publishing". This example also shows how to use PowerShell fundamentals for filtering, sorting and formatting. The second example shows a PowerShell script which uses the New-SPSite cmdlet to create a new site. You should observe that the New-SPSite cmdlet returns a SPSite object which is then used to access the SPWeb object for the top-level site. SharePoint 2010
  • 42. SharePoint 2010 If you are going to work with SharePoint Server 2010 as a developer or as an administrator, you must learn PowerShell from the perspective of someone that consumes cmdlets. However, it some scenarios you might actually want to develop our own custom cmdlets by creating a PowerShell snap-in. This approach allows you to develop in a richer environment like Visual Studio 2010 to build reusable components which encapsulate the logic for ongoing administrative tasks.
  • 44. Q & A