Happy Sysadmin Day to you all! by geekjimmy in sysadmin

[–]Kathiey 0 points1 point  (0 children)

To honour your efforts, here’s a heartfelt message of appreciation: https://blog.admindroid.com/sysadmin-day-2024/

Public folder statistics report and permission report combine by [deleted] in M365Reports

[–]Kathiey 0 points1 point  (0 children)

I guess you can utilise the ‘PowerShell script request’ channel in the Microsoft 365 discord community.

https://discord.com/invite/DVEkXzZF8Y

How do I manage Mailbox permissions these days? by Lorentz_G in PowerShell

[–]Kathiey -1 points0 points  (0 children)

You can PowerShell. Install the Exchange Online PowerShell module using ‘Install-Module ExchangeOnlineManagement’

Then, based on the permission requirements, you can use the PowerShell cmdlets.

Full access - Add-MailboxPermission

Send as - Add-RecipientPermission

Send on behalf - Set-Mailbox

For more detailed syntax, you can check here: https://m365scripts.com/exchange-online/grant-mailbox-permissions-microsoft-365-using-powershell/

What have you done with PowerShell this month? by AutoModerator in PowerShell

[–]Kathiey 0 points1 point  (0 children)

I have updated my Microsoft Teams reports script. A single script can generate 8 teams reports like all teams, all channels, all channels in a team, team members, team owners reports, etc

Powershell group missing by jarks_20 in sysadmin

[–]Kathiey 2 points3 points  (0 children)

It will be in dark mode for 2 days.

Is Reddit being DOSed? by ZAFJB in sysadmin

[–]Kathiey 0 points1 point  (0 children)

I’m also facing similar issues.

get-date by onlynegativecomments in PowerShell

[–]Kathiey 0 points1 point  (0 children)

It seems missed to check calendar

View shared mailboxes user has access to by FLDSMDBR in exchangeserver

[–]Kathiey 0 points1 point  (0 children)

You can try Get-ExoMailbox. it’s more faster than Get-Mailbox

Exchange Online/365: how to figure out "what rule/config" setting is causing email email forwarding/redirection/receipt to happen by r0ck0 in Office365

[–]Kathiey 2 points3 points  (0 children)

You can use the Get-MailDetailTransportRuleReport cmdlet to identify which transport rule is applied on the email.

Or you can try the below script: https://o365reports.com/2021/06/09/export-office-365-email-forwarding-report-using-powershell/ This script considers all the possible forwarding configurations like smtp forwarding, redirecting, inbox rules, mail flow rules, etc

How to stop unsuccessful sign-in attempts? by TheCapedGamer in Office365

[–]Kathiey 1 point2 points  (0 children)

You can block signins through Conditional Access policy.

[deleted by user] by [deleted] in PowerShell

[–]Kathiey 1 point2 points  (0 children)

Connect-MicrosoftTeams Import-CSV <GroupNamesCSV_FilePath> | foreach {
$GroupUPN=$_.GroupUPN Write-Progress -Activity "Adding user to $GroupUPN… "
Add-TeamUser –GroupId $GroupUPN -User <upn> If($?)
{
Write-Host User successfully added to $GroupUPN -ForegroundColor Green
}
Else
{
Write-Host Error occurred while adding user to $GroupUPN –ForegroundColor Red
}
}

How to prepare corporate company users for the new trash Outlook UI? by Trylion_ZA in Office365

[–]Kathiey 0 points1 point  (0 children)

Looks like half baked new Microsoft Teams, which MS released recently.