Showing posts with label backup. Show all posts
Showing posts with label backup. Show all posts

Backup-Restore in SharePoint 2013 + Backup & Recovery Tools

backup-restore in SharePoint 2010

Hello All,

I know backup-restore is a very important entity in SharePoint 2010 and is being heavily used by Administrators/Developers/IT Pros.

Please refer the following articles based on the same, Thank you


SharePoint 2010: Backup/Restore with PowerShell Command 
http://sharepointknowledgebase.blogspot.in/2012/06/sharepoint-2010-backuprestore-with.html

Backup Restore in SharePoint 2010 
http://sharepointknowledgebase.blogspot.in/2012/06/backup-restore-in-sharepoint-2010.html

Automated Daily Site Collection Back up

Add-PsSnapin Microsoft.SharePoint.Powershell –ErrorAction SilentlyContinue
try
 {
    $today = (Get-Date -Format dd-MM-yyyy)
    $backupDirectory = "D:\Backup\DailySiteCollectionBackUp\$today"
  # Backup file Location
    $backupFile = "D:\FPBackup\DailySiteCollectionBackUp\$today\Backup.dat"
  # Log file location
    $logFile = "$backupDirectory\BackupLog.log"   
  # Address of the Site Collection to backup
    $Site = "http://moss01/"
   
 # Location of the Backup Folder
    if (-not (Test-Path $backupDirectory))
    {
      [IO.Directory]::CreateDirectory($backupDirectory)
      #New-Item $logPath -type $backupDirectory
    }
  
 # Get backup start date and time
    $backupStart = Get-Date -format "MM-dd-yyyy HH.mm.ss"
   
  # creates a log file  Start-Transcript -Path
    Start-Transcript -Path $logFile
     
 # This will actually initiate the backup process.
      Write-Host   
      Write-Host   
      Write-Host "Backup starting at $backupStart for $Site "   
      Write-Host "******************************************"
     Backup-SPSite -Identity $Site -Path $backupFile -Force
     $backupComplete = Get-Date -format "MM-dd-yyyy HH.mm.ss"
      Write-Host   
      Write-Host   
      Write-Host "Backup Completed at $backupComplete for $Site "   
      Write-Host "******************************************"
  
 Stop-Transcript
 }
Catch
 {
  $ErrorMessage = $_.Exception.Message
  write "$today BackUp Failed   $ErrorMessage  ">>$logFile

 }

Technical diagrams for SharePoint 2013

Models are 34-by-44-inch posters that detail a specific technical area. These models are intended to be used with corresponding articles on TechNet. These models are created by using Visio 2010. You can modify the Visio files to illustrate how you plan to incorporate SharePoint 2013 in your own environment.
Click a category to go to the section that contains the model posters:
Apps | Architecture | Authentication | Backup and recovery | Design a SharePoint site

Design samples | Databases | Governance | Upgrade | Search