3 Suite of Office 365 admin tools Out of the box solution for the Office 365 admin lifecycle.

Slides:



Advertisements
Similar presentations
Database vocabulary. Data Information entered in a database.
Advertisements

SupportCenter Plus Product Overview. Overview 1.What is SupportCenter Plus (SCP) 2.Benefits of SCP 3.Licensing & Pricing 4.Questions.
User Profiles: I Didn’t Know I Could Do That? Stacy L. Deere-Strole Focal Point Solutions, LLC.
Motorola Mobility Services Platform (MSP3.2) Control Edition Optimizing use of your mobile assets Daphanie Wallace June 2008 Enterprise Mobility Solutions.
Acceleratio Ltd. is a software development company based in Zagreb, Croatia, founded in Acceleratio specializes in developing high-quality enterprise.
© 2010 Quest Software, Inc. ALL RIGHTS RESERVED Techstravaganza 2010 PowerShell 101 Dmitry Kagansky Solutions Architect - Quest Software (Public Sector)
02 | Managing Users, Groups, and Licenses Anthony Steven | Principal Technologist, Content Master Martin Coetzer | Portfolio Architect, Microsoft.
 Support Team Leader with Webteksolutions  Our Primary focus : Office 365 Support Migrations.
Purpose Intended Audience and Presenter Contents Proposed Presentation Length Intended audience is all distributor partners and VARs This would be presented.
A Guide to Getting Started
Tools for administering Office 365 “Out-of-the-box” solution Easy to use but extensible Office 365 Admin Center Enable an ecosystem Access to advanced.
To the Cloud, from the Trenches: Best Practices for Migrating to Microsoft Office 365 Jorge R. Diaz Microsoft MVP | Exchange Server Architect Planet Technologies.
Service Overview & Offering Features & Requirements Office 365 Administration | Portals & PowerShell Partner Opportunity.
Product Demo. Terminal Services Log By Acceleratio Acceleratio Ltd. is a software development company based in Zagreb, Croatia, founded in Technology.
Microsoft ® Official Course Module 4 Automating Active Directory Domain Services Administration.
Scenario covered in this presentation Separate credential from on- premises credential Authentication occurs via cloud directory service Does not.
NMMI Office 365 Hybrid By Bryan Yates NM-Tie Nov 15 th 2013 Hi Dr. NORMA.
Jenna Lyday. Establish a Credential  All of the BPOS tasks require authentication. Rather than typing in a user name and password for each task, put.
131 Agenda Overview Review Roles Lists Libraries Columns.
How can we set custom domain name for SPO public site Roshan N.Y
FIRST COURSE Access Tutorial 1 Creating a Database.
Tutorial 1: Getting Started with Adobe Dreamweaver CS4.
Microsoft SharePoint Document Libraries & Management 1.
Managing User and Service Accounts
A Guide to Getting Started. 2 Free social learning network for teachers, students, schools and districts Safe and easy way to connect Exchange ideas Share.
Julien “Superman” Stroheker and Nicolas “Batman” Georgeault Negotium
1 What’s the difference between DocuShare 3.1 and 4.0?
Office 365 – evaluating, Deploying & Migrating – Notes from the field Daryl Gwyn Office 365 TSP (Technical Solutions Professional) Microsoft Corporation.
Section 6: Using Windows PowerShell to Manage Group Policy Introducing Windows PowerShell Windows PowerShell Library for Group Policy Windows PowerShell-Based.
1 Part-1 Chap 5 Configuring Accounts Definitions.
Edmodo Training A Guide to Getting Started. 2 Free social learning network for teachers, students, schools and districts Safe and easy way to connect.
Adobe Dreamweaver CS3 Revealed CHAPTER SIX: MANAGING A WEB SERVER AND FILES.
Online Conference June 17 th and 18 th SharePoint Online Administration with PowerShell.
MCSE Guide to Microsoft Exchange Server 2003 Administration Chapter Five Managing Addresses.
Version 2.0 for Office 365. Day 1 Administering Office 365 Day 2 Administering Office 365 Office 365 Overview & InfrastructureAdministering Lync Online.
A Guide to Getting Started BCPS – Office of Instructional Technology.
User Profiles: I Didn’t Know I Could Do That? Stacy L. Deere-Strole Focal Point Solutions, LLC.
Office 365: SharePoint Online 31 May | SharePoint Saturday Calgary – 31 MAY 2014 About Me – Jason Kaczor
Azure AD B2B SHAREPOINT ONLINE COLLABORATION WITH EXTERNAL PARTNERS MADE SIMPLE Jose L Arbelaez – Enterprise Architect.
Leveraging SharePoint Search In SharePoint 2013 Jameson Bozeman.
Managing Office 365 Identities and Requirements.
Google Drive to Microsoft OneDrive Migrations Overview of how to migrate from Google Drive to OneDrive.
 1- Definition  2- Helpdesk  3- Asset management  4- Analytics  5- Tools.
USERS IN THE CLOUD By Michael Doyle SharePoint Friday Honolulu.
Office 365 Discover 10 killer features that you never knew existed
Advanced Data governance – labels (data classification)
Tools and Tips for Administering Office 365
Calendar Browser is fully integrated into SharePoint
Prime Service Catalog 12.0 Integration Best Practices – LDAP and SAML Settings.
The top ten PowerShell commands for Exchange
Microsoft - Managing Office 365 Identities and Requirements
Understanding Multi-Geo Capabilities in Office 365
Think You Know How To Manage Office 365?
Real Microsoft Exam Questions and Answers
Dumps Questions
Office 365 PowerShell Jeremy Sublett.
Local AD, Azure AD, & Google Suite User Management
11/16/2018 © 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks and/or trademarks.
Office 365 Admin Support Skills: Service Management
Using PowerShell Magic to Manage Microsoft Office 365
Migrating to Office 365 from Google mail and exchange
SharePoint Permissions Manager
SPO Demos to Business Value Discussion Pillar Mapping
OneDrive for Business: Administration, Security and Compliance
Apps4.Pro Office 365 License Manager
03 | Basic Admin Capabilities
02 | A Changing Admin Interface
PowerShell + SharePoint Online – An Admins Guide to Administration in the O365 Cloud Marrell Sanders – Sr. SharePoint Administrator SharePoint Saturday.
SysKit Security Manager
Presentation transcript:

3

Suite of Office 365 admin tools

Out of the box solution for the Office 365 admin lifecycle

Coming Soon: Push Notifications

PowerShell advantages: Bulk editing Filtering data Exporting data Advanced functionality

Scenario: I want to import a large number of users Import-Csv c:\1_Demo\contosobellevue_legal_Users.csv | ForEach-Object { New-MsolUser - UserPrincipalName $_.UserPrincipalName -FirstName $_.FirstName -LastName $_.LastName - DisplayName $_.DisplayName -Title $_.Title -Department $_.Department -Office $_.Office - PhoneNumber $_.PhoneNumber -StreetAddress $_.StreetAddress -City $_.City -State $_.State - PostalCode $_.PostalCode -Country $_.Country -LicenseAssignment $_.LicenseAssignment - UsageLocation $_.UsageLocation -Password $_.PassWord } CmdletDescription Import-Csv Reads the data from a comma-separated values file (CSV) and then displays in tabular form ForEach–Object Provides a loop to perform an action on each item in a collection. Export-Csv Exports data into a CSV file

Scenario: I want to use several filters to sort my list of users CmdletDescription Get-MsolUser Lists all the users in your tenant Get-MsolUser | Select-Object DisplayName, Title Lists all the users in your tenants with their Display Name and title in tabular form Get-MsolUser | Get-Member | Out-GridView Lists all the attributes associated with the user list Get-MsolUser | Where-Object { $_.Department – eq “Legal”} Lists all the users in the “Legal” department Get-MsolUser | Where-Object { $_.Department – eq “Legal” –and $_.Title –eq “Director”} Lists all the users in the “Legal” department who have the title “Director” Get-MsolUser | Where-Object { $_.Department – eq “Legal” –and $_.Title –eq “Director” –or $_.Title -eq “Attorney” } Lists all the users in the “Legal” department who have the title “Director” or “Attorney”

Scenario: I want to export a list of my users Get-MsolUser | Select-Object UserPrincipalName, FirstName, LastName, DisplayName, Title, Department, Office, PhoneNumber, StreetAddress, City, State, PostalCode, Country, LicenseAssignment, UsageLocation, Password | Export-Csv C:\1_Demo\contosobellevue_users.csv - NoTypeInformation CmdletDescription Select-Object Provides a loop to perform an action on each item in a collection. Export-Csv Exports data into a CSV file -NoTypeInformation Omits the type information from the CSV file which is there. By default, the first line of the CSV file contains "#TYPE " followed by the fully-qualified name of the type of the object

Useful commands to get information on your tenant. CmdletDescription Get-MsolDomain Lists all the domains in your tenant Get-MsolUser Lists all the users and their license status in your tenant Get-SPOSite Lists all the SPO sites in your tenant Get-MsolAccountSku Lists all the Office 365 business plans that you have available

PowerShell enables access to more advanced settings that are not available in the admin center. CmdletDescription Set-CsMeetingConfiguration -AdmitAnonymousUsersByDefault $False -AllowConferenceRecording $False -DesignateAsPresenter "None" Disabled the following: -Anonymous users to gain automatic entrance to the meeting -Attendees to record the meeting -All users from your organization to be designated as presenters when they join the meeting Set-CsMeetingConfiguration -AdmitAnonymousUsersByDefault $True -AllowConferenceRecording $True -DesignateAsPresenter "Company" Enables the above.

Closing your remote sessions properly will ensure that you have the maximum number of connections available for you tenant. CmdletDescription Get-PSSession Lists the number of remote sessions that you have active. Remove-PSSession $lyncSession Closes the Skype for Business remote session. Remove-PSSession $exchangeSession Closes the Exchange remote session. Get-PSSession | Remove-PSSession Closes all remote sessions at the same time. Disconnect-SPOService Closes the SharePoint Online session.

DATAUSERS

Suite of Office 365 admin tools

36 More info at the Office 365 Admin Booth at the Expo

37