﻿<?xml version="1.0" encoding="UTF-8"?>
<!--RSS generated by Microsoft SharePoint Foundation RSS Generator on 6/18/2013 10:27:05 PM -->
<?xml-stylesheet type="text/xsl" href="/AvePointBlog/_layouts/RssXslt.aspx?List=7990806c-a350-45d4-a3e0-5cb5d557de2a" version="1.0"?>
<rss version="2.0">
  <channel>
    <title>DocAve.com AvePoint Blog: Posts</title>
    <link>http://www.docave.com/AvePointBlog/Lists/Posts/AllPosts.aspx</link>
    <description>RSS feed for the Posts list.</description>
    <lastBuildDate>Wed, 19 Jun 2013 02:27:05 GMT</lastBuildDate>
    <generator>Microsoft SharePoint Foundation RSS Generator</generator>
    <ttl>60</ttl>
    <language>en-US</language>
    <image>
      <title>DocAve.com AvePoint Blog: Posts</title>
      <url>http://www.docave.com/AvePointBlog/_layouts/images/siteIcon.png</url>
      <link>http://www.docave.com/AvePointBlog/Lists/Posts/AllPosts.aspx</link>
    </image>
    <item>
      <title>Comment Réaliser une Migration avec 5000 Collections de site à Migrer</title>
      <link>http://www.docave.com/AvePointBlog/Lists/Posts/ViewPost.aspx?ID=217</link>
      <description><![CDATA[<div><b>Summary:</b> La migration vers Microsoft SharePoint est un sujet complexe et ce billet de blog aborde comment migrer des forts volumes avec les possibilités PowerShell offert par DocAve.</div>
<div><b>Body:</b> <div class="ExternalClass5DE51FE1F9494886969700D6C370D23B"><p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"><font face="Calibri">La mise en place d’une migration vers Microsoft SharePoint 2013 demande toujours des étapes :</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span lang="FR" style="font-family:symbol"><span>·<span style="font:7pt &quot;times new roman&quot;">         </span></span></span><span lang="FR"><font face="Calibri">d’analyse de mon existant </font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span lang="FR" style="font-family:symbol"><span>·<span style="font:7pt &quot;times new roman&quot;">         </span></span></span><span lang="FR"><font face="Calibri">de conception de ma migration </font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span lang="FR" style="font-family:symbol"><span>·<span style="font:7pt &quot;times new roman&quot;">         </span></span></span><span lang="FR"><font face="Calibri">de réalisation de la migration </font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span lang="FR"><font face="Calibri">Un outil comme DocAve nous permet de réaliser cela de manière très simple. Mais comment faire en sorte de pouvoir accélérer la mise en place de cette migration, lorsque l’on a à réaliser 2000 ou 3000 plans de migration ? Et bien c’est là que l’utilisation du module PowerShell prend tout son sens : nous allons pouvoir réaliser un script permettant de lire un fichier de description des plans et de construire les de manière programmatique. </font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span lang="FR"><font face="Calibri">Construisons donc un fichier csv avec le « ; » comme séparation et avec comme colonnes </font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><font face="Calibri"><span lang="FR" style="color:#4c4c4c">Nomduplan ;source ;destination ;sourceagentgroup ;targetagentgroup ;profile</span></font></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"><span lang="FR" style="color:#4c4c4c"></span></font><span lang="FR"><font face="Calibri">Remplissons ce fichier et sauvegardons le dans c:\sourcefile.csv</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span lang="FR"><font face="Calibri">Ensuite réaliser le script suivant :</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span lang="FR"><font face="Calibri">Import-Module docavemodule -DisableNameChecking</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span><font face="Calibri">Add-PSSnapIn Microsoft.SharePoint.PowerShell</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>                  </span>### Login to the control service</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri">Login-DAManager -ControlHost localhost -ControlPort 14000 -Username admin -PlainTextPassword admin</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>            </span>### Read the file with planname, source site collection and target site collection </font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri">$Source = Import-Csv c:\sourcefile.csv -Header planname, source, target, sourceagent, targetagent ,profile</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>            </span>### loop through this file and create a plan for each line</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri">foreach ($line in $Source) </font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>            </span>{</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>                                                                </span>$plan = Get DASP07To13MigrationBlankOnlinePlan</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR" style="background:red"><font face="Calibri">#<span>                                                             </span>$plan = Get-DALotusNotesMigrationOnlinePlan possibilité d’autres source et destination </font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR" style="background:red"></span><font face="Calibri"><span style="background:red">#<span>                                                             </span>$plan = Get-DAERoomMigrationOnlinePlan</span><span> </span></font></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"></font><font face="Calibri"><span><span>            </span></span><span lang="EN-GB">$plan.Name = $line.planname</span></font></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"><span lang="EN-GB"></span></font><span><font face="Calibri"><span>            </span>$plan.Description = $line.planname</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>            </span>$plan.SourceFarmName = 'YOUR SOURCE '<span>                                     </span></font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"></font></span><font face="Calibri"><span><span>            </span></span><span lang="EN-GB">$plan.DestinationFarmName = 'YOUR destination ' </span></font></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"><span lang="EN-GB"></span></font><font face="Calibri"><span lang="EN-GB"><span>            </span></span><span lang="FR">$plan.SourceAgentGroupName = $line.sourceagent</span></font></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"><span lang="FR"></span></font><span lang="FR"><font face="Calibri"><span>            </span>$plan.DestinationAgentGroupName = $line.targetagent</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><span lang="FR"><font face="Calibri"><span>            </span>$plan.ProfileName = $line.profile</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span lang="FR"></span><font face="Calibri"><span lang="FR"><span>                                                </span></span><span>$source<span>  </span>= New-Object</span></font></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"><span>DocAve.API.Objects.SharepointSite('Farm(SQL</span></font></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"><span>SERVER\DEMO:MOSSWFE1_CONFIG)', $line.source)</span></font></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"></font><span><font face="Calibri"><span>            </span>$plan.SourceTree.IncludeSPSite($source,$true,$false)</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>            </span>$destination = New-Object DocAve.API.Objects.SharepointSite('SP2010</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri">WFE1', $line.target)</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>            </span>$plan.DestinationTree.SelectSPObject($destination)</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>            </span>$plan.Action = 'Merge'</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><span><font face="Calibri"><span>            </span>#$plan.AssociatedPlanGroup.Add('plan group1')</font></span></p>
<p class="ms-rteFontFace-5" style="font-size:11pt"><font face="Calibri"><span><span>            </span></span><span lang="FR">New-DASP07To13MigrationOnlinePlan $plan</span></font></p>
<div><span lang="FR"><span><font face="Calibri">                                                </font></span></span></div>
<p class="ms-rteFontFace-5" style="font-size:11pt"><div><span lang="FR"><font face="Calibri"><span>      </span>}</font></span></div>
<div><span lang="FR"><font face="Calibri"> </font></span></div>
<div><span lang="FR"><font face="Calibri">Exécutez ce script à partir du Shell DocAve Manager et cela vous construira tous vos plans de manière automatique dans DocAve.</font></span></div>
</p></div></div>
<div><b>Published:</b> 6/17/2013 2:12 PM</div>
<div><b>Author:</b> Deletang E.</div>
<div><b>Tagging:</b> AvePoint; Migration; SharePoint 2013; French Language</div>
]]></description>
      <author>Franklin T.</author>
      <pubDate>Mon, 17 Jun 2013 21:19:59 GMT</pubDate>
      <guid isPermaLink="true">http://www.docave.com/AvePointBlog/Lists/Posts/ViewPost.aspx?ID=217</guid>
    </item>
    <item>
      <title>Simply the Best – AvePoint’s Big Week at TechEd North America 2013 #msTechEd</title>
      <link>http://www.docave.com/AvePointBlog/Lists/Posts/ViewPost.aspx?ID=216</link>
      <description><![CDATA[<div><b>Summary:</b> From the bustling activity at AvePoint&#39;s booth to the electrifying Ducati giveaway, Public Relations Manager Matthew Bretzius shares takeaways from AvePoint&#39;s week at TechEd North America 2013 in New Orleans, LA.</div>
<div><b>Body:</b> <div class="ExternalClassFB2BC360093045F6B0BA11FF08CBD6F6"><p style="font-size:11pt"><font face="Calibri">It’s almost as if Microsoft booked Tina Turner to sing at the </font><a href="http://northamerica.msteched.com/#fbid=7m4jlyzRkNV"><font color="#0563c1" face="Calibri">TechEd North America 2013</font></a><font face="Calibri"> closing party with AvePoint in mind, because for us this past week was <i>simply the best</i>. With so many highlights throughout the week, some of which were written about </font><a href="/AvePointBlog/Lists/Posts/Post.aspx?ID=215"><font color="#0563c1" face="Calibri">here</font></a><font face="Calibri"> and </font><a href="/TJsblog/Lists/Posts/Post.aspx?ID=23"><font color="#0563c1" face="Calibri">here</font></a><font face="Calibri">, it’s hard to imagine anyone having a better week in New Orleans. Between winning the </font><a href="http://www.avepoint.com/news/2013/06/06/avepoint-named-best-of-teched-2013-winner-for-sharepoint-excellence"><font color="#0563c1" face="Calibri">Best of TechEd award</font></a><font face="Calibri"> for SharePoint, Chief Architect and SharePoint MVP </font><a href="http://www.twitter.com/jthake"><font color="#0563c1" face="Calibri">Jeremy Thake’s</font></a><font face="Calibri"> successful speaking session on </font><a href="http://channel9.msdn.com/Events/TechEd/NorthAmerica/2013/WPH-B307#fbid=7m4jlyzRkNV"><font color="#0563c1" face="Calibri">building Windows 8 Phone apps for SharePoint 2013</font></a><font face="Calibri">, several </font><a href="http://www.crn.com/slide-shows/applications-os/240155917/teched-preview-hot-products-to-see-from-microsoft-and-more.htm?pgno=1"><font color="#0563c1" face="Calibri">write ups</font></a><font face="Calibri"> about AvePoint products within </font><a href="http://rcpmag.com/Articles/2013/06/01/Killer-Windows-Store-Apps-for-Partners.aspx?Page=2"><font color="#0563c1" face="Calibri">TechEd coverage</font></a><font face="Calibri">, and constant booth traffic for four days, AvePoint’s week was a huge success. Here are some other takeaways from our time in New Orleans:</font></p>
<p style="font-size:11pt"><b><font face="Calibri">People love Microsoft SharePoint</font></b></p>
<p style="font-size:11pt"><font face="Calibri"><img alt="AvePoint's booth at TechEd North America 2013" src="/AvePointBlog/Lists/Photos/SAM_0031.JPG" style="margin:5px;width:600px;height:338px" /></font></p>
<p style="font-size:11pt"><font face="Calibri"><em>Activity at AvePoint's booth on the first day of the event.</em></font></p>
<p style="font-size:11pt"><font face="Calibri">Even at a conference like TechEd where SharePoint isn’t the main focus, attendees were still flocking the AvePoint booth to talk about SharePoint and find out what AvePoint can do to help them </font><a href="http://www.avepoint.com/collaborate-with-confidence/"><font color="#0563c1" face="Calibri">collaborate with confidence</font></a><font face="Calibri"> on the platform. AvePoint’s </font><a href="http://www.avepoint.com/innovation-center/"><font color="#0563c1" face="Calibri">newest apps for productivity</font></a><font face="Calibri">, along with </font><a href="http://www.avepoint.com/sharepoint-governance-automation/"><font color="#0563c1" face="Calibri">Governance Automation</font></a><font face="Calibri"> and </font><a href="http://www.avepoint.com/sharepoint-administration/policy-enforcer/"><font color="#0563c1" face="Calibri">Policy Enforcer</font></a><font face="Calibri">, were sought after demos during all four days at the booth. The team working the booth did a great job telling a story during each demo, with many of the attendees walking away saying that would be contacting AvePoint to learn more.</font></p>
<p style="font-size:11pt"><b><font face="Calibri">People like free stuff – People LOVE a free Ducati</font></b></p>
<p style="font-size:11pt"><font face="Calibri"><img alt="Crowd gathers around AvePoint's booth to find out who wins the Ducati." src="/AvePointBlog/Lists/Photos/IMG_4723.jpg" style="margin:5px;width:600px;height:400px" /><br /><em>The crowd gathers around AvePoint's booth to find out who wins the Ducati Monster 696</em>.</font></p>
<p style="font-size:11pt"><font face="Calibri">Once again, the Ducati giveaway was one of the </font><a href="http://www.petri.co.il/microsoft-teched-2013-recap.htm"><font color="#0563c1" face="Calibri">most talked about</font></a><font face="Calibri"> happenings at TechEd. Yes, there were heaps of t-shirts, pens, bobble heads and magnets given away throughout the week, but the most anxiously awaited giveaway was that of the Ducati Monster 696 that was raffled off on Thursday afternoon. With more than 1,000 entrants looking to ride out of the Big Easy on a new bike, it was Jason Hoang who ultimately claimed the big prize. Jason wasn’t a motorcycle rider before, but he’s a big fan of them now, and an even bigger fan of AvePoint. Enjoy the ride, Jason!</font></p>
<p style="font-size:11pt"><font face="Calibri"><img alt="Senior Vice President of Global Marketing Heather Newman poses with Ducati winner Jason Hoang" src="/AvePointBlog/Lists/Photos/IMG_4742.jpg" style="margin:5px;width:600px;height:400px" /></font></p>
<p style="font-size:11pt"><font face="Calibri"><em>Senior Vice President of Global Marketing Heather Newman poses with Ducati winner Jason Hoang.</em></font></p>
<p style="font-size:11pt"><span style="line-height:107%;font-family:'calibri', 'sans-serif';font-size:11pt">Now with TechEd North America behind us, there’s only a couple of weeks until <a href="http://eu.avepoint.com/TechEd-Europe-2013/"><font color="#0563c1">TechEd Europe 2013 in Madrid, Spain</font></a>. Time for AvePoint to carry the momentum over the Atlantic Ocean and have another great conference!</span></p></div></div>
<div><b>Published:</b> 6/12/2013 5:51 AM</div>
<div><b>Author:</b> Matthew B.</div>
<div><b>Tagging:</b> AvePoint; Community; Events</div>
]]></description>
      <author>Franklin T.</author>
      <pubDate>Wed, 12 Jun 2013 13:03:22 GMT</pubDate>
      <guid isPermaLink="true">http://www.docave.com/AvePointBlog/Lists/Posts/ViewPost.aspx?ID=216</guid>
    </item>
  </channel>
</rss>