Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Microsoft  Office 365 Administration Cookbook
Microsoft  Office 365 Administration Cookbook

Microsoft Office 365 Administration Cookbook: Enhance your Office 365 productivity with recipes to manage and optimize its apps and services

By Nate Chamberlain
£37.99
Book Sep 2020 442 pages 1st Edition
eBook
£28.99 £19.99
Print
£37.99
Subscription
£13.99 Monthly
eBook
£28.99 £19.99
Print
£37.99
Subscription
£13.99 Monthly

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Black & white paperback book shipped to your address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Sep 11, 2020
Length 442 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781838551230
Vendor :
Microsoft
Category :
Table of content icon View table of contents Preview book icon Preview Book

Microsoft Office 365 Administration Cookbook

Chapter 2: Office 365 Identity and Roles

Users and groups are at the core of every administrative decision you will make. Before you can create policies or configure some admin center features, you will need to have groups thoughtfully provisioned to be used for appropriate licensing, security, and experience enhancement.

In this chapter, we'll cover Microsoft 365 identity management basics. This includes creation and management of both users and groups and introduces you to a couple of essential security topics such as enabling multi-factor authentication (MFA) through Security Defaults and assigning admin roles.

The recipes included in this chapter are as follows:

  • Creating a new user
  • Importing users in bulk
  • Creating a new Office 365 group
  • Enabling Security Defaults (MFA)
  • Exporting users
  • Managing guest users
  • Creating a user template
  • Restricting users from creating new O365 groups
  • Assigning the User Administrator admin role in Azure Active Directory (AD)
  • Managing admin roles in the Microsoft 365 Admin Center

Technical requirements

This chapter requires users to have administrative privileges in Office 365. Those with a global administrator role will be able to perform every task in each recipe. Specific app and functional administrators will be able to do many of the recipes. No installations/downloads are required for the recipes in this chapter.

Creating a new user

When someone joins your organization, you will need to create a new user profile so that person can be assigned credentials to your tenant. In this recipe, we'll walk through the steps of creating a single user via the Microsoft 365 Admin Center.

Getting ready

The user creating the account must be an admin with the appropriate role (such as Global Admin).

How to do it…

  1. Go to the Microsoft 365 Admin Center at http://admin.microsoft.com.
  2. Select Users > Active users.
  3. Select Add a user.
  4. A form will display, in which you enter the user's basic information. Fill in the first section, Set up the basics:
    Figure 2.1 – Fields and options for setting up a new user in Office 365

    Figure 2.1 – Fields and options for setting up a new user in Office 365

    In the Password settings section, it is recommended to allow the tenant to set a temporary password by leaving the default selections checked. You may check Send password in email upon completion and add an email address, or when the setup is complete, you will have a chance to copy the user's credentials.

    Click Next to move to the Product licenses section.

  5. As discussed in Chapter 1, Office 365 Setup and Basic Administration, select the appropriate location and license. Additionally, you can select the Create user without product license (not recommended) option if you would like to assign licenses later:
    Figure 2.2 – License options when adding a new user

    Figure 2.2 – License options when adding a new user

    Click Next to move to the Optional settings section.

    From here, you can assign an admin or elevated rights role to the user, or you can add in additional profile information for the user.

  6. Select the appropriate option by expanding the section and filling in the details:
    Figure 2.3 – Optional role and profile information for a new user

    Figure 2.3 – Optional role and profile information for a new user

  7. Click Next to move to the Finish section.
  8. Your user is not yet created. Review the information and click Finish adding:
    Figure 2.4 – Confirmation screen for reviewing the details of a new user

    Figure 2.4 – Confirmation screen for reviewing the details of a new user

  9. From this screen, you can copy the User details and provide those to the user:
Figure 2.5 – Optional ability to save a new user's configuration as a template for future new users

Figure 2.5 – Optional ability to save a new user's configuration as a template for future new users

How it works…

In this recipe, you created a new user from scratch. User management starts with this action of creating a new user. Once the user has been created and appropriate product licenses applied, the user will have the ability to sign in.

Importing users in bulk

Adding users one at a time can become quite laborious in a large organization. This recipe provides a method for importing a file and adding users in bulk. Additionally, this can be done through PowerShell, which will be covered in Chapter 3, Administering Office 365 with PowerShell.

Getting ready

The user creating the account must be either a global or user administrator.

How to do it…

  1. Go to the Microsoft 365 Admin Center at http://admin.microsoft.com.
  2. Select Users > Active users.
  3. Select Add multiple users.
  4. Click Add multiple users:
    Figure 2.6 – The Add multiple users button of the Active users page

    Figure 2.6 – The Add multiple users button of the Active users page

  5. The Import multiple users panel will open. From here, you can download a sample comma-separated values (CSV) file, enter your user information according to the column headings in the download, and then upload it to your tenant:
    Figure 2.7 – The upload file dialog for downloading templates of and importing CSV files of new users

    Figure 2.7 – The upload file dialog for downloading templates of and importing CSV files of new users

  6. The CSV file must include all the exact column headings that are found in the sample. If you move the headings, the upload may not work appropriately.

    Data must be entered into the username and display name columns for each user.

  7. Click Next to move to the Set user options section.
  8. From this screen, you can set the Sign-in status and select product licenses for the bulk loaded users:
    Figure 2.8 – Dialog options for allowing sign-in and assigning product licenses upon import

    Figure 2.8 – Dialog options for allowing sign-in and assigning product licenses upon import

  9. Click Next to move to the View your result section.
  10. On the View your result screen, you can choose to send the results to an email address, check how many users were created, and download the results. Note that the results will include plaintext passwords. The results will help show how many users were successfully created and maybe illustrate a need for licensing adjustment to meet the number of users:
    Figure 2.9 – Confirmation of created users with the option to email a result file to users

    Figure 2.9 – Confirmation of created users with the option to email a result file to users

  11. Click Send and close to finish the process.

How it works…

You just imported a CSV file with many users' data to create new users in Office 365 more efficiently. This behind-the-scenes method is functionally the same as manually adding users. However, it applies those selections in bulk and then creates a downloadable file with the login information.

See also

Creating a new Office 365 group

Groups in Office 365 are a great way to manage people with similar tasks, access needs, or users within the same team or department. Groups are an essential component to the Office 365 ecosystem, and when an admin gets groups right, the admin's job becomes much easier to manage. In this recipe, you'll create an Office 365 group.

Getting ready

The user creating the group must be either a global or user administrator.

How to do it…

  1. Go to the Microsoft 365 Admin Center at http://admin.microsoft.com.
  2. Select Groups > Add a group.
  3. Select the group type you wish to create, and then click Next.
  4. In the Set up the basics section, enter a group name and description, then click Next.
  5. From the Edit settings page, assign the group a unique email address, choose if the group is public or private, and determine if the group should have a Microsoft Teams team:
    Figure 2.10 – New Office 365 group creation dialog

    Figure 2.10 – New Office 365 group creation dialog

  6. Click Next to move to the Owners section.
  7. In the Owners box, select two users who will have ownership of the group.
  8. Your group is not yet created. On the Review and finish adding group screen, review your selections and click Create group to complete the process:
Figure 2.11 – Confirmation of a newly created Office 365 group

Figure 2.11 – Confirmation of a newly created Office 365 group

How it works…

In this recipe, you created an Office 365 group. Groups are a foundational component to many of the advanced features and products available with your tenant. Groups segment users for ease of administration and collaboration between those users. Understanding how and when to use a group is a vital component to successfully setting up a tenant and may require forward thinking on how and why a group needs to be created.

There's more…

Creating a group is only the first step. Next, you need to assign users to the group. This is done by navigating to the Groups section, searching for the correct group, and going to the Members tab. Select View all and manage members, and then add or remove members.

See also

Enabling Security Defaults (MFA)

Security Defaults are a set of rules and identify security mechanisms preconfigured by Microsoft, but the rules are left disabled by default. Enabling these defaults will impact your entire tenant. Admins and users will be required to start using MFA (adding an additional layer of security upon sign-in), better protecting your tenant and the data within from exposure through phishing and other identity-related attacks.

The See also section of this recipe includes a link to user training as well as additional resources you should read before enabling the Security Defaults, to ensure you are clear on the impact to your organization.

Getting ready

Only an admin with the Global Admin role can make these changes to the tenant security settings. These steps are based on the "new" admin center (released for preview in 2018-2019).

This process assumes you are working from a recently created tenant (2017 or newer). If you are using an older tenant and have set up baseline policies, you will need to disable those policies and move to the new Security Defaults. Additionally, you may need to activate modern authentication in your tenant (the See also section of this recipe has instructions on how to verify this). This is not required for recently created tenants (2017 or newer).

How to do it…

  1. Sign in to the Microsoft 365 Admin Center at http://admin.microsoft.com.
  2. Go to the Azure AD Properties page at https://portal.azure.com/#blade/Microsoft_AAD_IAM/ActiveDirectoryMenuBlade/Properties.
  3. Select Manage Security defaults at the bottom of the page.
  4. The Enable Security defaults panel will load:
    Figure 2.12 – Information about and ability to Enable Security defaults

    Figure 2.12 – Information about and ability to Enable Security defaults

  5. Toggle the Enable Security defaults selector to Yes.
  6. Click Save.

How it works…

You've just enabled MFA, among other security enhancements, by toggling on Enable Security defaults. Security defaults are rules, or conditional access policies, which are set by default to help control how users and admins interact with Office 365.

See also

Exporting users

As a tenant admin, you will be asked for reports and information about the users in your tenant. One of the basic requests is around the number of users. A basic user export provides all this information and much more. In this recipe, we'll obtain that from the Microsoft 365 Admin Center.

Getting ready

The user creating the account must be an admin with the appropriate role (such as Global Admin, User Admin, and so on).

How to do it…

  1. Go to the Microsoft 365 Admin Center at http://admin.microsoft.com.
  2. Select Users > Active users.
  3. Click Export Users:
    Figure 2.13 – The Export Users button in the Active users top menu

    Figure 2.13 – The Export Users button in the Active users top menu

  4. A dialog box will appear—click Continue or No.
  5. A CSV file that provides several columns of information on each user will download to your PC.

How it works…

You used the Export Users button to pull down a CSV report of active users that can be sorted, filtered, or shared.

Managing guest users

When guests are added to your tenant directly by an admin or by a user in Teams, SharePoint, or other apps, those guests are stored in the Micosoft 365 admin center and can be viewed and deleted there. In this recipe, we'll cover the steps required to search for and manage guest users.

Getting ready

Guest users must be allowed in your tenant for any to appear in the admin center once invited by Team or group owners.

How to do it…

  1. Go to the Microsoft 365 Admin Center at http://admin.microsoft.com.
  2. Select Users > Guest Users.
  3. Use the search bar to search for specific guest(s).
  4. Use the ellipsis menu on any user's name when viewing and searching the main listing to delete a user:
    Figure 2.14 – Delete a user option on the ellipsis menu for a user

    Figure 2.14 – Delete a user option on the ellipsis menu for a user

  5. You can also select a user's name to view or edit contact information and O365 group memberships. You can use the trash icon under the user's name and email to delete the user:
Figure 2.15 – User detail panel that appears when a user is selected from Active users

Figure 2.15 – User detail panel that appears when a user is selected from Active users

How it works…

In this recipe, you found guest users in your tenant and explored the details for one of them. The Guest Users screen of the Microsoft 365 admin center allows viewing, editing, and deleting of all invited guests.

There's more…

You can only delete one guest user at a time from the Users > Guest Users screen. Go to the Users > Active users screen to delete guest users in bulk. You'll just need to filter the Active users screen to Guest users first, as seen here:

Figure 2.16 – Active user view filter options with Guest users selected

Figure 2.16 – Active user view filter options with Guest users selected

See also

Creating a user template

User templates save user administrators time by applying pre-selected licenses, applications, assigned domains, and metadata (such as Office information) to users created using that template. In this recipe, we'll cover the steps to creating a user template.

Getting ready

You must be an O365 administrator to manage users and user templates.

How to do it…

  1. Go to the Microsoft 365 Admin Center at http://admin.microsoft.com.
  2. Select Users > Active users.
  3. Select User Templates > Add template from the ribbon menu:
    Figure 2.17 – Add template option available upon clicking User templates in the Active users page

    Figure 2.17 – Add template option available upon clicking User templates in the Active users page

  4. Name your template (this appears on the User templates menu as an option later) and give it a clear description. Click Next:
    Figure 2.18 – The first screen of creating a user template including name and description fields

    Figure 2.18 – The first screen of creating a user template including name and description fields

  5. Choose to which domain users under this template should be added. This is useful when your organization encompasses multiple business units or company names operating under different domains or even subdomains. Also, choose whether these users will have an autogenerated or standard password and if that should be changed by the user on their first sign-in. Click Next:
    Figure 2.19 – The second screen, Basics, when creating a user template

    Figure 2.19 – The second screen, Basics, when creating a user template

  6. Choose which location and licenses will be applied to these users, then scroll down to the next section Licenses:
    Figure 2.20 – The third screen, Licenses, when creating a user template

    Figure 2.20 – The third screen, Licenses, when creating a user template

  7. All the apps within each of the licenses you selected in the preceding screenshot appear automatically, allowing you to choose specific apps to enable/disable for users created with this template. When satisfied, click Next:
    Figure 2.21 – Available apps for all licenses

    Figure 2.21 – Available apps for all licenses

  8. On the Optional settings page, choose which (if any) administrator roles to apply to these users, then complete the Profile info section with info that should be applied by default to all users created using this template. Click Next when finished to review your template:
    Figure 2.22 – The fourth screen, Optional settings, when creating a user template

    Figure 2.22 – The fourth screen, Optional settings, when creating a user template

  9. If satisfied with the template, choose Finish adding; otherwise, choose Edit in the respective section to make changes first:
    Figure 2.23 – The final screen, Finish, for confirmation of details in a new user template

    Figure 2.23 – The final screen, Finish, for confirmation of details in a new user template

  10. Your template will show a confirmation message. Close this when finished:
    Figure 2.24 – The confirmation message with optional Next steps after creating a user template

    Figure 2.24 – The confirmation message with optional Next steps after creating a user template

  11. Now, when you go to create new users, you'll be able to save time by selecting the template to pre-fill much of the data:
    Figure 2.25 – A newly created user template now available for selection

    Figure 2.25 – A newly created user template now available for selection

  12. When selected, you'll have minimal information to complete for adding the new user under that template. As seen here, it's basically just name, display name, and username:
Figure 2.26 – Screen shown once the existing user template is selected for creating a new user

Figure 2.26 – Screen shown once the existing user template is selected for creating a new user

How it works…

In this recipe, you configured a user template to save you time when creating additional users who will have very similar, if not identical, profile parameters such as office location, department, and so on.

User templates are saved configurations for certain user types that allow administrators to apply consistent licenses, app permissions, domains, and office contact information to users belonging to a common group or role.

Once a template, such as Human Resources Members, is created, it simply needs to be selected the next time an HR employee is onboarded. The new user's name is entered and all the preconfigured settings for the template are applied, making the process much more efficient.

There's more…

You cannot edit a user template later. Once it's created, that template remains the same until it is deleted and potentially replaced by a new template. This helps ensure consistency of the users created with the template throughout its life cycle.

See also

Restricting users from creating new O365 groups

By default, anyone in your tenant can create their own O365 groups. This can happen when a user creates a new Team in Microsoft Teams, a plan in Planner, and several other apps that use O365 groups at the core. In this recipe, we'll use PowerShell to restrict users from self-provisioning their own O365 groups (whether intentionally or incidentally when creating other resources).

Getting ready

You'll need to be able to create security groups (not just O365 groups) and have the latest version of the AzureADPreview module for PowerShell installed. This can be installed by running SharePoint Online Management Shell as administrator and entering the following command:

Install-Module AzureADPreview

There's currently no way to do this without PowerShell.

How to do it…

  1. Go to the Microsoft 365 Admin Center at http://admin.microsoft.com.
  2. Select Groups > Groups.
  3. Select Add a group.
  4. Choose Security and Next:
    Figure 2.27 – Security groupt type selected

    Figure 2.27 – Security groupt type selected

  5. Name and describe the group (we're using O365 Group Creators as our example). Click Next:
    Figure 2.28 – Group name and description fields when creating a new group

    Figure 2.28 – Group name and description fields when creating a new group

  6. Click Create group to confirm details and create the group. Close the panel.
  7. Copy the following script from here (if you're reading the e-book) or from https://docs.microsoft.com/en-us/microsoft-365/admin/create-groups/manage-creation-of-groups:
    $GroupName = "<SecurityGroupName>"
    $AllowGroupCreation = "False"
    Connect-AzureAD
    $settingsObjectID = (Get-AzureADDirectorySetting | Where-object -Property Displayname -Value "Group.Unified" -EQ).id
    if(!$settingsObjectID)
    {
    	  $template = Get-AzureADDirectorySettingTemplate | Where-object {$_.displayname -eq "group.unified"}
        $settingsCopy = $template.CreateDirectorySetting()
        New-AzureADDirectorySetting -DirectorySetting $settingsCopy
        $settingsObjectID = (Get-AzureADDirectorySetting | Where-object -Property Displayname -Value "Group.Unified" -EQ).id
    }
    $settingsCopy = Get-AzureADDirectorySetting -Id $settingsObjectID
    $settingsCopy["EnableGroupCreation"] = $AllowGroupCreation
    if($GroupName)
    {
    	$settingsCopy["GroupCreationAllowedGroupId"] = (Get-AzureADGroup -SearchString $GroupName).objectid
    }
     else {
    $settingsCopy["GroupCreationAllowedGroupId"] = $GroupName
    }
    Set-AzureADDirectorySetting -Id $settingsObjectID -DirectorySetting $settingsCopy
    (Get-AzureADDirectorySetting -Id $settingsObjectID).Values
  8. Paste the script into Notepad (or similar text editor). Change <SecurityGroupName> in line 1 to the name of your security group. In our example, line 1 would resemble the following:
    $GroupName = "O365 Group Creators"
  9. Open SharePoint Online Management Shell (as administrator).
  10. Copy the text from your open Notepad application and paste into PowerShell. Hit Enter:
    Figure 2.29 – PowerShell screen with pasted script adjusted with our "allowed" group name

    Figure 2.29 – PowerShell screen with pasted script adjusted with our "allowed" group name

  11. A sign-in dialog will appear, requesting your administrator credentials to complete the change:
    Figure 2.30 – Sign-in dialog presented as part of executing the PowerShell script

    Figure 2.30 – Sign-in dialog presented as part of executing the PowerShell script

  12. The script will take a moment to complete, and when finished will show the following:

Figure 2.31 – Confirmation message in PowerShell

How it works…

You have just executed a PowerShell script that will restrict creation of additional O365 groups to members of a specific security group. Don't forget to add members to the new security group once it's created.

Once the script has run, users who are not global admins or members of a qualifying group or role will be unable to create new groups immediately. They can still create new plans and channels associated with existing groups, but will see a message letting them know they cannot create new groups when the opportunity would have traditionally been available:

Figure 2.32 – Message that appears to Planner users when group creation is disabled for them

Figure 2.32 – Message that appears to Planner users when group creation is disabled for them

Another example would be a user without permission trying to create a new team in Teams. They can click Join or create a team as usual, but the option to create a new group/team will not exist:

Figure 2.33 – Teams screen that appears for users who cannot create new teams (therefore, groups)

Figure 2.33 – Teams screen that appears for users who cannot create new teams (therefore, groups)

A final example would be a user creating a new SharePoint team site. They can still create team sites in SharePoint using the new or classic team template, where the classic team site template wouldn't create an associated group anyway. The only change would be the new team site template not being able to create an associated O365 group as would otherwise be normal. If they create the site first and later try to connect it to a new group separately, they will receive the following notice:

Figure 2.34 – Message that appears when users in SharePoint attempt to associate a site with a new group

Figure 2.34 – Message that appears when users in SharePoint attempt to associate a site with a new group

Tip

Consider utilizing a training course (digital or in person) for users to "earn" the ability to create O365 groups (by getting added to your new security group) after taking the time to understand the implications and best practices.

See also

Assigning the User Administrator admin role in Azure AD

User management is usually assigned to helpdesk resources, and not a global admin. This recipe outlines the steps to assigning user management admin roles to users. This role provides its members an appropriate level of permission to manage users, but not all the access and abilities granted to the global admin role. Let's assign the User Administrator admin role to a user.

Getting ready

You'll need access to Azure AD and the Global administrator or Privileged Role administrator role to assign other admin roles.

How to do it…

  1. Go to Azure AD at https://aad.portal.azure.com.
  2. Select Azure Active Directory from the left navigation menu:
    Figure 2.35 – Azure Active Directory highlighted in the left-hand 
navigation menu in the Azure AD admin center

    Figure 2.35 – Azure Active Directory highlighted in the left-hand navigation menu in the Azure AD admin center

  3. Select Roles and administrators from beneath the Manage header:
    Figure 2.36 – Roles and administrators highlighted in the Manage section

    Figure 2.36 – Roles and administrators highlighted in the Manage section

  4. Search or scroll the list until you locate User administrator, then select it:
    Figure 2.37 – User administrator role highlighted in Administrative roles search results

    Figure 2.37 – User administrator role highlighted in Administrative roles search results

  5. Select Add assignments:
    Figure 2.38 – Add assignments option in the Assignments screen of the User administrator role details

    Figure 2.38 – Add assignments option in the Assignments screen of the User administrator role details

  6. Select each shared service account or individual user you want added to this role group. The search bar can help find specific accounts more quickly. When finished, select Add:
    Figure 2.39 – Selected users being added to an admin role in Azure AD

    Figure 2.39 – Selected users being added to an admin role in Azure AD

  7. You may now exit Azure AD:
Figure 2.40 – The confirmation notification that appears once users are successfully assigned

Figure 2.40 – The confirmation notification that appears once users are successfully assigned

How it works…

You've just used Azure AD to assign the User Administrator admin role. Users and accounts assigned to the user management role can reset passwords, create and manage users and groups, filter and manage service requests, and monitor service health. Azure AD is the preferred method of assigning roles because you can assign to multiple accounts at once. As you'll see in the next recipe, the Microsoft 365 Admin Center only allows one account to be assigned at a time.

Tip

Use shared service accounts (for example, helpdesk@natechamberlain.com) to minimize the administrative tasks involved during employee turnover and onboarding.

See also

Managing admin roles in the Microsoft 365 admin center

In the previous recipe, Assigning the User Administrator admin role in Azure AD, we covered assigning a specific admin role via Azure AD. In this recipe, we'll do the same, but from within the Microsoft 365 admin center.

Getting ready

You must be a global administrator or privileged role administrator to assign other admin roles.

How to do it…

  1. Go to the Microsoft 365 Admin Center at https://admin.microsoft.com/.
  2. Select Users > Active users:
    Figure 2.41 – Active users link in the left-hand navigation pane of the Microsoft 365 admin center

    Figure 2.41 – Active users link in the left-hand navigation pane of the Microsoft 365 admin center

  3. Search or scroll to select the account to which you're assigning the admin role(s). Then, use the ellipses to select Manage roles:
    Figure 2.42 – Manage roles option available on the ellipsis menu when a user is selected

    Figure 2.42 – Manage roles option available on the ellipsis menu when a user is selected

  4. Select/deselect the role(s) you're assigning or unassigning:
    Figure 2.43 – Admin center access options, with User admin selected

    Figure 2.43 – Admin center access options, with User admin selected

  5. You'll also notice there's an expandable Show all by category section for more (less common) admin roles not shown in the previous screenshot. These are divided into Collaboration, Devices, Global, Identity, Other, Read-only, and Security & Compliance categories. You can see some of the options in the following screenshot:
    Figure 2.44 – Role options shown by category instead

    Figure 2.44 – Role options shown by category instead

  6. When finished selecting/deselecting, click Save changes. If successful, you'll see Admin roles updated:
Figure 2.45 – Confirmation message once admin roles have been added

Figure 2.45 – Confirmation message once admin roles have been added

How it works…

In this recipe, you assigned the User Admin role via the Microsoft 365 admin center. Like how you'd assign product licenses to users, the Microsoft 365 Admin Center's Active users blade allows you to assign admin roles as well from this singular, central location.

Important note

If you try to select more than one user at a time using this method, you will not get the Manage roles option. That's a limitation of the Microsoft 365 Admin Center and one reason you may wish to manage administrator roles using Azure AD instead.

See also

Left arrow icon Right arrow icon

Key benefits

  • Learn how to manage and secure the entire Office 365 stack in addition to specific services
  • Delve into newer and frequently shifting areas such as Power Platform, Microsoft Teams, and Microsoft Search administration
  • Discover carefully selected techniques that cover a range of administrative tasks of varying difficulty levels

Description

Organizations across the world have switched to Office 365 to boost workplace productivity. However, to maximize investment in Office 365, you need to know how to efficiently administer Office 365 solutions. Microsoft Office 365 Administration Cookbook is packed with recipes to guide you through common and not-so-common administrative tasks throughout Office 365. Whether you’re administering a single app such as SharePoint or organization-wide Security & Compliance across Office 365, this cookbook offers a variety of recipes that you’ll want to have to hand. The book begins by covering essential setup and administration tasks. You’ll learn how to manage permissions for users and user groups along with automating routine admin tasks using PowerShell. You’ll then progress through to managing core Office 365 services such as Exchange Online, OneDrive, SharePoint Online, and Azure Active Directory (AD). This book also features recipes that’ll help you to manage newer services such as Microsoft Search, Power Platform, and Microsoft Teams. In the final chapters, you’ll delve into monitoring, reporting, and securing your Office 365 services. By the end of this book, you’ll have learned about managing individual Office 365 services along with monitoring, securing, and optimizing your entire Office 365 deployment efficiently.

What you will learn

Get to grips with basic Office 365 setup and routine administration tasks Manage Office 365 identities and groups efficiently and securely Harness the capabilities of PowerShell to automate common administrative tasks Configure and manage core Office 365 services such as Exchange Online, SharePoint, and OneDrive Configure and administer fast-evolving services such as Microsoft Search, Power Platform, Microsoft Teams, and Azure AD Get up and running with advanced threat protection features provided by the Microsoft 365 Security & Compliance Center Protect your organization’s sensitive data with Office 365 Data Loss Prevention Monitor activities and behaviors across all Office 365 services

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Black & white paperback book shipped to your address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Sep 11, 2020
Length 442 pages
Edition : 1st Edition
Language : English
ISBN-13 : 9781838551230
Vendor :
Microsoft
Category :

Table of Contents

16 Chapters
Preface Chevron down icon Chevron up icon
Chapter 1: Office 365 Setup and Basic Administration Chevron down icon Chevron up icon
Chapter 2: Office 365 Identity and Roles Chevron down icon Chevron up icon
Chapter 3: Administering Office 365 with PowerShell Chevron down icon Chevron up icon
Chapter 4: Managing Exchange Online Chevron down icon Chevron up icon
Chapter 5: Setting Up and Configuring Microsoft Search Chevron down icon Chevron up icon
Chapter 6: Administering OneDrive Chevron down icon Chevron up icon
Chapter 7: Configuring the Power Platform Chevron down icon Chevron up icon
Chapter 8: Administering SharePoint Online Chevron down icon Chevron up icon
Chapter 9: Managing Microsoft Teams Chevron down icon Chevron up icon
Chapter 10: Configuring and Managing Users in Azure Active Directory (Azure AD) Chevron down icon Chevron up icon
Chapter 11: Understanding the Microsoft 365 Security & Compliance Center Chevron down icon Chevron up icon
Chapter 12: Deploying Data Loss Prevention and eDiscovery Chevron down icon Chevron up icon
Chapter 13: Monitoring Office 365 Apps and Services Chevron down icon Chevron up icon
Chapter 14: Appendix – Office 365 Subscriptions and Licenses Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Filter icon Filter
Top Reviews
Rating distribution
Empty star icon Empty star icon Empty star icon Empty star icon Empty star icon 0
(0 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 0%
1 star 0%

Filter reviews by


No reviews found
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela