Intune Hybrid enrollment issues.

I understand that some of your Hybrid Azure AD joined devices are not showing up in Intune. Here are some settings and troubleshooting steps to confirm: Hybrid Azure AD devices should be auto enrolled using either Group policies or Autopilot. To ensure that the auto-enrollment feature is working as expected, you need to verify the auto-enrollment … Read more

PowerShell Script to download Mailbox Size with Archive storage.

$Result = @() #Get all user mailboxes $mailboxes = Get-Mailbox -ResultSize Unlimited -RecipientTypeDetails UserMailbox $totalmbx = $mailboxes.Count$i = 0 $mailboxes | ForEach-Object {$i++$mbx = $_ } $Result | Export-CSV “C:\Mailbox-Status-Report_edited.csv” -NoTypeInformation https://icloud360.in/wp-content/uploads/file-manager/Mailbox-Status-Report.ps1