Showing posts with label Backup Exec. Show all posts
Showing posts with label Backup Exec. Show all posts

Thursday, December 22, 2011

Symantec Backup Exec and Sharepoint 2010

The backup exec did not recognize the sharepoint farms due to the remote agents referencing the Microsoft.sharepoint.dll version 12.  

To Fix this, just change the machine config to redirect the dll from version 12 to 14. 


 <runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    
         <dependentAssembly>
           <assemblyIdentity name="Microsoft.SharePoint" publicKeyToken="71e9bce111e9429c" culture="neutral" />
           <bindingRedirect oldVersion="12.0.0.0" newVersion="14.0.0.0" />
         </dependentAssembly>
         </assemblyBinding>
 </runtime>