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.

Slides:



Advertisements
Similar presentations
Tips and Tricks Laurie Tralle, Mary DAndrea & Marla Delaney.
Advertisements

AD User Import From SIMS.NET
Managing User, Computer and Group Accounts
By Rashid Khan Lesson 5-Directory Assistance: Administration Using Active Directory Users and Computers.
SFDC Integration Basics Gerry Winning. Integrating Your Progress App with SFDC Ovid Back Office App is Fully Integrated with SFDC (about two and a half.
Attributes of SharePoint Migration  Quickly Migrate bulk SharePoint offline or Online database in other SharePoint or Office365.  Transfer Multiple.
Week 6: Chapter 6 Agenda Automation of SQL Server tasks using: SQL Server Agent Scheduling Scripting Technologies.
Chapter 5 Data Management. – The Best & Most Convenient Way to Learn Salesforce.com 2 Objectives By the end of the module, you.
Recruiting Marketing CRM Integration
Module 5: Creating and Configuring Group Policy
Installation and Deployment in Microsoft Dynamics CRM 4.0
3 Suite of Office 365 admin tools Out of the box solution for the Office 365 admin lifecycle.
Kabel Nathan Stanwicks, Head Circulation and Media Services Department Electronic Reserves Introductory Tutorial for Faculty.
Administering Active Directory
Preforming Mail Merges Lesson 11 © 2014, John Wiley & Sons, Inc. Microsoft Official Academic Course, Microsoft Word Microsoft Word 2013.
Introduction to Office 365
Data Model Examples USER SPECIFICATIONS.
2 Part 1 What should I know before I jump into the deep water? Office Subscription plans Office 365 – Trail account Office 365 – what should I know.
 Support Team Leader with Webteksolutions  Our Primary focus : Office 365 Support Migrations.
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.
1 Chapter Overview Creating User and Computer Objects Maintaining User Accounts Creating User Profiles.
Microsoft Office Word 2013 Expert Microsoft Office Word 2013 Expert Courseware # 3251 Lesson 4: Working with Forms.
Exchange 2010 Recipient and Mailbox Management IT:Network:Applications.
Introduction Please answer the survey questions posted at the end of this meeting. Let us know what sessions you want! Josh Topal at
Batch Import/Export/Restore/Archive
Module 2 Creating Active Directory ® Domain Services User and Computer Objects.
365 Command for Microsoft Office 365 Simple and Affordable Cloud Management Platform for Microsoft Office 365 Administrators Take Command of Office 365.
Microsoft Outlook Web Application (OWA)
Module 8: Managing Client Configuration and Connectivity.
Back to content Final Presentation Mr. Phay Sok Thea, class “2B”, group 3, Networking Topic: Mail Client “Outlook Express” *At the end of the presentation.
Student Financial Assistance. Edconnet SFA to the Internet: EDconnect Software Session 16.
Phonegap Bridge – Telephony CIS 136 Building Mobile Apps 1.
Using IC KY Data Extract Utility and VB Scripts to automate student account management. Time: 1:15-2:15 Session #4 Date: 3/8/2012 Session Room: Beckham.
1 User Account Administration Introduction to User Accounts Planning New User Accounts Creating User Accounts Creating User Profiles Creating Home Directories.
Finish configuration cloudclinica root jdbc:postgresql:5432//localhost/cc_db JDBC Url: JDBC Driver: User name: Password: ******** org.postgresql.Driver.
Module 9 Configuring Messaging Policy and Compliance.
Module 2: Managing User and Computer Accounts. Overview Creating User Accounts Creating Computer Accounts Modifying User and Computer Account Properties.
CDFA Outlook 2003 Course Office Information Technology Services.
Virtual techdays INDIA │ august 2010 virtual techdays INDIA │ august 2010 Moving/Co-existing your messaging platform to the cloud with Exchange.
Module 9 Configuring Messaging Policy and Compliance.
Module 3 Configuring File Access and Printers on Windows ® 7 Clients.
Module 3 Configuring File Access and Printers on Windows 7 Clients.
Module 3 Managing Recipient Objects. Module Overview Managing Mailboxes Managing Other Recipients Configuring Address Policies Configuring Address.
Module 12 Upgrading from Exchange Server 2003 or Exchange Server 2007 to Exchange Server 2010.
Module 7 Planning and Deploying Messaging Compliance.
Quick Start Guide: Filters Learn about: 1.What filters Are & Their Functionality 2.How to Create A Filter.
Module 3: Configuring File Access and Printers on Windows 7 Clients
MCSE Guide to Microsoft Exchange Server 2003 Administration Chapter Five Managing Addresses.
NetTech Solutions Microsoft Outlook and Outlook Express Lesson Four.
Exchange Server Move Mailboxes Guided Walkthrough Version 1.0
SharePoint Online Migration API and Improvements
Mail merge I: Use mail merge for mass mailings Overview: Mailings en masse What if you need to send to each of your employees a letter containing personal.
Use Outlook Task API to access tasks stored on user’s mailbox. These REST API’s are  Simple to use.  Supports CRUD.  JSON structured.  OAuth 2.0.
Introduction to Office 365. Topics Covered What is Office 365? Office 365 Infrastructure Office 365 Components Outlook Web App & Logon Process Training.
Powering up your Office 365 cmdlets with CSOM Bjoern H Rapp, Senior Architect Public Cloud, SopraSteria.
Office 365 Help Desk Troubleshooting Guide
AdisInsight User Guide July 2015
Preforming Mail Merges
The top ten PowerShell commands for Exchange
Microsoft Outlook By: Phuong Nguyen.
365 Command for Microsoft Office 365 <INSERT LOGO>
ACTIVE DIRECTORY ADMINISTRATION
Performing Mail Merges
Preforming Mail Merges
IIS.
Using PowerShell Magic to Manage Microsoft Office 365
Office 365 Import Service Microsoft Office365 12/3/2018
敦群數位科技有限公司(vanGene Digital Inc.) 游家德(Jade Yu.)
Student user guide for getting started with Microsoft
iSecurity Password-Reset Training
Presentation transcript:

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 it into a variable. $cred = get-credential

Get a List of Disabled Users  Get-MSOnlineUser supports the default MOAC views. If you are expecting a list of more than 250 objects, be sure to specify ResultSize Get-MSOnlineUser -Credential $cred -Disabled |ft DisplayName, Identity Trusty Credential Format results as a table for easy viewing

Get-MSOnlineUser  Returns a single user or a single user view  Returns the following properties for each user returned: First Name Last Name User Principal Name Display Name Job Title Department Office Number Office Phone Mobile Phone Fax Number Street Address City State or Province ZIP or Postal code Country or Region Proxy Addresses Password Expiration Date Last Sign In Mailbox Size (used) Mailbox Size (allocated) IsActive CreatedDate SubscriptionIDs

Get a List of Active Subscriptions (and put them into a variable)  By default, only active subscriptions are returned  Use –DisplayAll to see all subscriptions regardless of state $sub = Get-MSOnlineSubscription - Credential $cred

Put Subscription Information Into a CSV  Variables aren’t portable between sessions, so you’ll want a file Get-MSOnlineSubscription - Credential $cred |select-object - property subscriptionid,Status,ExchangeStor age,SharepointStorage,totalseats,u sedseats,createdtime |export-csv out.csv Filters the object properties Creates output file

Enable a Single User  We’re leveraging $sub, but you can paste the GUID of the subscription in directly as well.  Grant seats in multiple subscriptions with a comma separated list of GUIDs Enable-MSOnlineUser -Identity -Credential $cred -SubscriptionIds $sub.SubscriptionId -Password us

Enable a Batch of Users  Optimal method for performance CSV format: Identity,SubscriptionIds,Password,UserLocation Import-Csv.\input.csv |Enable- MSOnlineUser -Credential $cred

Set a Password  Can specify not to change on next logon  Can set password to one previously used.  Complexity requirements enforced Set-MSOnlineUserPassword -Credential $cred -Identity -Password -ChangePasswordOnNextLogon false

Get Mailbox Metadata  This is information about the mailbox  Works against any Exchange 2007 mailbox $mbx = Get-XsHostedExchang box -SourceServer red001.mail.microsoftonline.com -SourceIdentity -SourceAdminCredential $cred - SourceDetail full

Display Folder Item Count For the Mailbox  Many mailboxes will be smaller on the target than on the source  This assists with verifying that item counts match $mbx.folders |ft DisplayName,ItemCount

Grant FullMailboxAccess  Other permissions supported with this command are SendAs and SendOnBehalfOf  SendOnBehalfOf establishes the TrustedUser as a mailbox Delegate with default Outlook permissions Add-MSOnlin Permission - Credential $cred -Identity -TrustedUser - GrantFullAccess true

Get a specific mail item from a mailbox  Migration logs use MessageID as the unique name for the item with the error.  To extract that message for troubleshooting, do the following: Get-XsHostedExchang boxData - SourceServer red001.mail.microsoftonline.com - Identity - SourceAdminCredential $cred - SourceItemIdentity AQEAAQPvLyasAAAAAAAAAAAAAAAA Sample messageID

Export content to a tbin  TBins make PowerShell objects portable from one session of the migration tools to another Get-XsHostedExchang boxData -SourceServer red001.mail.microsoftonline.com -Identity -SourceAdminCredential $cred -SourceItemIdentity AQEAAQPvLyasAAAAAAAAAAAAAAAA|Export- TransporterBinary -TargetFilePrefix tbin - TargetFilePath c:\temp

Import from a TBin  Having data portable between two sessions is only useful if you can not only export it but import it Import-TransporterBinary - SourceFileName c:\temp\tbin.tbin File we created in last slide