Category: Powershell
-
+
+
+
+
+
+
This PowerShell script creates a user-friendly GUI for sending email notifications about returned equipment. Users can input recipient details, add or remove equipment items, and generate a professionally formatted HTML email. The email includes a table of equipment details (Device Type, Make/Model, Serial Number, Asset Tag) and is sent via…
-
a PowerShell script that can help you quickly identify any duplicate proxy addresses across all users in your Azure AD environment.
-
+
+
+
+
+
+
PowerShell script helps you export contacts from a mailbox using Microsoft Graph, but keep in mind it hasn’t been fully tested, so proceed with caution. The process involves setting up a destination folder for export, prompting the user for an email address, and connecting to Microsoft Graph with proper authentication.…
-
+
+
+
+
+
+
First attempt: This PowerShell script splits large Microsoft 365 mailbox folders into smaller ones, ensuring no folder exceeds 99,999 items. It uses Microsoft Graph API for authentication, folder management, and email movement. Features include detailed logging, error handling with retries, and batch processing to efficiently move emails into newly created…
-
To uninstall the existing Exchange Management modules and install the latest one, follow these steps: Uninstall the Existing Exchange Management Module Install the Latest Exchange Online Management Module Make sure that your PowerShell execution policy allows for module installation by setting it to RemoteSigned if necessary:Set-ExecutionPolicy RemoteSigned -Scope CurrentUser These…
-
Code to review all mailbox email addresses and update
-
+
+
+
+
+
+
Powershell cmd example to grab all mail attributes for AD Objects in a specific OU.
-
+
+
+
+
+
+
This script automates the generation of a report summarizing different group and mailbox types using Exchange Online and Microsoft Graph, saving the results in CSV and HTML formats. It compares current data with previous reports to highlight changes, then emails the summary with attachments. The script streamlines monitoring of group…
-
+
+
+
+
+
+
This script connects to Exchange Online to retrieve and analyze the last 90 days of audit logs for a specified mailbox. It processes the audit data, formats key details like timestamp, user, action, and message subjects, and generates a report. The results are displayed in a sortable grid view, helping…
-
Quickly check if a user or subset of users are part of a ad group that has more than 5000 members. $adgroup = “[group]” $groupdn = (get-adgroup $adgroup).distinguishedname $members = dsget group $grouppn -members $total = foreach ($i in $members){$u = $i.trim(‘”‘); get-aduser $u | select userprincipalname} $total -like “*[unique…