• Home
  • PS
  • C#
  • Perl
  • MSSQL
  • MariaDB
  • Linux
  • Docker
  • MacOS
  • PG
  • Exchange Server
  • Windows
  • Other

Copy Receive Connectors to a New Exchange Server

Details
Written by: po3dno
Category: Exchange Server
Created: 29 May 2015
Hits: 1094

To perform this task, we'll first set two variables to define the source and target servers:

$OldServer = "OldServer"

$NewServer = "NewServer"

Then, we'll retrieve the list of non-default Receive Connectors from the source server into the variable$ReceiveConnectors:

[array]$ReceiveConnectors = Get-ReceiveConnector -Server $OldServer | Where {$_.Name -notlike "Default $($OldServer)" -and $_.Name -notlike "Client $($OldServer)"}

Read more …

Просмотр логов с транспортных серверов Exchange (Get-MessageTrackingLog)

Details
Written by: po3dno
Category: Exchange Server
Created: 08 October 2014
Hits: 1628

Перейти к концу метаданных

 
Переход к началу метаданных
 

В качестве параметров задается email адрес (отправителя или получателя) и время в минутах (за сколько минут выбрать лог до текущего момента).

 

Read more …

Powershell post image

Details
Written by: po3dno
Category: Exchange Server
Created: 25 February 2014
Hits: 1452

param(

  [System.IO.FileInfo]$file = $null,

  [string]$login = $null

);

 

$CODEPAGE = "iso-8859-1";

 

$url_upload = "http://url/filepost.php";

Read more …

Пользователи без фотографий в Outlook

Details
Written by: po3dno
Category: Exchange Server
Created: 28 January 2014
Hits: 1522

get-mailbox -resultsize unlimited | %{Get-ADUser $_.SamAccountName -property thumbnailphoto | Select Name,SamAccountName,EmailAddress,Department,@{Name="psize"; Exp={$_.thumbnailphoto.length}}} | export-csv photo.csv -Delimiter ";" -NoTypeInformation -Encoding Default

Mailbox Quotes

Details
Written by: Senka
Category: Exchange Server
Created: 25 September 2013
Hits: 1212

Get-Mailbox -ResultSize Unlimited | select displayname,database,{$_.ProhibitSendQuota.Value.ToMB()},{$_.ProhibitSendReceiveQuota.Value.ToMB()},{$_.IssueWarningQuota.Value.ToMB()} | Export-Csv mb.csv -Delimiter ";" -encoding Default -notypeinformation

  1. Exchange photo export
  2. Удаление писем из почтовых ящиков
  3. Exchange права редактирования групп рассылки
  4. Активность POP/SMTP почтовых ящиков

Page 2 of 3

  • 1
  • 2
  • 3

Login Form

  • Forgot your password?
  • Forgot your username?

Statistics

  • Users 2
  • Articles 164
  • Articles View Hits 149004