How to mark email messages as Read in Microsoft Outlook after certain time

How to mark email messages as Read in Microsoft Outlook after certain time while reading in the Reading Pane? Microsoft Outlook is the email platform choice by millions of folks and companies around the world. By default, Outlook will not mark a message as Read when you click on it and view it in the Reading […]

Continue Reading

Powershell to Reset password of test users who are member of one group

Powershell to Reset password of test users who are member of one group You can reset password of bulk users who are member of group1 by using below command: $upasswd = ConvertTo-SecureString “Abcd111*” -AsPlainText -Force Get-DistributionGroupMember group1 |foreach {write-host $_.PrimarySmtpAddress ; Set-ADAccountPassword -NewPassword $upasswd -Identity $_.Alias} Note – please change input values (marked in yellow) […]

Continue Reading

Powershell to update ThrottlingPolicy on bulk users from distribution group

Powershell to set ThrottlingPolicy on bulk users member of one distribution group You can set ThrottlingPolicy “exchcheck” on bulk users who are part of one Distribution group by using below command: Get-DistributionGroupMember group1 |foreach {write-host $_.PrimarySmtpAddress ; Set-Mailbox -ThrottlingPolicy exchcheck -Identity $_.Alias} Note – please change input values (marked in yellow) as per your requirements.  […]

Continue Reading

Powershell to import all mailboxes from .pst to exchange database using New-MailboxImportRequest

Powershell to import all mailboxes from .pst to exchange database using  New-MailboxImportRequest You can import all pst files in to exchange user mailbox user06 by using below command: Dir \storage01export*.pst | %{ New-MailboxImportRequest -Name user06 -BatchName Recovered -Mailbox $_.BaseName -FilePath $_.FullName -TargetRootFolder SubFolderInPrimary} Note – please change input values (marked in yellow) as per your […]

Continue Reading

Powershell to export all mailboxes from exchange database to .pst

Powershell to export all mailboxes from exchange database to .pst You can export all exchange mailbox data in to pst and store it on share drive b y using below command: foreach ($AllMailboxes in (Get-Mailbox)) { New-MailboxExportRequest -Mailbox $AllMailboxes -FilePath “\storageserver1export$($AllMailboxes.Alias).pst” }  Note – please change input values (marked in yellow) as per your requirements. […]

Continue Reading

Add bulk user to exchange distribution group from text file with Add-DistributionGroupMember

Add bulk user to exchange distribution group from text file with Add-DistributionGroupMember You can add multiple users in exchange distribution group from the text file, in below example the command is importing user email address from c:user.txt file and adding the users in mygroup disrtibution group. foreach($user in gc “C:user.txt”) { $user Add-DistributionGroupMember -Identity “mygroup” […]

Continue Reading

Powershell to get exchange mailbox size of single / bulk mailbox

Powershell to get exchange mailbox size of single / bulk mailbox Below is command to get size of exchange mailbox for user test1. Get-MailboxStatistics -Identity test1 |select TotalItemSize You can also select display name in output Get-MailboxStatistics -Identity journaldb06 |select displayname, TotalItemSize You can also list size of all mailbox and displayname of the user […]

Continue Reading