PS SharePoSH:\> Lists & Views SharePoint + PowerShell User Group September 14, 2012.

Slides:



Advertisements
Similar presentations
Organizing List and Documents with Site Columns and Content Types Gayan Peiris Principal Consultant
Advertisements

Welcome to the Minnesota SharePoint User Group. Agenda Quick Intro Announcements and News Document Management Content Types Records Management Q&A.
2013 Workflow Basics IN PLAIN ENGLISH FOR BUSINESS USERS.
PowerShell for SharePoint Developers and Administrators Michael Blumenthal Magenic Technologies
2013 Workflow Basics IN PLAIN ENGLISH FOR BUSINESS USERS.
St. Louis Day of Dot Net 2011 Building Web Parts for an Office 365 SharePoint Site Becky Bertram Independent SharePoint Consultant SharePoint MVP, MCSD.NET,
InfoPath Forms and Workflows in SP 2010 Wylde Solutions Sydney SharePoint User Group 18 September 2011 Sydney, Australia.
Microsoft ® Official Course Working with SharePoint Objects Microsoft SharePoint 2013 SharePoint Practice.
10 PowerShell Commands Every Admin Should Know David Price.
Migrating Full-Trust Solutions to the Cloud Scot
Agenda 22 7.SharePoint Changes 8.Items & Lists 9.Files & Libraries 10.SharePoint & Office 11.Help 12.Wrap Up.
Becky Bertram SharePoint MVP
Philadelphia Area SharePoint User Group Welcome to the Philadelphia Area SharePoint User Group Russ Basiura SharePoint Consultant.
SSRS Integration with SharePoint JACOB CHANG. Jacob Chang MCSE Degree in biology and computer engineering Started as an application developer Worked with.
Microsoft Certification Exam Coaching Session: Application Development.
Welcome to the Minnesota SharePoint User Group. Quick Intro Announcements Personalization in SharePoint Configuring User Profiles Configuring Audiences.
Introduction to SharePoint Development with VS2010 Paul Yuknewicz Lead Program Manager
Categorization, views, search and retrieval Becky Bertram Covenant Technology Partners.
Deferred Site Collection Upgrade Self-Service Site Collection Upgrades.
Variations and the MUI in SharePoint 2010 Gary Lapointe, MVP.
OBJECT REFERENCE. Objective How to work with objects in SharePoint by using classes?
PS SharePoSH:\> PowerPivot & other BI Commands REST APIs & PowerShell SharePoint.
CMDB Ticketing Billing Management Systems VIRTUAL MACHINE CLOUDS 12 SQL SERVER 9 PLANS 12 WEBSITE CLOUD 12 MYSQL SERVERS 0 NOTIFICATIONS 0 USER.
9 Agenda Views Pages Web Parts Navigation Office Wrap-Up.
Copyright © 2006 Pilothouse Consulting Inc. All rights reserved. Workflow Development Overview Architecture Requirements Types of workflows Stages of workflow.
SharePoint Technology Specialist SharePoint 2010 MCITP & MCTS Certifications.
Copyright © 2006 Pilothouse Consulting Inc. All rights reserved. Customization Using SharePoint Designer 2007 Overview Editing look and feel –Master pages.
PowerShell for SharePoint Developers and Administrators Michael Blumenthal Magenic Technologies
Национальная процедура одобрения и регистрации проектов (программ) международной технической помощи (исключая представление информации об организации и.
Roles 1. Your Role: End User End Users use Inside NCDOT and Connect NCDOT for basic browsing and reading Typical tasks can include: Open or download files.
Copyright © 2006 Pilothouse Consulting Inc. All rights reserved. SharePoint API and Development in ASP.NET Creating “Hello World” application Working with.
PS SharePoSH:\> SPListItem / SPFile SharePoint + PowerShell User Group March 27,
What’s New in SharePoint 2010 SharePoint 2010 Development Primer New Developer Tools for SharePoint 2010 SharePoint 2010 Integration with PowerShell.
PS SharePoSH:\> SharePoint Solutions & Features SharePoint + PowerShell User Group.
CharMeck.org Contributer Training SharePoint 2013 Orientation and Basic Training.
PS SharePoSH:\> Web Parts! SharePoint + PowerShell User Group August 17, 2012.
PS SharePoSH:\> SPSite & SPWebs SharePoint + PowerShell User Group November 21, 2012.
CSPUG Migration. Options to move from SharePoint 2007 to SharePoint 2010 Upgrade the current environment Build a new SharePoint 2010 and migrate data.
Welcome to the Minnesota SharePoint User Group August 13 th, 2008 Open Panel Discussion Wes Preston, Todd Klindt, Neil Iversen,
Transportation Agenda 165. Transportation About Pages Pages organize and present information Pages are files that end in.aspx 166.
Working with PerformancePoint in SharePoint 2013 Christina Wheeler.
©2012 Microsoft Corporation. All rights reserved. Content based on SharePoint 15 Technical Preview and published July 2012.
Digitization and electronic libraries – “Digital library” Bogdan Trifunovic, M.A. Center for Digitization Public Library "Vladislav Petkovic Dis“ Cacak.
Programming the Microsoft SharePoint Products and Technologies Object Model Paul Appleby Developer & Platform Group
InfoPath Forms and Workflows in SP 2010 Wylde Solutions Sydney SharePoint User Group 18 September 2011 Sydney, Australia.
Who Am I? Haystax Technology Contact Info Todays Agenda.
Microsoft Virtual Academy Jamie McAllister | SharePoint MVP & Solution Architect Rob Latino | Program Manager in Office 365 Support.
SharePoint Doesn’t Suck, Your Search Sucks
Conceptual Overview For Understanding the New Paradigm Provided by: Web Services Section.
Microsoft Office System 2007: Records Management Wes Preston Inetium.
Name Developing your own Query Magic in SharePoint Search Virgil Carroll principal architect, high monkey.
Transportation Agenda 19. Transportation Your Role: Designer Designers organize SharePoint content and determine how to display that content Typical tasks.
Test Title Test Content.
Joy Rathnayake Senior Architect – Virtusa Pvt. Ltd.
SharePoint Portal Server & Windows SharePoint Services Overview
Content Types: The Backbone of Your Information Architecture
Servicenow Admin Certification Training
Templates Manager ‒ Introduction
Agenda item number 1 Agenda item number 2 Agenda item number 3 Agenda item number 4 Agenda item number 5.
[INSERT TITLE OF PRESENTATION]
Site scripts and Site Design
SharePoint Foundation 2010
Expert group on management of Natura 2000
TITLE OF THE PRESENTATION
Is a Content Management System in Your Future?
St. Louis Day of Dot Net 2011 Building Web Parts for an Office 365 SharePoint Site Becky Bertram Independent SharePoint Consultant SharePoint MVP, MCSD.NET,
Break-out Session #2: EDIT Usage In Member States
Presentation transcript:

PS SharePoSH:\> Lists & Views SharePoint + PowerShell User Group September 14, 2012

PS SharePoSH:\> Agenda Hello! Group Logistics (GoToMeeting/ website / register / / twitter) Lists & Views Useful Scripts Next meeting

PS SharePoSH:\> Raymond Mitchell SharePoint Consultant – Author Dad Information Worker Kid – SharePoSHing since 2008 Hello!

PS SharePoSH:\> What about you?

PS SharePoSH:\> Lists & Views Lists & Views Basics Review SPListCollection SPList Creating Lists (templates) SPField SPView

PS SharePoSH:\> List & Views Lists – View all site content – Hidden lists (Galleries, Workflow Support, User Info) – Lists vs. Libraries Views – Shared and Personal – Hidden

PS SharePoSH:\> SPListCollection SPWeb.Lists Filter by Type / Hidden $web.Lists | ? { $_.BaseType -eq "DocumentLibrary" -and $_.Hidden -eq $false } | ft Title, Hidden, RootFolder

PS SharePoSH:\> SPList SPWeb.Lists[title] SPWeb.GetList(url) SPListCollection.GetList(GUID, bool) SPListCollection.TryGetList(title)

PS SharePoSH:\> SPList Common Properties – Title, Description, Hidden, Versioning, DefaultView, Items, BaseType – RootFolder, EventReceivers, ContentTypes, WorkflowAssociations Common Methods – GetItems – GetItemById us/library/microsoft.sharepoint.splist_properties

PS SharePoSH:\> Creating Lists SPListCollection.Add(title, description, template) SPListTemplateType ( us/library/microsoft.sharepoint.splisttemplatetype) us/library/microsoft.sharepoint.splisttemplatetype SPWeb.ListTemplates SPSite.GetCustomListTemplates(web)

PS SharePoSH:\> SPField SPFieldCollection.Add(name, Type, bool) SPFieldType ( us/library/microsoft.sharepoint.spfieldtype) us/library/microsoft.sharepoint.spfieldtype

PS SharePoSH:\> SPView SPList.DefaultView ViewFields.Add(title)

PS SharePoSH:\> YOUR scripts!

PS SharePoSH:\> Next Meeting Wednesday, October 17 th Topics: – Publishing – IIS / web.config – Security – Crazy Stuff

PS SharePoSH:\> Resources PowerShell + SharePoint forum at PowerShell.org: –