Affichage des articles dont le libellé est Exchange. Afficher tous les articles
Affichage des articles dont le libellé est Exchange. Afficher tous les articles

jeudi 30 juin 2011

Migrer Dossier publics Exchange

Step 1: Replicating Exchange 2003 PF's to Exchange 2010


Add the Exchange 2010 server as PF replica partner for the Exchange 2003 server PF's:

  • From the Exchange 2010 server: .\AddReplicaToPFRecursive.ps1 -server "Exchange 2010 Server" -TopPublicFolder "\" -ServerToAdd "Exchange 2010 Server"

If you are planning to have multiple Exchange 2010 PF servers, you can repeat the Cmdlet above to all of them.

Replicate the Exchange 2003 Public Folder hierarchy and content to Exchange 2010 server using ESM (Exchange 2003 System Manager), and then (if you have multiple Exchange 2010 PF servers), replicate the Public Folder hierarchy and content from the Exchange 2010:

  • From the Exchange 2010 server: Update-PublicFolderHierarchy -Server "Exchange 2010 Server"

Step 2: Moving Exchange 2003 PF's to Exchange 2010


As a last step, after you confirmed that all the PF have been replicated to the Exchange 2010, you can move all replicas from Exchange 2003 to Exchange 2010. The "move all replicas" will actually remove the Exchange 2003 replicas.

To move all Exchange 2003 replicas to Exchange 2010, which will actually remove the Exchange 2003 replicas:

  • From the Exchange 2010 server: .\MoveAllReplicas.ps1 -Server "Exchange 2003 Server" -NewServer "Exchange 2010 Server"

Additional Cmdlets


  • To view a list of the replicas in the public folder hierarchy: Get-PublicFolder -recurse |fl name,replicas
  • For System Folders: Get-PublicFolder -recurse \non_ipm_subtree |fl name, replicas
  • To compare content replicated between the source and destination servers: Get-PublicFolderStatistics

vendredi 24 juin 2011

Lync and Exchange UM Integration

Suivre l'article :
http://blog.schertz.name/2010/11/lync-and-exchange-um-integration/
Deploy Exchange Server 2010 SP1 in same forest as a consolidated server with Unified Messaging role included.
  1. Replace the self-signed certificate with one from an internal Windows Enterprise Certificate Authority and reassign all Exchange roles to it.
  2. Create a new SIP Dial Plan in Exchange.
  3. Configure UM Dial Plan, Policy, and Auto Attendant settings.
  4. Enable Unified Messaging on at least one mailbox.
  5. Run the exchucutil.ps1 PowerShell script on the Exchange server.
  6. Configure Lync Server Dial Plan or verify existing configuration is sufficient.
  7. Run the ocsumutil.exe tool on the Lync server.

mardi 3 mai 2011

Boites Deconnectées Exchange 2010


Liste des boites déconnectée
Get-MailboxStatistics -server <NomServeur>| where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid,Database,totalitemsize
Suppression d'une boite déconnectée
Remove-Mailbox -Database <DatabaseName> -StoreMailboxIdentity <MailboxGuid> -confirm:$false
Suppression de toutes les boites déconnectées
$users = Get-MailboxStatistics -server <NomServeur> | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid,Database,totalitemsize $users | ForEach { Remove-Mailbox -Database $_.Database -StoreMailboxIdentity $_.MailboxGuid -confirm:$false }

mercredi 23 février 2011

Erreur Public Folder Management Console Exchange 2007

Si vous rencontrez l'erreur concernant la console de gestion des dossiers publiques quand vous allez dans les outils de la console Exchange 2007 :
Il faut modifier la cle de registre suivante :
Ancienne cle :
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\v8.0\AdminTools\Toolbox\PublicFolderManagementConsole]
@=""
"Name"="Console de gestion des dossiers publics"
"LocalizedName"=dword:000004b3
"Description"="Permet la gestion des dossiers publics d'Exchange."
"LocalizedDescription"=dword:000004b4
"Icon"=dword:000004ba
"GroupId"=dword:00000001
"Type"="SnapIn"
"Assembly"="bin\\Microsoft.Exchange.Management.NativeResources.dll"
"Command"="mmc.exe"
"CommandFile"="\"bin\\Public Folder Management Console.msc\""
"CommandParameters"="\"bin\\Public Folder Management Console.msc\""
Nouvelle cle :
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\v8.0\AdminTools\Toolbox\PublicFolderManagementConsole]
@=""
"Name"="Public Folder Management Console"
"LocalizedName"=dword:000004b3
"Description"="Permet la gestion des dossiers publics d'Exchange."
"LocalizedDescription"=dword:000004b4
"Icon"=dword:000004ba
"GroupId"=dword:00000001
"Type"="SnapIn"
"Assembly"="bin\\Microsoft.Exchange.Management.NativeResources.dll"
"Command"="mmc.exe"
"CommandFile"="\"bin\\Public Folder Management Console.msc\""
"CommandParameters"="\"bin\\Public Folder Management Console.msc\""
Et voil , plus d'erreur.

Sauvegarde complete base exchange avec schema de rotation Arcserve

A mettre sur le serveur Brighstor Arcserve
HKEY_LOCAL_MACHINE\SOFTWARE\ComputerAssociates\BrightStor ARCserve Backup\Base\Task
Key Name: DSFullBackup
Value Name: ExchangeFullBackup
Data Type: REG_DWORD
data: 0x1

CSTOP puis un CSTART aprs cette modification

Erreur de certificat sur la Messagerie unifiee Exchange 2007 avec OCS 2007

The solution is to issue a cert using the Um Server FQDN as subject name! you can't use SubjectAlternateName becuuse OCS will not recognize it!
I used a cert for all my needs (OWA,UM,ACTIVESYNC AND Outlook Anywhere) using SubjectAlternateName , but even if the UM FQDN was in the list it won't be recognized.
Just issue a cert and use it only for UM and SMTP (otherwise errors will appear when UM try to send messages to HubTransoportServer).
UM will automatically use the most recent cert it will find in exchangecertificate list.