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…
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…
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…
Generate multiple dummy exchange mailbox with size of 1TB+ for testing If you want to create multiple dummy mailbox to check exchange performance or for some test then below is…
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…
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…
Creating Scheduled Tasks for Exchange 2010 PowerShell Scripts PowerShell Command Syntax for Scheduling Tasks on a Machine with the Exchange 2010 Management Tools Installed The following command syntax is what…
How to add more than one machine to the trusted hosts When working with PowerShell remoting, when you establish a session from your computer to a remote computer, all of…
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…
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…
Powershell script to install forefront identity manager (FIM) 2012 r2, Unattended installation of FIM The following is an example of installing the FIM 2010 R2 Synchronization Service: $FimSyncMsi = ‘”D:Synchronization…