<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Sécurité &amp; Com Unifiées</title><link>http://blogs.technet.com/benoit/default.aspx</link><description>Benoit LE CAHAIN UC Consultant</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>DPM 2010, hyper-V et ILR ?</title><link>http://blogs.technet.com/benoit/archive/2009/11/06/dpm-2010-hyper-v-et-ilr.aspx</link><pubDate>Fri, 06 Nov 2009 17:06:34 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3292012</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3292012.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3292012</wfw:commentRss><description>&lt;p&gt;ILR, pour “Item-Level Recovery”: Parmi toutes les améliorations qu’apporte DPM 2010 à la virtualisation, celle qui me parait la plus intéréssante pour le moment est l’ILR.&lt;/p&gt;  &lt;p&gt;En effet en ne protégeant que l’objet “machine virtuelle », donc avec une utilisation de stockage unique, je peux restaurer la machine virtuelle mais aussi les données à l’intérieur !&lt;/p&gt;  &lt;p&gt;Bon c’est vrai, les données restent des fichiers et répertoires. Ainsi, les bases de données SQL, Exchange ou fermes SharePoint ne sont pas reconnu en tant que telles, mais en tant que fichiers. Cependant, vous pouvez tout à fait choisir de restaurer une base à l’intérieur de votre VHD sur un partage réseau pour ensuite l’attacher à un server SQL, à Exchange ou à une ferme MOSS!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/DPM2010hyperVetILR_FEA0/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/DPM2010hyperVetILR_FEA0/image_thumb_1.png" width="458" height="242" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/DPM2010hyperVetILR_FEA0/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/DPM2010hyperVetILR_FEA0/image_thumb.png" width="458" height="482" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3292012" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/DPM+2010+Hyper-V+ILR/default.aspx">DPM 2010 Hyper-V ILR</category></item><item><title>Realiser des snapshots VSS avec Diskshadow.exe</title><link>http://blogs.technet.com/benoit/archive/2009/11/05/realiser-des-snapshots-vss-avec-diskshadow-exe.aspx</link><pubDate>Thu, 05 Nov 2009 07:40:06 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3291613</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3291613.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3291613</wfw:commentRss><description>&lt;p&gt;Windows Server 2008 Propose un outil simple d’accès pour réaliser des snapshots Volume Shadow Copy Services : Diskshadow.exe. Vous le trouverez dans le répertoire System32 de votre système.&lt;/p&gt;  &lt;p&gt;voici un exemple de script commenté pour vous permettre d’apprenhender rapidement l’outil. Le but est ici de faire un snapshot de machines virtuelles via le VSS Writer de Hyper-V.&lt;/p&gt;  &lt;p&gt;Vous pouvez retiré le commentaires de ce script, puis le sauvegarder, par exmeple “script.dsh”.&lt;/p&gt;  &lt;p&gt; Ce Script pourra être executé par la commande suivante: “diskshadow.exe /s script.dsh”&lt;/p&gt;  &lt;p&gt;&lt;a name="_Toc243240791"&gt;1.1.1 Explication du script&lt;/a&gt;    &lt;table border="1" cellspacing="0" cellpadding="0"&gt;&lt;tbody&gt;       &lt;tr&gt;         &lt;td valign="top" width="653"&gt;           &lt;p&gt;set context persistent&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Le contexte d’exécution du script sera identique au contexte d’exécution actuel du serveur : l’ensemble de « writers VSS » sera impliqué dans la sauvegarde.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;set metadata c:\script\example.cab&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Le contexte d’exécution est enregistré dans le fichier example.cab&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;set verbose on&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Le script va loguer des informations dans l’explorateur d’événements en cas d’erreur.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;begin backup&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Démarrage de la sauvegarde&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;add volume C: alias Data&lt;/p&gt;            &lt;p&gt;add volume D: alias System&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Ajout des volumes concernés par la sauvegarde: &lt;/b&gt;&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;D:\ ; les machines virtuelles sont stockées sur ce volume.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;C :\ ; L’initial Store de Hyper-V est stocké sur ce volume.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'Task Scheduler Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {d61d61c8-d73a-4eee-8cdd-f6f9786b7124}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'VSS Metadata Store Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {75dfb225-e2e4-4d39-9ac9-ffaff65ddf06}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'Performance Counters Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {0bada1de-01a9-4625-8278-69e735f39dd2}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'System Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {e8132975-6f93-4464-a53e-1050253ae220}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'ASR Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {be000cbe-11fe-4426-9c58-531aa6355fc4}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'Shadow Copy Optimization Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {4dc3bdd4-ab48-4d07-adb0-3bee2926fd7f}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'IIS Config Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {2a40fd15-dfca-4aa8-a654-1f8c654603f6}&lt;/p&gt;            &lt;p&gt;è &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'BITS Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {4969d978-be47-48b0-b100-f328f07ac1e0}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'Registry Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {afbab4a2-367d-4d15-a586-71dbb18f8485}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'WMI Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {a6ad56c2-b509-4e6c-bb19-49d8f43532f0}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Exclude Writer name: 'COM+ REGDB Writer'&lt;/p&gt;            &lt;p&gt;writer exclude {542da469-d3e1-473c-9f4f-7847f01fc64f}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exclusion de ce writer. Aucune information le concernant ne sera retenue.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;# Include Writer name: 'Microsoft Hyper-V VSS Writer'&lt;/p&gt;            &lt;p&gt;writer verify {66841cd4-6ded-4f4b-8f17-fd23f8ddc3de}&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Validation que le writer VSS « Hyper-V » est actuellement impliqué dans la demande de cliché instantané.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;&lt;b&gt;&amp;gt;A ce moment, seul le driver VSS Hyper-V n’a pas été exclu. Les informations qui seront intégrées dans le cliché instantané ne concerneront que les machines virtuelles de l’hyperviseur.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;Create&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Création du cliché instantané&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;Expose %data% q:&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Le cliché instantané est monté dans le lecteur&amp;#160; « q: »&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;exec c:\diskshadowdata\backupscript.cmd&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Exécutions d’un script dans lequel une copie du fichier .vhd de chaque machine virtuelle est ordonnée de « q : » à un répertoire de sauvegarde.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;delete shadows ID %system%&lt;/p&gt;            &lt;p&gt;delete shadows ID %data%&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Suppression des clichés instantanés.&lt;/b&gt;&lt;/p&gt;            &lt;p&gt;end backup&lt;/p&gt;            &lt;p&gt;&amp;gt; &lt;b&gt;Fin de la sauvegarde.&lt;/b&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;     &lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3291613" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/VSS/default.aspx">VSS</category></item><item><title>Proteger un DAG Exchange 2010 avec DPM 2010</title><link>http://blogs.technet.com/benoit/archive/2009/10/22/prot-ger-un-dag-exchange-2010-avec-dpm-2010.aspx</link><pubDate>Thu, 22 Oct 2009 16:01:39 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3288495</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3288495.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3288495</wfw:commentRss><description>&lt;p&gt;DPM 2010 prend en charge les DAG Exchange server 2010. Il est assez intéréssant de comprendre la gestion des bases, des logs et des points de restauration.&lt;/p&gt;  &lt;p&gt;J’ai installé un DAG Exchnage 2010 sur deux serveurs Exchange, avec deux bases dans ce DAG.&lt;/p&gt;  &lt;p&gt;Ensuite, j’ai téléchargé la béta publique de DPM 2010 à cette adresse: &lt;a href="https://connect.microsoft.com/Downloads/DownloadDetails.aspx?SiteID=840&amp;amp;DownloadID=22070"&gt;&lt;strong&gt;DPM Beta release&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;&lt;strong&gt;Mise en place de la protection:&lt;/strong&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;Comme avec DPM 2007 SP1 créer un nouveau group de protection.&lt;/p&gt;  &lt;p&gt;Selectionner le DAG. On y retrouve bien nos 2 noeuds Exchange et nos 2 bases de données.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb.png" width="515" height="388" /&gt;&lt;/a&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Entrer un nom et choisir le mode de stockage.&lt;/p&gt;  &lt;p&gt;&lt;em&gt;Il est maintenant possible d’utiliser le cloud comme solution de stockage pour la protection long-term. :)&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_4.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_1.png" width="349" height="189" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;em&gt;DPM s’appuie toujours sur eseutil pour le check d’intégrité des données Exchange&lt;/em&gt;.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_6.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_2.png" width="347" height="101" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Déclarer vos bases comme “Full Backup” database ou “Copy Backup” database.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_8.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_3.png" width="510" height="382" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;Ce point est important, car il détermine la gestion des logs Exchange. Faisons un parenthèse, et prenons un exemple:&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;J'ai créé une DB3 active sur Node1 et sa copie sur Node2 &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;Avec DPM2010 je créer un PG et je choisis Node2. Je déclare la DB3 comme une copy backup. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;Première synchro. PG status: OK. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;Je génère des logs (j'envoie une belle pièce jointe à 4 collègues, tous sur DB3). Je monte à plus de 100 logs... &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;Je constate les mêmes logs sur les Node1 et Node2: Normal! &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;-&amp;gt;Je créer un recovery point de DB3. Stauts:Ok. Aucun log n'a été tronqué. Rien. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;Je fais basculer mon DAG, pour que DB3 devienne active sur Node2. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;-&amp;gt;Je créer un recovery point de DB3. Stauts:Ok. -&amp;gt; rebelote Aucun log n'a été tronqué. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;J'ai fait plusieurs fois l'opération. C'est net et sans bavure, une DB déclarée dans DPM comme une &amp;quot;Copy Backup&amp;quot; ne permet ni de synchroniser les logs toutes les 15 minutes, ni de tronquer les logs. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;Je créer un nouveau PG, je choisi DB3 sur Node1 (actuellement en mode copie d'un point de vue Exchange), je la déclare &amp;quot;Full Backup&amp;quot; dans DPM. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;-&amp;gt; Je créer un recovery point. Les logs sont tronqués sur Node1 et Node2. &lt;/font&gt;&lt;/p&gt;  &lt;p&gt;&lt;font color="#808080"&gt;-&amp;gt; Sur Node1 la &amp;quot;copie&amp;quot; à ce moment il y a quelques logs supplémentaires de reste (10 logs de marge de sécurité)&lt;/font&gt;&lt;/p&gt;  &lt;p&gt;Reprenons…&lt;/p&gt;  &lt;p&gt;Dans le cas d’un DAG sur 2 nœuds, où chaque nœud héberge des bases actives, vous pouvez choisir de déclarer ces bases, sur ce nœud, comme &amp;quot;Full backup” dans DPM. Vous gardez ainsi une logique entre DPM et Exchange en vous assurant que les bases préférées d’un nœud Exchange (bases habituellement en prod sur ce noeud1) sont aussi les bases préférées de DPM (Full Backup). Nous pourrions choisir justement de déclarer en Full backup une copie de ces bases, sur un autre nœud, pour limiter la charge du nœud Exchange, mais ceci n’a pas de sens si DPM doit de toute manière intervenir sur ce nœud pour faire une sauvegarde de copies d’autres bases… J’espère que vous me suivez :) &lt;/p&gt;  &lt;p&gt;&lt;em&gt;Il est possible faire un test de consistance automatiquement si le replica apparait comme inconsistant.&lt;/em&gt;&lt;/p&gt; &lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_10.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_4.png" width="532" height="340" /&gt;&lt;/a&gt;   &lt;p&gt;Pour chaque DB, DPM créer une partition “replica”et une partition “recovery points”&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_12.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_5.png" width="532" height="494" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;DPM va synchroniser son contenu avec le DAG Exchange pour provisionner la partition “replica” de chaque base. (Premier Express Full)&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_14.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_6.png" width="532" height="167" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Actuellement, DB1 est active sur CEX1, DB2 est active sur CEX2&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_16.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_7.png" width="937" height="431" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Comme pour le “preferred node” d’un cluster CCR Exchange 2007, DPM effectue toujours la synchro des logs sur la db déclarée préférrée ou “Full backup” lorsque celle ci est disponible. Ainsi, seul le replica de cette DB dispose des derniers logs synchronisés&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_18.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_8.png" width="395" height="129" /&gt;&lt;/a&gt; &lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_20.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_9.png" width="404" height="127" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;Les recovery points créés après cette synchro ne seront disponibles que pour les Bases “Full Backup”.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_22.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_10.png" width="917" height="545" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Même après une bascule du DAG,DPM continu de contacter les DBs Déclarées comme “Full Backup&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_24.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_11.png" width="499" height="394" /&gt;&lt;/a&gt; &lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_26.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/ProtgerunDAGExchange2010avecDPM2010_FD49/image_thumb_12.png" width="699" height="227" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Lors de l’opération de Full Express, DPM effectue une synchro pour chaque DB.&lt;/p&gt;  &lt;p&gt;Le recovery point qui sera créé après cette opération sera disponible pour chaque base, et chaque base dispose rigoureusement de la même info.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3288495" width="1" height="1"&gt;</description></item><item><title>Exchange Server 2010 est RTM !</title><link>http://blogs.technet.com/benoit/archive/2009/10/08/exchange-server-2010-est-rtm.aspx</link><pubDate>Thu, 08 Oct 2009 22:23:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3285610</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3285610.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3285610</wfw:commentRss><description>&lt;P&gt;Tout est dans le titre!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://msexchangeteam.com/archive/2009/10/08/452775.aspx"&gt;http://msexchangeteam.com/archive/2009/10/08/452775.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3285610" width="1" height="1"&gt;</description></item><item><title>DPM 2010 est en beta publique !</title><link>http://blogs.technet.com/benoit/archive/2009/09/30/dpm-2010-est-en-b-ta-publique.aspx</link><pubDate>Wed, 30 Sep 2009 11:06:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3283993</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3283993.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3283993</wfw:commentRss><description>&lt;P&gt;La nouveau DPM 2010 est arrivé en béta publique, et il s'annonce vraiment impressionnant!&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/dpm/archive/2009/09/29/DPM-2010-beta-is-available-now.aspx" mce_href="http://blogs.technet.com/dpm/archive/2009/09/29/DPM-2010-beta-is-available-now.aspx"&gt;http://blogs.technet.com/dpm/archive/2009/09/29/DPM-2010-beta-is-available-now.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3283993" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/DPM+2010/default.aspx">DPM 2010</category></item><item><title>Communicator 2007 :  CRL et OAB</title><link>http://blogs.technet.com/benoit/archive/2009/07/06/communicator-2007-crl-et-oab.aspx</link><pubDate>Mon, 06 Jul 2009 13:39:41 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3261456</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3261456.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3261456</wfw:commentRss><description>&lt;p&gt;Microsoft Office Communicator 2007 est une application qui s’appuie sur Internet Explorer pour la configuration du proxy, mais aussi pour la vérification de la CRL (Certificate Revocation List). &lt;/p&gt;  &lt;p&gt;Ceci est un point fondamental car ne pas avoir accès à cette liste entraine un point gênant: Impossible de télécharger le carnet d’adresses!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Communicator2007CRLetOAB_B1F8/OAB%20error_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="OAB error" border="0" alt="OAB error" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Communicator2007CRLetOAB_B1F8/OAB%20error_thumb.png" width="385" height="142" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Au moment de la connexion de l’utilisateur sur son client Communicator 2007, se dernier établi une connexion sécurisée avec les serveurs Frontaux (au sein du domaine) ou avec le serveur Edge via un parfeu (depuis l’extérieur) en s’appuyant sur le certificat web du serveur contacté. C’est aussi via ce certificat que le serveur et le client Communicator vont chercher à vérifier la CRL.&lt;/p&gt;  &lt;p&gt;Dans les propriétés du certificat serveur, il est possible de trouver au moins 2 méthodes d’accès à la CRL: une requête LDAP au SDP ou via une URL:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Communicator2007CRLetOAB_B1F8/certificate%20CRL_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="certificate CRL" border="0" alt="certificate CRL" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Communicator2007CRLetOAB_B1F8/certificate%20CRL_thumb.png" width="300" height="378" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;/p&gt;  &lt;p&gt;Chaque machine cherchant à valider la CRL commence toujours par la requête LDAP, et se rabat ensuite vers l’URL web si la première échoue.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;u&gt;Troublshooter un problème de CRL:&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;1/ Accès à la CRL&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Vérifier que le poste client dispose d’un accès “théorique” à la CRL. Au sein d’un domaine c’est automatique via Active Directory. A l’extérieur avec des certificats propriétaires il est impératif de publier la CRL avec l’URL web via un reverse proxy comme ISA Server 2006 ou bien Forefront Threat Management Gateway.&lt;/p&gt;  &lt;p&gt;Entrez l’URL web dans votre navigateur afin de tester ci cette méthode d’accès est valable.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;2/ Vérifier les paramètres IE&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Communicator2007CRLetOAB_B1F8/IE%20Check%20CRL_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IE Check CRL" border="0" alt="IE Check CRL" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Communicator2007CRLetOAB_B1F8/IE%20Check%20CRL_thumb.png" width="311" height="350" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Par défaut, IE est configuré pour valider la CRL. Si le problème d’OAB rencontré est bien lié à la CRL, en décochant ces 2 cases vous devriez être à même de télécharger l’OAB. Ceci ne représente pas une solution.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;3/ Vérifier l’état de santé de la CRL&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Faites un export du certificat serveur ( du Front End ou du Access Edge) au format X509 ( fichier CER)&lt;/p&gt;  &lt;p&gt;puis depuis le serveur CA, exécutez une commande MS DOS et entrez:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;certutil –URL c:\votrechemin\votrefichierCER&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;“L’URL retriever tool” devrait s’exécuter: Faites un “retrieve”&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Communicator2007CRLetOAB_B1F8/URL%20retriever%20tool%201_2.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="URL retriever tool 1" border="0" alt="URL retriever tool 1" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Communicator2007CRLetOAB_B1F8/URL%20retriever%20tool%201_thumb.png" width="328" height="108" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Vous verrez alors apparaitre l’état d’accès de la CRL par requête AD.&lt;/p&gt;  &lt;p&gt;“Vérifiée” signifie que celle ci est seine.&lt;/p&gt;  &lt;p&gt;Si votre CRL est expirée, éxécutez un &lt;strong&gt;certutil – CRL&lt;/strong&gt; pour la réactiver.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3261456" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/OAB+CRL+comunicator+2007/default.aspx">OAB CRL comunicator 2007</category></item><item><title>Quelques informations cles sur l’Offline Address Book</title><link>http://blogs.technet.com/benoit/archive/2009/06/30/quelques-informations-cl-s-sur-l-offline-address-book.aspx</link><pubDate>Tue, 30 Jun 2009 17:17:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3259987</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3259987.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3259987</wfw:commentRss><description>&lt;P&gt;Le client Microsoft Office Communicator 2007 et Communicator 2007 R2 vous permet de rechercher des utilisateurs au sein de votre société grâce à un carnet d’adresse&amp;nbsp; (OAB : Offline Address Book) qu’il synchronise au démarrage (Attention: Communicator hérite de la configuration réseau de IE).&lt;/P&gt;
&lt;P&gt;Lorsqu’un utilisateur se logue sur Communicator 2007, le serveur OCS lui indique l’URL adéquate pour récupérer le carnet d’adresse:&lt;/P&gt;
&lt;P&gt;· URL interne si l’utilisateur s’est logué au sein de la société (internalwebfqdn)&lt;/P&gt;
&lt;P&gt;· URL externe si l’utilisateur s’est logué en dehors de la société (externalwebfqdn)&lt;/P&gt;
&lt;P&gt;Ce carnet d’adresse se situe ici:&lt;/P&gt;
&lt;P&gt;· Windows XP: %userprofile%\Local Settings\Application data\Microsoft\Communicator&lt;/P&gt;
&lt;P&gt;· Windows Vista: %userprofile%\AppData\Local\Microsoft\Communicator &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Galcontacts.db et GalcontactsDelta.db.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/QuelquesinformationsclssurlOfflineAddres_E51D/image_2.png" mce_href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/QuelquesinformationsclssurlOfflineAddres_E51D/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=clip_image002 border=0 alt=clip_image002 src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/QuelquesinformationsclssurlOfflineAddres_E51D/clip_image002_29d312d1-9cdb-48bc-9fd9-baaceaecfb54.gif" width=168 height=116 mce_src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/QuelquesinformationsclssurlOfflineAddres_E51D/clip_image002_29d312d1-9cdb-48bc-9fd9-baaceaecfb54.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Pour info, d’autres informations sont stockées sur les poste client (configuration, langue, Normalization Rules). On retrouve ces infos dans le registre:&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Key: HKEY_CURRENT_USER\Software\Microsoft\Communicator\ &lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Le serveur OCS contacte Active Directory via le process ABServer.exe toutes les nuits à 1h30, et construit un delta de carnet d’adresses (différence entre la nuit en cours et la nuit précédente) (fichier .DABS), et un nouveau carnet d’adresses complet (fichier .LSABS).&lt;/P&gt;
&lt;P&gt;Il est possible de trouver la liste de ces carnets d’adresses via IIS.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Démarrer &amp;gt; Executer &amp;gt; Inetmgr&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Sous le site web par défaut, dérouler “Abs” puis “Int” ou “Ext” (interne ou externe, en fonction du lieu de connexion des utilisateurs) et explorer le répertoire “files”.&lt;/P&gt;
&lt;P&gt;Si vous avez besoin de forcer une mise à jour du carnet d’adresses, sans attendre le lendemain matin, exécutez les commandes suivantes:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ABServer.exe – regenUR&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;(Exécute un nouveau User Replicator Process: recupération de la liste des utilisateurs dans AD)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;C:\Program Files\Microsoft Office Communications Server 2007\Server\Core&amp;gt;abserver -regenUR&lt;/EM&gt;&lt;I&gt; &lt;BR&gt;&lt;EM&gt;Triggering UR regenerate - successful.&lt;/EM&gt; &lt;BR&gt;&lt;EM&gt;You might have to wait up to 5 minutes for it to actually complete.&lt;/EM&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Vous pouvez suivre les logs suivants pour vous assurez du succès de ce commande:&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Event Type:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Information&lt;/EM&gt;&lt;I&gt; &lt;BR&gt;&lt;EM&gt;Event Source:&amp;nbsp;&amp;nbsp; OCS User Replicator&lt;/EM&gt; &lt;BR&gt;&lt;EM&gt;Event Category: 1009&lt;/EM&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30027&lt;/EM&gt;&lt;I&gt; &lt;BR&gt;&lt;EM&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; User Replicator has started initial synchronization...&lt;/EM&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30024&lt;/EM&gt;&lt;I&gt; &lt;BR&gt;&lt;EM&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; User Replicator has completed initial synchronization...&lt;/EM&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30028&lt;/EM&gt;&lt;I&gt; &lt;BR&gt;&lt;EM&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; Address book (AB) entries are populated successfully...&lt;/EM&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;ABServer.exe –SyncNow&lt;/P&gt;
&lt;P&gt;(Exécute un nouveau Address Book Server Synchronisation Pass: création des fichiers DABS et LSABS)&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;C:\Program Files\Microsoft Office Communications Server 2007\Server\Core&amp;gt;abserver -syncNow&lt;/EM&gt;&lt;I&gt; &lt;BR&gt;&lt;EM&gt;Triggering Address Book Server synchronization pass - successful.&lt;/EM&gt; &lt;BR&gt;&lt;EM&gt;You might have to wait up to 5 minutes for it to actually complete.&lt;/EM&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;Vous pouvez suivre les logs suivants pour vous assurez du succès de ce commande:&lt;/P&gt;
&lt;P&gt;Event Type:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Information &lt;BR&gt;Event Source:&amp;nbsp;&amp;nbsp; OCS Address Book Server &lt;BR&gt;Event Category: 1008 &lt;/P&gt;
&lt;P&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 21005 &lt;BR&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; Synchronization pass started. &lt;/P&gt;
&lt;P&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 21034 &lt;BR&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; One or more phone numbers failed to normalize. &lt;/P&gt;
&lt;P&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 21007 &lt;BR&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; Synchronization pass completed successfully. &lt;/P&gt;
&lt;P&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 21056 &lt;BR&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; Synchronization Pass Summary. &lt;/P&gt;
&lt;P&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 21058 &lt;BR&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; Synchronization Pass Summary for Device Address Book files &lt;/P&gt;
&lt;P&gt;Event ID:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 21004 &lt;BR&gt;Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; Next synchronization pass will start at:&amp;nbsp; 11/17/2007 1:30 AM &lt;/P&gt;
&lt;P&gt;(ABServer.exe est disponible dans (%programfiles%\Microsoft Office Communications Server 2007\Server\Core)&lt;/P&gt;
&lt;P&gt;Des infos sur ABServer.exe: &lt;A href="http://technet.microsoft.com/en-us/library/bb936631.aspx" mce_href="http://technet.microsoft.com/en-us/library/bb936631.aspx"&gt;http://technet.microsoft.com/en-us/library/bb936631.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3259987" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/OAB+communicator+2007+R2/default.aspx">OAB communicator 2007 R2</category></item><item><title>OCS 2007 R2: Vous rencontrez des erreurs lors de la modification manuelle de l’URL externe des composants web.</title><link>http://blogs.technet.com/benoit/archive/2009/06/11/ocs-2007-r2-vous-rencontrez-des-erreurs-lors-de-la-modification-manuelle-de-l-url-web-externe.aspx</link><pubDate>Thu, 11 Jun 2009 12:45:52 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3253424</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3253424.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3253424</wfw:commentRss><description>&lt;p&gt;Vous pouvez modifier l’URL d’accès externe aux composants web de votre pool après installation de ce dernier, sur une édition Standard comme sur une édition Enterprise en utilisant l’outil LCSCMD.EXE:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Lcscmd /web /action:updatepoolurls /externalwebfqdn:&amp;lt;WebfarmFQDN&amp;gt; /poolname:&amp;lt;poolname&amp;gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;voir :&lt;a title="http://technet.microsoft.com/en-us/library/bb803611.aspx" href="http://technet.microsoft.com/en-us/library/bb803611.aspx"&gt;http://technet.microsoft.com/en-us/library/bb803611.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Cependant, il est tout à fait possible que vous rencontriez une erreur : [0XC3EC7814] &lt;strong&gt;Pool is not ready,&lt;/strong&gt; au beau milieu de cette commande:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS2007R2Vousrencontrezdeserreurslorsdel_A569/benlc2_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="benlc2" border="0" alt="benlc2" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS2007R2Vousrencontrezdeserreurslorsdel_A569/benlc2_thumb.jpg" width="516" height="260" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;Pour résoudre le problème :&lt;/p&gt;  &lt;p&gt;Exécuter le validation tool des web components (que vous trouverez au niveau de vos Front End, dans l’interface d’administration de OCS 2007 R2) pour vous assurer que celui ci ne vous remonte pas d’erreur.&lt;/p&gt;  &lt;p&gt;Il est possible que IIS 7 (sous Windows Server 2008) soit configuré par défaut pour ne pas vous permettre de parcourir les répertoires des sites “ABS” et “GroupExpansion”.&lt;/p&gt;  &lt;p&gt;Rendez vous dans IIS, et pour chacun de ses sites et sous sites vérifiez que “Directory Browsing” est bien activé:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS2007R2Vousrencontrezdeserreurslorsdel_A569/benlc1_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="benlc1" border="0" alt="benlc1" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS2007R2Vousrencontrezdeserreurslorsdel_A569/benlc1_thumb.jpg" width="719" height="298" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Enfin, pour la commande &lt;strong&gt;Lcscmd /web /action:updatepoolurls /externalwebfqdn:&amp;lt;WebfarmFQDN&amp;gt; /poolname:&amp;lt;poolname&amp;gt;&lt;/strong&gt;, entrez le nom court de votre pool, et non son nom FQDN.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3253424" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/OCS+R2+web+components/default.aspx">OCS R2 web components</category></item><item><title>OCS 2007/2007 R2 : qualite de voix</title><link>http://blogs.technet.com/benoit/archive/2009/02/20/ocs-2007-2007-r2-qualit-de-voix.aspx</link><pubDate>Fri, 20 Feb 2009 15:23:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3204919</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3204919.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3204919</wfw:commentRss><description>&lt;P&gt;Le rôle “Quality of Experience” Monitoring server d’OCS 2007 est dédié à la surveillance de la bande passante disponible sur le réseau et à la qualité des flux audio et vidéo qui y circulent. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS20072007R2qualitdevoix_BC2D/image_2.png" mce_href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS20072007R2qualitdevoix_BC2D/image_2.png"&gt;&lt;IMG title=image style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=382 alt=image src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS20072007R2qualitdevoix_BC2D/image_thumb.png" width=390 border=0 mce_src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS20072007R2qualitdevoix_BC2D/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Vous pouvez l’utiliser pour générer des rapports d’utilisation, ou pour positionner des compteurs/alertes qui vous aideront à identifier les points qui pourraient être bloquants, comme un bouchon sur un réseau saturé. &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS20072007R2qualitdevoix_BC2D/image_4.png" mce_href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS20072007R2qualitdevoix_BC2D/image_4.png"&gt;&lt;IMG title=image style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; DISPLAY: inline; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=267 alt=image src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS20072007R2qualitdevoix_BC2D/image_thumb_1.png" width=397 border=0 mce_src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/OCS20072007R2qualitdevoix_BC2D/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;U&gt;Je vous recommande ces deux guides:&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.microsoft.com/downloads/details.aspx?familyid=09115944-625f-460b-b09c-51e3c96e9f7e&amp;amp;displaylang=en href="http://www.microsoft.com/downloads/details.aspx?familyid=09115944-625f-460b-b09c-51e3c96e9f7e&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=09115944-625f-460b-b09c-51e3c96e9f7e&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=09115944-625f-460b-b09c-51e3c96e9f7e&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A title=http://www.microsoft.com/downloadS/details.aspx?FamilyID=9ed29d74-3391-4902-bf2c-6757410f3335&amp;amp;displaylang=en href="http://www.microsoft.com/downloadS/details.aspx?FamilyID=9ed29d74-3391-4902-bf2c-6757410f3335&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloadS/details.aspx?FamilyID=9ed29d74-3391-4902-bf2c-6757410f3335&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloadS/details.aspx?FamilyID=9ed29d74-3391-4902-bf2c-6757410f3335&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Pour autant, ce serveur bien que très pratique, ne vous permet pas de positionner des priorités sur des types de flux. (voix prioritaire).&lt;/P&gt;
&lt;P&gt;En général, une association de QoS ( Quality of Services) et de CAC (Call Admission Control) est utilisée dans les solutions de téléphonie.&lt;/P&gt;
&lt;P&gt;OCS 2007 procède différemment, c’est le CODEC RTAUDIO (Propriétaire Microsoft) qui est chargé de détecter les congestions sur le réseau ou les problèmes de qualité et qui, en fonction de la bande passante disponible, ajuste son taux de compression pour économiser cette dernière. Une communication Voix peut passer de 50 Kbps à 15kbps.&lt;/P&gt;
&lt;P&gt;De plus, ce CODEC dispose d’un algorithme qui lui permet d’envoyer plusieurs duplicatas de paquets pour accroitre leurs chances d’arriver à bon port, sans être “dropés” par la couche réseau (comportement normal de la couche réseau en cas de surcharge).&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3204919" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/OCS+2007+R2/default.aspx">OCS 2007 R2</category></item><item><title>Presentation et Licences OCS 2007 / OCS R2</title><link>http://blogs.technet.com/benoit/archive/2009/02/16/pr-sentation-et-licences-ocs-2007-ocs-r2.aspx</link><pubDate>Mon, 16 Feb 2009 14:44:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3202874</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3202874.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3202874</wfw:commentRss><description>&lt;P&gt;&lt;B&gt;Découvrez&amp;nbsp; la Communication Unifiée&amp;nbsp; à ces adresses :&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/france/office/uc/default.mspx" mce_href="http://www.microsoft.com/france/office/uc/default.mspx"&gt;http://www.microsoft.com/france/office/uc/default.mspx&lt;/A&gt; (Français)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://download.microsoft.com/download/C/A/C/CAC53773-824B-4B94-955C-3145F8BC7297/Les_communications_unifiees.pptx" mce_href="http://download.microsoft.com/download/C/A/C/CAC53773-824B-4B94-955C-3145F8BC7297/Les_communications_unifiees.pptx"&gt;Les nouveautés avec les Communications Unifiées&lt;/A&gt; (PPT FR)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/france/vision/List.aspx?Qry=&amp;amp;S=x&amp;amp;Did=&amp;amp;Pid=fec5a9fe-4703-44e6-81ec-4153be85b736&amp;amp;Nid=&amp;amp;Cid=&amp;amp;Tid=&amp;amp;x=34&amp;amp;y=15" mce_href="http://www.microsoft.com/france/vision/List.aspx?Qry=&amp;amp;S=x&amp;amp;Did=&amp;amp;Pid=fec5a9fe-4703-44e6-81ec-4153be85b736&amp;amp;Nid=&amp;amp;Cid=&amp;amp;Tid=&amp;amp;x=34&amp;amp;y=15"&gt;http://www.microsoft.com/france/vision/List.aspx?Qry=&amp;amp;S=x&amp;amp;Did=&amp;amp;Pid=fec5a9fe-4703-44e6-81ec-4153be85b736&amp;amp;Nid=&amp;amp;Cid=&amp;amp;Tid=&amp;amp;x=34&amp;amp;y=15&lt;/A&gt;&amp;nbsp; (Français)&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Microsoft Office Communications Server 2007 R2 &lt;/B&gt;&lt;A href="http://office.microsoft.com/en-us/communicationsserver/FX101729111033.aspx" mce_href="http://office.microsoft.com/en-us/communicationsserver/FX101729111033.aspx"&gt;http://office.microsoft.com/en-us/communicationsserver/FX101729111033.aspx&lt;/A&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Microsoft Office Communicator 2007&lt;/B&gt; &lt;B&gt;R2&lt;/B&gt; &lt;A href="http://office.microsoft.com/en-us/communicator/default.aspx" mce_href="http://office.microsoft.com/en-us/communicator/default.aspx"&gt;http://office.microsoft.com/en-us/communicator/default.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Nouvelles fonctionnalités de OCS 2007 R2:&lt;/B&gt; &lt;A href="http://www.microsoft.com/communicationsserver/en/us/whats-new.aspx" mce_href="http://www.microsoft.com/communicationsserver/en/us/whats-new.aspx"&gt;http://www.microsoft.com/communicationsserver/en/us/whats-new.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Aperçu technique OCS 2007:&lt;/B&gt; &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=09B218EA-6FF6-4679-A117-9767AB98990A&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=09B218EA-6FF6-4679-A117-9767AB98990A&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=09B218EA-6FF6-4679-A117-9767AB98990A&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Aperçu de Communicator&amp;nbsp; 2007 :&lt;/B&gt; &lt;A href="http://office.microsoft.com/en-us/communicator/HA102037151033.aspx" mce_href="http://office.microsoft.com/en-us/communicator/HA102037151033.aspx"&gt;http://office.microsoft.com/en-us/communicator/HA102037151033.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Comment acheter ces deux produits : &lt;/B&gt;&lt;A href="http://office.microsoft.com/en-us/communicationsserver/FX102405731033.aspx" mce_href="http://office.microsoft.com/en-us/communicationsserver/FX102405731033.aspx"&gt;http://office.microsoft.com/en-us/communicationsserver/FX102405731033.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Notez que Office Communicator 2007 peut être acheté de 3 manières :&lt;/P&gt;
&lt;P&gt;- Licence Office Communicator 2007&lt;/P&gt;
&lt;P&gt;- Licence Office system 2007 Professional Plus&lt;/P&gt;
&lt;P&gt;- Licence Office System 2007 Enterprise&lt;/P&gt;
&lt;P&gt;Notez que OCS R2 est un produit X64 (64 bits) uniquement :&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/ucedsg/archive/2009/01/16/ocs-2007-r2-hardware-and-os-requirements.aspx" mce_href="http://blogs.technet.com/ucedsg/archive/2009/01/16/ocs-2007-r2-hardware-and-os-requirements.aspx"&gt;http://blogs.technet.com/ucedsg/archive/2009/01/16/ocs-2007-r2-hardware-and-os-requirements.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Vous trouverez une version d’évaluation à cette adresse :&lt;/P&gt;
&lt;P&gt;&lt;A href="http://technet.microsoft.com/en-us/evalcenter/bb684921.aspx" mce_href="http://technet.microsoft.com/en-us/evalcenter/bb684921.aspx"&gt;http://technet.microsoft.com/en-us/evalcenter/bb684921.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;OCS R2 est également disponible sur MSDN sur vous disposez d’un abonnement.&lt;/P&gt;
&lt;P&gt;voici les pré requis matériels pour la première version d’OCS (32bits uniquement) :&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/technet/prodtechnol/office/communicationsserver/evaluate/sysreqs/default.mspx" mce_href="http://www.microsoft.com/technet/prodtechnol/office/communicationsserver/evaluate/sysreqs/default.mspx"&gt;http://www.microsoft.com/technet/prodtechnol/office/communicationsserver/evaluate/sysreqs/default.mspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;OCS est compatible avec de nombreuses passerelles IPBX, je vous recommande de jetter un coup d’œil à la liste de nos partenaires :&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/uc/partners_hardware.mspx" mce_href="http://www.microsoft.com/uc/partners_hardware.mspx"&gt;http://www.microsoft.com/uc/partners_hardware.mspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Vous devriez également vous renseigner sur l’Interoperability Program : &lt;A href="http://technet.microsoft.com/en-us/office/bb735838.aspx#qualified" mce_href="http://technet.microsoft.com/en-us/office/bb735838.aspx#qualified"&gt;http://technet.microsoft.com/en-us/office/bb735838.aspx#qualified&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=590&gt;
&lt;P&gt;- &lt;B&gt;Dimensionnement OCS 2007 / OCS R2&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;Retenez bien qu’OCS 2007 est 32 bits uniquement, alors qu’OCS 2007 R2 qui vient de sortir est 64 bits uniquement.&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;U&gt;OCS 2007 :&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Vous trouverez tous les scenarios d’installation d’OCS 2007 dans ce guide :&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=dcc3c69f-10ad-4537-9a66-b7de4cd1b56c&amp;amp;displaylang=en&amp;amp;tm" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=dcc3c69f-10ad-4537-9a66-b7de4cd1b56c&amp;amp;displaylang=en&amp;amp;tm"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=dcc3c69f-10ad-4537-9a66-b7de4cd1b56c&amp;amp;displaylang=en&amp;amp;tm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Ainsi pour un serveur OCS 2007 Standard édition je vous recommande une machine équivalente à ceci :&lt;/P&gt;
&lt;P&gt;Attention les commentaires entre parenthèses sont des ordres d’idées, tout dépend de l’utilisation faite par l’ensemble des utilisateurs.&lt;/P&gt;
&lt;P&gt;1 Processeur Quad Core (pour 1 à 1500 utilisateurs)&lt;/P&gt;
&lt;P&gt;2 Processeur Quad core (pour 1500 à 5000 utilisateurs)&lt;/P&gt;
&lt;P&gt;4 Go de RAM ou 8 Go RAM&lt;/P&gt;
&lt;P&gt;Du RAID1 pour le système&lt;/P&gt;
&lt;P&gt;Les données sur un RAID5 à minima idéalement mieux.&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;U&gt;Pour OCS 2007 R2 :&lt;/U&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;Tout d’abord utiliser le nouveau planning tool:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=fdf32585-c131-4832-8e27-67e70636c1e8&amp;amp;DisplayLang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=fdf32585-c131-4832-8e27-67e70636c1e8&amp;amp;DisplayLang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=fdf32585-c131-4832-8e27-67e70636c1e8&amp;amp;DisplayLang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/ucedsg/archive/2009/01/16/ocs-2007-r2-hardware-and-os-requirements.aspx" mce_href="http://blogs.technet.com/ucedsg/archive/2009/01/16/ocs-2007-r2-hardware-and-os-requirements.aspx"&gt;http://blogs.technet.com/ucedsg/archive/2009/01/16/ocs-2007-r2-hardware-and-os-requirements.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Il existe deux versions du produit Office Communication Server 2007 : La version Standard, et la version Enterprise. Les deux offres exactement les mêmes fonctionnalités. Les détails suivants sont valables pour OCS 2007 comme pour OCS 2007 R2.&lt;/P&gt;
&lt;P&gt;&lt;U&gt;Version standard :&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;- Prévue pour moins de 5000 utilisateurs.&lt;/P&gt;
&lt;P&gt;- Peut servir à installer soit un serveur OCS (sur le domaine) soit un serveur Edge OCS (sur le périmètre).&lt;/P&gt;
&lt;P&gt;- Dans les deux cas, tous les rôles nécessaires sont consolidés sur un seul et même serveur sans possibilité de haute disponibilité, de cluster ou de redondance. &lt;/P&gt;
&lt;P&gt;&lt;U&gt;Version Enterprise :&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;- Selon l’infrastructure que vous mettrez en œuvre, un site équipé de serveurs OCS Enterprise Edition peut tenir une charge de 5000 à 125 000 utilisateurs.&lt;/P&gt;
&lt;P&gt;- Prévue pour la redondance. Le but est ici de séparer les rôles OCS sur différents serveurs de manière à pouvoir monter en charge.&lt;/P&gt;
&lt;P&gt;Votre organisation OCS&amp;nbsp; (au niveau de la forêt, comme pour Exchange Server) peut compter plusieurs sites géographiques. Dans ce cas de figure, pour des raisons de performance, les sites comptant un certain nombre d’utilisateurs doivent disposer de serveurs OCS locaux. Cela soulage la bande passante entre les sites. Vous pouvez tout à fait faire cohabiter les licences OCS Standard et les licences OCS Enterprise dans la même organisation :&lt;/P&gt;
&lt;P&gt;Les sites de moins de 5000 utilisateurs sans besoin de redondance : Edition Standard conseillée.&lt;/P&gt;
&lt;P&gt;Les sites de 5000 à 125000 utilisateurs et/ou avec besoin de redondance : Edition Enterprise conseillée.&lt;/P&gt;
&lt;P&gt;Ainsi tous les sites pourront travailler ensemble et bénéficieront de bonnes performances. 
&lt;TABLE border=0 cellSpacing=0 cellPadding=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=633&gt;
&lt;P&gt;&lt;B&gt;Architecture :&lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;Voici les installations possibles pour la licence Standard d’OCS.&lt;/P&gt;
&lt;P&gt;1 Licence OCS : 1 serveur OCS&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Utilisation en interne uniquement :&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://img22.imageshack.us/img22/3603/pic1vb8.jpg" mce_src="http://img22.imageshack.us/img22/3603/pic1vb8.jpg"&gt; &lt;/P&gt;
&lt;P&gt;Avec 2 licences OCS : 1 Serveur OCS + 1 Edge OCS&lt;/P&gt;
&lt;P&gt;&lt;I&gt;Utilisation en interne + accès pour les utilisateurs itinérants + accès pour les sociétés fédérées.&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://img147.imageshack.us/img147/4066/pic2eg3.jpg" mce_src="http://img147.imageshack.us/img147/4066/pic2eg3.jpg"&gt; &lt;/P&gt;
&lt;P&gt;Pour ajouter des fonctionnalités de téléphonie avec l’extérieur, vous devrez ajouter un serveur de médiation. Celui-ci ne nécessite aucune CAL OCS, mais doit être installé sur un serveur « Windows Server » indépendant. Pensez aussi à mettre en œuvre une passerelle SIP Basique.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://img204.imageshack.us/img204/5296/pic3jk4.jpg" mce_src="http://img204.imageshack.us/img204/5296/pic3jk4.jpg"&gt; &lt;/P&gt;
&lt;P&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=590&gt;
&lt;P&gt;- &lt;B&gt;Communicator Web Acces &lt;/B&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/P&gt;
&lt;P&gt;Ce guide dédié au déploiement :&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/DownLoads/details.aspx?FamilyID=62d61142-8ac1-4e56-afa9-e99801b703f6&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/DownLoads/details.aspx?FamilyID=62d61142-8ac1-4e56-afa9-e99801b703f6&amp;amp;displaylang=en"&gt;http://www.microsoft.com/DownLoads/details.aspx?FamilyID=62d61142-8ac1-4e56-afa9-e99801b703f6&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Et retrouver toutes les nouveautés sur le Communicator Web Access R2 :&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=C118474D-CD8C-4448-BA91-628618D7CE69&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?familyid=C118474D-CD8C-4448-BA91-628618D7CE69&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=C118474D-CD8C-4448-BA91-628618D7CE69&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ff2e6c64-2e10-46f2-8c44-5ac11ac12240&amp;amp;DisplayLang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ff2e6c64-2e10-46f2-8c44-5ac11ac12240&amp;amp;DisplayLang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=ff2e6c64-2e10-46f2-8c44-5ac11ac12240&amp;amp;DisplayLang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://edge.technet.com/Media/Whats-New-in-Office-Communicator-Communicator-Web-Access-and-Devices-with-OCS-2007-R2/" mce_href="http://edge.technet.com/Media/Whats-New-in-Office-Communicator-Communicator-Web-Access-and-Devices-with-OCS-2007-R2/"&gt;http://edge.technet.com/Media/Whats-New-in-Office-Communicator-Communicator-Web-Access-and-Devices-with-OCS-2007-R2/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Rappelez vous que le Communicator Web Access demande un serveur dédié, avec un licence Windows Server, mais pas de licence OCS.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3202874" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/OCS+2007+R2/default.aspx">OCS 2007 R2</category></item><item><title>DPM 2007 SP1 : Activer la protection locale.</title><link>http://blogs.technet.com/benoit/archive/2009/02/16/dpm-2007-sp1-activer-la-protection-locale.aspx</link><pubDate>Mon, 16 Feb 2009 13:14:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3202867</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3202867.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3202867</wfw:commentRss><description>&lt;P&gt;&lt;FONT size=3 face="Times New Roman"&gt;Une fois le SP1 installé, vous pouvez activer la protection locale du serveur pour protéger le composants de ce dernier , comme par exemple vos VM hyper-v. Cette fonctionnalité est tout à fait intéressante dans un scénario géo-dispersé.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size=3 face="Times New Roman"&gt;Ouvrez une commande Power Shell DPM:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT size=3 face="Times New Roman"&gt;Set-DPMGlobalProperty –AllowLocalDataProtection $true&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="LINE-HEIGHT: 115%; FONT-FAMILY: 'Calibri','sans-serif'; FONT-SIZE: 11pt; mso-bidi-font-family: 'Times New Roman'; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-language: EN-US; mso-ansi-language: FR; mso-bidi-theme-font: minor-bidi; mso-fareast-theme-font: minor-latin; mso-bidi-language: AR-SA"&gt;Entrez ensuite le nom du serveur.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 798px; HEIGHT: 596px" src="http://img15.imageshack.us/img15/2034/dpmlocalprotectionkb4.jpg" width=798 height=596 mce_src="http://img15.imageshack.us/img15/2034/dpmlocalprotectionkb4.jpg"&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG style="WIDTH: 377px; HEIGHT: 292px" src="http://img104.imageshack.us/img104/4656/dpmrsultatmq3.jpg" width=377 height=292 mce_src="http://img104.imageshack.us/img104/4656/dpmrsultatmq3.jpg"&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3202867" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/benoit/archive/tags/DPM+2007/default.aspx">DPM 2007</category></item><item><title>Le SP1 de DPM est arrivé...</title><link>http://blogs.technet.com/benoit/archive/2008/12/22/le-sp1-de-dpm-est-arriv.aspx</link><pubDate>Mon, 22 Dec 2008 12:52:52 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3172089</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3172089.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3172089</wfw:commentRss><description>&lt;p&gt;&lt;a title="http://blogs.technet.com/dpm/archive/2008/12/19/service-pack-1-for-dpm-2007-is-now-available.aspx" href="http://blogs.technet.com/dpm/archive/2008/12/19/service-pack-1-for-dpm-2007-is-now-available.aspx"&gt;http://blogs.technet.com/dpm/archive/2008/12/19/service-pack-1-for-dpm-2007-is-now-available.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;Comme nouveautés:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Protection of &lt;b&gt;Hyper-V™&lt;/b&gt; virtualization platforms, including both Windows Server 2008 Hyper-V and the Microsoft Hyper-V Server, has been added to the existing set of protected workloads, building on the virtualization protection originally delivered for Virtual Server 2005.  &lt;li&gt;Enhanced &lt;b&gt;SQL Server 2008&lt;/b&gt; protection, including the addition of new protection capabilities for mirrored databases, support for parallel backups of databases within a single instance, and the ability to move data from SQL Server 2005 to SQL Server 2008 for migration scenarios.  &lt;li&gt;Microsoft Office &lt;b&gt;SharePoint&lt;/b&gt; Server 2007 and Windows SharePoint Services 3.0 receive index protection, significant catalog optimization, and support for mirrored content databases.  &lt;li&gt;Added protection for &lt;b&gt;Exchange &lt;/b&gt;Server 2007 Standby Cluster Replication (SCR), enabling a complete disaster recovery solution that leverages SCR failover alongside DPM point-in-time restores. &lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Et aussi:&lt;/p&gt; &lt;li&gt;&lt;b&gt;Local Data Source Protection&lt;/b&gt; enabling the DPM 2007 SP1 server to act as a branch office server offering self-protecting File Services and Virtualization hosting within one platform.  &lt;li&gt;&lt;b&gt;Cross-Forest Protection&lt;/b&gt; allowing large enterprise customers with multiple Active Directory® forests to now have even more flexibility in their DPM deployments.  &lt;li&gt;Provision for a &lt;b&gt;Client DPML&lt;/b&gt; answers customer demand for a more cost-effective way to protect Windows XP and Windows Vista clients using the same DPM 2007 infrastructure that protects their servers  &lt;li&gt;&lt;b&gt;Disaster Recovery&lt;/b&gt; capabilities within DPM 2007 SP1 now include the ability to leverage a third-party vaulting partner via the cloud (&lt;b&gt;SaaS&lt;/b&gt;)&lt;/li&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3172089" width="1" height="1"&gt;</description></item><item><title>Server Management Suite Enterprise</title><link>http://blogs.technet.com/benoit/archive/2008/10/07/server-management-suite-enterprise.aspx</link><pubDate>Tue, 07 Oct 2008 15:05:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3133450</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3133450.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3133450</wfw:commentRss><description>&lt;p&gt;Pas de message technique aujourd'hui, mais un petit arrêt sur cette suite qui me parait incontournable ! &lt;p&gt;&lt;a href="http://www.microsoft.com/systemcenter/en/us/management-suites.aspx"&gt;http://www.microsoft.com/systemcenter/en/us/management-suites.aspx&lt;/a&gt; &lt;p&gt;&lt;u&gt;En somme, il faut comprendre que:&lt;/u&gt; &lt;p&gt;&lt;b&gt;Cette suite remplace une ML&lt;/b&gt; (Management License) du monde System Center. Une ML est un peu l’équivalent d’une CAL dont doit disposer un client Windows pour accéder aux services des serveurs Windows Server, mais pour les serveurs gérés par serveur source System Center (SCOM, SCCM, DPM) &lt;p&gt;U ne suite SMSE protège une machine physique. &lt;strong&gt;Les éventuelles VM sous-jacentes sont aussi couvertes!&lt;/strong&gt; &lt;p&gt;&lt;strong&gt;La suite couvre les serveurs protégés, à la fois, pour SCOM, SCCM et DPM.&lt;/strong&gt; &lt;p&gt;&lt;b&gt;La suite vous procure une licence du produit SCVMM&lt;/b&gt; (System Center Virtual Machine Manager) pour gérer vos VM. &lt;p&gt;Cette suite est commercialisée pour moins de 1300$ avec 2 ans de Software Assurance. &lt;p&gt;… &lt;p&gt;&lt;font color="#400080"&gt;Quand on pense qu’une licence « &lt;b&gt;Windows Server 2008 Datacenter Edition OEM »&lt;/b&gt; ne coûte que 2500 € et offre gratuitement la possibilité de créer un &lt;b&gt;nombre illimité de VM Windows Server&lt;/b&gt;, on comprend vite qu’une SMSE devient extrêmement avantageuse…&lt;/font&gt; &lt;p&gt;&lt;font color="#400080"&gt;&lt;/font&gt;&amp;nbsp; &lt;p&gt;&lt;font color="#400080"&gt;&lt;/font&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3133450" width="1" height="1"&gt;</description></item><item><title>Exchange 2007 multi-forêt</title><link>http://blogs.technet.com/benoit/archive/2008/08/28/exchange-2007-multi-for-t.aspx</link><pubDate>Thu, 28 Aug 2008 18:17:10 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3113438</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3113438.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3113438</wfw:commentRss><description>&lt;p&gt;Bonjour, &lt;/p&gt;  &lt;p&gt;Dans certains cas, une société peut se retrouver constituée de plusieurs forêts Active Directory. C’est souvent le cas après un rachat ou une fusion entre sociétés. &lt;/p&gt;  &lt;p&gt;- Vous disposez peut être déjà d’une organisation Exchange au sein de votre société, dans votre propre forêt. &lt;/p&gt;  &lt;p&gt;- Vous disposez peut être d’un vieux système de messagerie, méritant d’être mis à jour. &lt;/p&gt;  &lt;p&gt;Dans un cas comme dans l’autre, vous pouvez faire partager les bénéfices d’Exchange Server 2007 à l’ensemble de la société. Deux scénarios sont envisageables&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;u&gt;1/ Scenario « Inter-Forêts » :&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;L’idée est ici de conserver les différentes organisations Exchange existantes et de les faire travailler ensemble pour permettre à l’ensemble des utilisateurs de collaborer de manière efficace entre eux.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Exchange2007multifort_F311/clip_image001_2.gif"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" title="clip_image001" border="0" alt="clip_image001" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Exchange2007multifort_F311/clip_image001_thumb.gif" width="363" height="313" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;Avantage :&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;Gain de temps sur l’installation. &lt;i&gt;Exchange 2000, 2003 et 2007 peuvent très bien travailler ensemble. Il est alors inutile de réinstaller les sites déjà équipés.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Economies… : &lt;i&gt;En effet, pour les mêmes raisons, moins de serveurs, moins de licences…plus d’économie !&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Pas de migration de l’existant à prévoir : &lt;i&gt;Encore une fois, c’est une conséquente économie de temps.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Les relations d’approbation ne sont pas nécessaires : &lt;i&gt;C’est en général un problème plutôt politique. Dans ce scénario quelques synchronisations nous éviterons les relations d’approbation inter-forêts.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;Désavantage :&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;Synchronisation de GAL nécessaire : &lt;i&gt;Ceci va permettre à l’ensemble des utilisateurs de se retrouver dans l’annuaire d’entreprise. Il faudra être familier avec l’outil IIFP (version gratuite de MIIS). &lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Pertes des permissions sur les PF répliqués : &lt;i&gt;L’administrateur de chaque forêt devra positionner les permissions sur les dossiers publiques répliqués.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Pas de délégation possible sur les boites aux lettres : &lt;i&gt;Parce que les utilisateurs de l‘autre forêt sont vus comme des contacts, il sera impossible de gérer les délégations, de gérer le Send As, etc. sur les BALs.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Impossibilité de visionner le calendrier partagé d’un utilisateur appartenant une autre forêt :&lt;i&gt; Pour les mêmes raisons que ci-dessus.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Quelques articles pour la méthode Inter-Forêt : &lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/bb232078(EXCHG.80).aspx"&gt;http://technet.microsoft.com/en-us/library/bb232078(EXCHG.80).aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/aa998597(EXCHG.80).aspx"&gt;http://technet.microsoft.com/en-us/library/aa998597(EXCHG.80).aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://msexchangeteam.com/archive/2008/03/24/448500.aspx"&gt;http://msexchangeteam.com/archive/2008/03/24/448500.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://forums.msexchange.org/m_1800472235/mpage_1/key_/tm.htm#1800472491"&gt;http://forums.msexchange.org/m_1800472235/mpage_1/key_/tm.htm#1800472491&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://exchangeserverinfo.com/2007/12/18/transition-from-single-forest-to-crossforest-user-account-and-mailbox-movement-from-one-forest-to-another-forest--part4.aspx"&gt;http://exchangeserverinfo.com/2007/12/18/transition-from-single-forest-to-crossforest-user-account-and-mailbox-movement-from-one-forest-to-another-forest--part4.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;u&gt;2/ Scenario « Forêt de ressources » :&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;L’idée ici, est de créer une toute nouvelle forêt exclusivement dédiée à l’utilisation d’Exchange Server 2007. Les utilisateurs conservent leurs comptes sur leurs forêts respectives, une boite aux lettres hébergée sur notre nouvelle forêt de ressource sera alors liée à leur compte.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Exchange2007multifort_F311/clip_image002_2.jpg"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/Exchange2007multifort_F311/clip_image002_thumb.jpg" width="444" height="281" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;Avantage :&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;Pas de synchronisation de GAL : &lt;i&gt;Puisque l’ensemble des utilisateurs réside sur la même organisation Exchange.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Pas de contraintes sur les calendriers ou sur les boites aux lettres (délégations de droits) : &lt;i&gt;Pour la même raison ! &lt;/i&gt;&lt;/p&gt;  &lt;p&gt;D’un point de vue politique, c’est bien souvent beaucoup plus simple : &lt;i&gt;L’existant de chaque forêt devra être récupéré. La gestion et l’administration peuvent être équitablement réparties.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;&lt;u&gt;Désavantage :&lt;/u&gt;&lt;/p&gt;  &lt;p&gt;Economie de temps et économie monétaire : &lt;i&gt;L’installation et le dimensionnement des nouveaux serveurs restent à planifier.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Relations d’approbations impératives : &lt;i&gt;Uniquement vers cette forêt de ressources. C’est à mon sens assez peu contraignant.&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;&lt;i&gt;&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Quelques articles pour la méthode Ressource-Forest : &lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/aa995896(EXCHG.80).aspx"&gt;http://technet.microsoft.com/en-us/library/aa995896(EXCHG.80).aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/bb124008(EXCHG.80).aspx"&gt;http://technet.microsoft.com/en-us/library/bb124008(EXCHG.80).aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/aa998031(EXCHG.80).aspx"&gt;http://technet.microsoft.com/en-us/library/aa998031(EXCHG.80).aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.msexchange.org/articles_tutorials/exchange-server-2007/planning-architecture/deploying-exchange-resource-forest-part1.html"&gt;http://www.msexchange.org/articles_tutorials/exchange-server-2007/planning-architecture/deploying-exchange-resource-forest-part1.html&lt;/a&gt; (part1) &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.msexchange.org/articles_tutorials/exchange-server-2007/planning-architecture/deploying-exchange-resource-forest-part2.html"&gt;http://www.msexchange.org/articles_tutorials/exchange-server-2007/planning-architecture/deploying-exchange-resource-forest-part2.html&lt;/a&gt; (part2) &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.keepingitreal.nu/2007/08/deploying-exchange-2007-resource-forest.html"&gt;http://www.keepingitreal.nu/2007/08/deploying-exchange-2007-resource-forest.html&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://msmvps.com/blogs/andersonpatricio/archive/2007/09/07/msexchange-org-article-deploying-an-exchange-resource-forest.aspx"&gt;http://msmvps.com/blogs/andersonpatricio/archive/2007/09/07/msexchange-org-article-deploying-an-exchange-resource-forest.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Dans les deux cas, les serveurs Exchange peuvent être répartis sur plusieurs sites géographiques. Les performances seront alors les meilleurs: les serveurs de boites aux lettres au plus prêt de leurs utilisateurs. Les liens intersites (liens AD, et liens de routage s’il reste de l’Exchange 2003) seront malgré tout à prendre en considération. &lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3113438" width="1" height="1"&gt;</description></item><item><title>DPM 2007 : Le feature Pack est arrive !</title><link>http://blogs.technet.com/benoit/archive/2008/06/30/dpm-2007-le-feature-pack-est-arriv.aspx</link><pubDate>Mon, 30 Jun 2008 15:19:49 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3080848</guid><dc:creator>benlc</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/benoit/comments/3080848.aspx</comments><wfw:commentRss>http://blogs.technet.com/benoit/commentrss.aspx?PostID=3080848</wfw:commentRss><description>&lt;p&gt;The Update Feature pack is now available for download here:&lt;/p&gt; &lt;p&gt;x86:&amp;nbsp; &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e9e1fe35-b175-40a8-8378-2f306ccc9e28&amp;amp;DisplayLang=en&amp;nbsp;"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=e9e1fe35-b175-40a8-8378-2f306ccc9e28&amp;amp;DisplayLang=en&lt;/a&gt;&lt;/p&gt; &lt;p&gt;x64:&amp;nbsp; &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ad5cd1a2-9b87-4a2c-90a2-9dbaf1024310&amp;amp;DisplayLang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=ad5cd1a2-9b87-4a2c-90a2-9dbaf1024310&amp;amp;DisplayLang=en&lt;/a&gt;&lt;/p&gt; &lt;p&gt;The features included in this release are: &lt;br&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Tape library sharing across multiple DPM servers &lt;br&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Katmai (SQL 2008) support (soon as the released product is available) &lt;br&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Clustered virtual server support &lt;br&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Protection of Windows Server 2008 &lt;br&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DPM install on Windows Server 2008 – Using improved VSS infrastructure, shrinking of volumes, RemoteApp support etc. &lt;br&gt;·&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Co-location of data from multiple PGs onto a single tape&lt;/p&gt; &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/DPM2007LefeaturePackestarriv_C984/dpm.jpg"&gt;&lt;img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="dpm" border="0" alt="dpm" src="http://blogs.technet.com/blogfiles/benoit/WindowsLiveWriter/DPM2007LefeaturePackestarriv_C984/dpm_thumb.jpg" width="585" height="283"&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;font color="#ff8040"&gt;&lt;strong&gt;( N'oubliez pas d'installer Windows Backup sur les serveurs protégés !)&lt;/strong&gt;&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3080848" width="1" height="1"&gt;</description></item></channel></rss>