Configuring Exchange 2010 RBACs to support regional groups of administrators to manage their own recipients in their own mailbox databases. The regional administrators will not be allowed to perform a “Remove” command from the EMC or EMS. All user accounts, …
Use the following commands to list or search for specific ActiveSync devices. $Mailboxes = Get-Mailbox -Database <DBName> | Select Identity or $Mailboxes = Get-CasMailbox -ResultSize Unlimited | Select Identity Then $Devices = ForEach ($Mailbox in $Mailboxes) {Get-ActiveSyncDevice -Mailbox $Mailbox.Identity | …
Address Rewriting Order of Precedence Single Email Address Rewrite Domain Rewrite Domain Wildcard Rewrite Enable the Address Rewriting Agents Enable-TransportAgent -Identity “Address Rewriting Outbound agent” Enable-TransportAgent -Identity “Address Rewriting Inbound agent” Disable the Address Rewriting Agents Disable-TransportAgent -Identity …
Output Receive Connector Settings to a Text File Get-ReceiveConnector <ReceiveConnectorName> | Format-List | Out-File “X:\FilePath\Receive-Connector.txt” Create a New Receive Connector and Copy the Remote IP Ranges from an Existing Receive Connector on Another Hub Server New-ReceiveConnector <ReceiveConnectorName> -Server <ServerName> …
List Mailboxes with Custom Quotas and Export to CSV get-mailbox -resultsize unlimited | where-object { $_.UseDatabaseQuotaDefaults -eq $false } | select-object DisplayName,Database,UseDatabaseQuotaDefaults,ProhibitSendReceiveQuota | export-csv ‘.\user-quotas.csv’ Find Recipients that Use a Particular Email Domain get-recipient -resultsize unlimited | where { …
Common Exchange 2010 Management Shell (Powershell) Commands for Mailbox Databases: Exclude Databases from Automatic Provisioning Set-MailboxDatabase <DBName> -IsExcludedFromProvisioning $true Suspend Databases from Automatic Provisioning Set-MailboxDatabase <DBName> -IsSuspendedFromProvisioning $false Add a Database Copy to a Server Add-MailboxDatabaseCopy -Identity …
Here are some tasks to perform after converting/migrating a Microsoft Virtual PC (VPC) to Hyper-V: Remove the old VPC virtual machine additions and reboot. Install the Hyper-V Integration Services (do not reboot). Start > Run: msconfig Boot tab, then Advanced …
Windows 7 Command to Update Group Policy on the Local Computer. Run the command prompt as Administrator. gpupdate gpudpate /Force Windows 7 Command to View Group Policy Settings on the Local Computer. Run the command prompt as Administrator. gpresult /R …
You cannot disable a Security Group in the same way a user account is disabled. However, you can change a Security Group to a Distribution Group, which disables all access provided by the group, but does not modify the group’s …
The following should apply for all Windows Server versions 2000-2008R2, and the file paths assume default locations. This information was taken from Microsoft KB 822158. Windows Update or Automatic Update Related Files %windir%\SoftwareDistribution\Datastore %windir%\SoftwareDistribution\Datastore\Logs Windows Security Files %windir%\Security\Database\*.edb …