05 | Object for the Admin Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.

Slides:



Advertisements
Similar presentations
Windows PowerShell Crash Course Don Jones Concentrated Technology Jeffrey Snover Microsoft WSV321.
Advertisements

Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
Higher Course Assessment Question Paper Structure  Section 1 20 multiple choice questions 20 marks  Section 2 restricted and extended response questions.
 Jeffrey Snover Partner Architect Microsoft Corporation.
Microsoft ® Official Course Module 4 Automating Active Directory Domain Services Administration.
Module 2 Creating Active Directory ® Domain Services User and Computer Objects.
Microsoft ® Official Course Module XA Using Windows PowerShell ®
Graeme Malcolm | Senior Content Developer, Microsoft Geoff Allix | Principal Technologist, Content Master.
Module 3: Configuring Active Directory Objects and Trusts.
Introduction to Windows PowerShell DANIEL HIBBERT PRIMER FIELD ENGINEER DMVMUG User Conference 2013 – Reston, VA.
Module 1: Configuring Windows Server Module Overview Describe Windows Server 2008 roles Describe Windows Server 2008 features Describe Windows Server.
Disciplined Software Engineering Lecture #2 Software Engineering Institute Carnegie Mellon University Pittsburgh, PA Sponsored by the U.S. Department.
Module 2 Creating Active Directory ® Domain Services User and Computer Objects.
Managing System Center 2012 Configuration Manager with Windows PowerShell MEMUG August 23 rd 2013.
Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
Windows PowerShell. What is Windows PowerShell? A command-line interface (CLI) A new way of developing Windows and other products to be more manageable.
Microsoft ® Official Course Module 4 Automating Active Directory Domain Services Administration.
Get-Intro –Name PowerShell Jason Helmick Systems Instructor Interface Technical Training.
PowerShell 5 & Windows 10. What are we covering today? What is PowerShell? Why is PowerShell important? Some simple demos on Windows 10.
PowerShell Chattanooga
What’s New in ProMonitor 9
Azure on Steroids: Full Automation with PowerShell
Supporting Windows 8.1 Krystle Portocarrero | Training Experts Inc.
Assigning Practice Tests to Your Team
Microsoft - Managing Office 365 Identities and Requirements
TechEd /3/2018 4:18 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks.
Higher Course Assessment.
Deploying and Configuring SSIS Packages
02 | The Help system Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
Managing Exchange Online using Office 365 Admin Console
You will then answer the questions based on the problem set
Using Window Ranking, Offset, and Aggregate Functions
Getting Started with the Data ONTAP PowerShell Toolkit
02 | The Help system Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
07 | The Power in the Shell - Remoting
03 | The Pipeline : Getting Connected
Introduction to PowerShell
20761B 12: Using Set Operators Module 12   Using Set Operators.
02 | Querying Tables with SELECT
Testing in PowerShell Powered by Pester NATHAN ZIEHNERT 5/25/2018.
Getting Started with PowerShell Desired State Configuration (DSC)
08 | Tools that make changes
09 | Script and manifest modules
Office 365 Admin Support Skills: Service Management
Managing Exchange Online using PowerShell
09 | Automation in scale - Remoting
05 | More on Parameters Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
Managing Exchange Online using Office 365 Admin Console
Reporting An In-Depth Guide.
Getting Started with PowerShell Desired State Configuration (DSC)
Managing Exchange Online using Office 365 Admin Console
Managing Exchange Online using PowerShell
04 | Advanced Functions Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
08 | Getting prepared for automation
06 | The Pipeline : Deeper Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
Windows PowerShell Crash Course
PowerShell + SharePoint Online – An Admins Guide to Administration in the O365 Cloud Marrell Sanders – Sr. SharePoint Administrator NACS Branson, MO.
02 | PowerShell’s Scripting Language
06 | Writing Help Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
02 | Querying Tables with SELECT
Martin Coetzer | Portfolio Architect, Microsoft Learning eXperiences
PowerShell + SharePoint Online – An Admins Guide to Administration in the O365 Cloud Marrell Sanders – Sr. SharePoint Administrator SharePoint Saturday.
Managing Exchange Online using PowerShell
Getting Started with PowerShell Desired State Configuration (DSC)
Fast-Track UiPath Developer Module 6: Invoke Code and Invoke Method
07 | Error Handling Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology.
07 | Recovery Ashley McGlone | Premier Field Engineer, Microsoft
Using PowerShell for Active Directory
Jeffrey Snover | Distinguished Engineer & Lead Architect
10 | Introducing scripting and toolmaking
Presentation transcript:

05 | Object for the Admin Jeffrey Snover | Distinguished Engineer & Lead Architect Jason Helmick | Senior Technologist, Concentrated Technology

Course Topics Getting Started with PowerShell 01 | Don’t fear the shell 06 | The pipeline : Deeper 02 | The Help system 07 | The Power in the Shell - Remoting 03 | The pipeline : Getting connected 08 | Getting prepared for automation 04 | Extending the shell 09 | Automation in scale - Remoting 05 | Objects for the Admin 10 | Introducing scripting and toolmaking

Module Overview Object across the pipeline Getting the information you need Sorting Objects Selecting Objects Custom Properties Filtering data Methods – When no cmdlet exists

Object across the pipeline

Getting the information you need Get-Member (gm) TypeName is a unique Windows assigned name Displays the properties and methods of an object Properties are potential columns of information Methods are the potential actions that can be taken

Sorting Objects Sort-Object sorts properties. Use Get-Member to see a list of properties

Selecting Objects Select-Object selects properties. Use Get-Member to list properties to select from. -first and -last restrict list of rows displayed.

Custom Properties

Filter Object Out of the Pipeline

Comparison Operators Comparison returns boolean True or False Comparison can be case- sensitive using ‘c’ prefix For complete description, see About_Comparison

Methods – When no cmdlet exists

Questions or comments?