Skip to content

Category Archive

Microsoft-365

Entries connected to "Microsoft-365", gathered in one place for quick browsing.

Entries 7
Categories 25
Tags 203

Collection filter

Refine this page

Narrow the entries already loaded here by title, summary, category, or tag.

7 entries shown

Microsoft Teams PowerShell Management Guide

PowerShell scripts for Microsoft Teams stuff. Get all owners of all teams and team channels ## Documentation: https://learn.microsoft.com/en-us/powershell/module/teams/?view=teams-ps # Run the following command to install the latest PowerShellGet: Install-Module -Name PowerShellGet -Force -AllowClobber # Install the Teams PowerShell Module. Install-Module -Name MicrosoftTeams -Force -AllowClobber # To start working with Microsoft Teams PowerShell module, sign in with your Azure credentials. Connect-MicrosoftTeams $user =Read-Host -Prompt 'Input the user name' $teams = Get-Team -User $user $teamMemberships=@() $teamChannels=@() $teamChannelMemberships=@() $i = 1 $teamMemberships = foreach ($team in $teams) { $GroupId = $team.GroupId Get-TeamUser -GroupId $GroupId | Select-Object *,@{Name="GroupId";Expression={$GroupId}} $channels = Get-TeamAllChannel -GroupId $GroupId | Select-Object *,@{Name="GroupId";Expression={$GroupId}} $teamChannels += $channels $teamChannelMemberships += foreach ($channel in $channels) { $channelDisplayName = $channel.DisplayName Get-TeamChannelUser -GroupId $GroupId -DisplayName $channelDisplayName | Select-Object *,@{Name="GroupId";Expression={$GroupId}} } $percent = [Math]::Round((100 * $i) / $teams.Length) Write-Progress -Activity "Search in Progress" -Status "$percent% complete" $i++ } $teams | Export-Csv -Path "teams.csv" -NoTypeInformation $teamMemberships | Export-Csv -Path "team-memberships.csv" -NoTypeInformation $teamChannels | Export-Csv -Path "team-channels.csv" -NoTypeInformation $teamChannelMemberShips | Export-Csv -Path "team-channel-memberships.csv" -NoTypeInformation

Microsoft Teams PowerShell Management Guide

Microsoft 365 Email Security Management Guide

Block Unwanted Emails Objective: Prevent sending or receiving emails from specific external email addresses or domains. Action: Navigate to the Tenant Allow/Block List in the Microsoft Security Center. Configure the settings to block specific email addresses or domains. For direct access, use this link: Tenant Allow/Block List. Review Past Week of Sign-In History Objective: Review sign-in history to identify any unusual user activity. Action: Access the Azure portal’s sign-in history section. Specify the user of interest and examine their sign-in locations and activities. Access the portal here: Azure Sign-In History.

Microsoft 365 Email Security Management Guide

Recently Created

Latest entries created

The 10 most recently created entries, sorted by each entry's publish date.

  1. Export Shared Mailbox Delegates from Exchange Online (and Why PowerShell ISE Breaks It) Jan 9, 2026
  2. Export All Group Memberships (Teams, Microsoft 365, Distribution Lists, Security Groups) Jan 9, 2026
  3. Export Exchange Inbox Rules with Exchange Online PowerShell Jul 30, 2025
  4. Managing Microsoft Office Versions with OfficeC2RClient Sep 10, 2024
  5. Microsoft Teams PowerShell Management Guide Feb 23, 2023
  6. Microsoft 365 Email Security Management Guide Feb 7, 2023
  7. Managing Exchange Online Auto-Expanding Archives with PowerShell Jul 6, 2021

Recently Updated

Latest revisions across entries

The 10 most recently updated entries, sorted by each entry's last modification date.

  1. Export Exchange Inbox Rules with Exchange Online PowerShell May 4, 2026
  2. Managing Exchange Online Auto-Expanding Archives with PowerShell Jan 15, 2026
  3. Export Shared Mailbox Delegates from Exchange Online (and Why PowerShell ISE Breaks It) Jan 12, 2026
  4. Export All Group Memberships (Teams, Microsoft 365, Distribution Lists, Security Groups) Jan 12, 2026
  5. Managing Microsoft Office Versions with OfficeC2RClient Dec 12, 2025
  6. Microsoft Teams PowerShell Management Guide Dec 12, 2025
  7. Microsoft 365 Email Security Management Guide Dec 12, 2025

Relationship Map

Memory Field

Use the relationship map to follow related categories, tags, and entries beyond the current list.

Categories 0
Tags 0
Entries 0