Git Product home page Git Product logo

Comments (4)

ITBlandMCT avatar ITBlandMCT commented on July 17, 2024 1

Thx for the quick work!

from ms-700-managing-microsoft-teams.

ITBlandMCT avatar ITBlandMCT commented on July 17, 2024

Here is the missing Task (from the old version):

Task 8 – Reset Azure AD settings

You can revert any changes in Azure AD unified groups settings to the defaults again. You can do this by loading a blank template and replacing the current configuration with the template. To clean up your test environment after testing, you will now do this and reset all changes you did for Microsoft 365 Groups and Teams.

  1. Connect to the Client 1 VM with the credentials that have been provided to you.

  2. On the taskbar at the bottom of the page, right click the Start button and then select Windows PowerShell.

  3. Connect to the Azure AD in your tenant with the following cmdlet:

    Connect-AzureAD
  4. When the Sign in window is displayed, sign in as MOD Administrator (admin@<YourTenant>.onmicrosoft.com) using the O365 credentials provided to you.

  5. To load the unified group template, use the following cmdlet:

    $Template = Get-AzureADDirectorySettingTemplate | Where {$_.DisplayName -eq "Group.Unified"}
  6. Create a blank Azure AD tenant settings object:

    $Setting = $Template.CreateDirectorySetting()
  7. Check the Azure AD tenant settings configured in the template:

    $Setting.Values
  8. Review the current configured Azure AD tenant settings for unified groups and note the differences to the values in the "$Setting" variable, that contains the default template settings:

    (Get-AzureADDirectorySetting).Values
  9. Because you will still need the sensitivity labels at a later point of this lab, activate only them in your settings variable again by using the following command:

    $Setting["EnableMIPLabels"] = "True"
  10. Apply the settings variable to your current configuration to revert all other changes:

    Set-AzureADDirectorySetting -Id (Get-AzureADDirectorySetting | where -Property DisplayName -Value "Group.Unified" -EQ).id -DirectorySetting $Setting
  11. Review your configured Azure AD tenant settings again, which are all on default again:

    (Get-AzureADDirectorySetting).Values 
  12. Disconnect the current session from the Azure Active Directory tenant and close the PowerShell window.

    Disconnect-AzureAD

from ms-700-managing-microsoft-teams.

ITBlandMCT avatar ITBlandMCT commented on July 17, 2024

To correct the problem in the portal:

  1. Sign in at https://aad.portal.azure.com using the admin credentials.
  2. Select “Azure Active Directory”
  3. Select “Groups”
  4. Select “Naming policy”
  5. Select “Delete policy” and then “Yes”
  6. Close Edge.

from ms-700-managing-microsoft-teams.

MSFTJenny avatar MSFTJenny commented on July 17, 2024

Thank you! Eric. I just added a task to remove the naming policy in M01-Exercise 4.

from ms-700-managing-microsoft-teams.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.