Showing posts with label Minimal download strategy. Show all posts
Showing posts with label Minimal download strategy. Show all posts

Tuesday, December 8, 2020

SharePoint Online: How to take SharePoint Online Backup ?

 SharePoint Online: we have two types of the Service Scope.

  • Service Backup- all the content is backed up on a regular basis in the case there is corruption 
  • Deletion Backup- users will accidentally or purposely delete content. Its avaliable for 93 days only.


We can Requesting Backups from Microsoft raise the ticket.

  • backs up content every 12 hours, and take a few days to restore, so depending on the urgency for getting the data
SharePoint Online Backup


  1. we can syncing the data one drive to SharePoint or SharePoint to One drive  Bidirectional option.
  2. Timer Job to create the backup.
  3. PowerShell to copy all the data local drive

https://techcommunity.microsoft.com/t5/sharepoint/sharepoint-online-backup-strategies-for-a-cloudy-day/m-p/225418 


Thursday, April 16, 2015

Minimal download strategy in SharePoint 2013

This feature introduced by SharePoint 2013 Minimal download strategy improved the SharePoint Site performance:
1.navigation,
2.fast rendering on client browser
3.It also reduces the SharePoint page load time, because it loads only a part
of a page which is been modified rather than getting a duplicate data from server.
This feature automatically activated by on SharePoint Team Sites
User can do deactivate this feature at site collection level.

Go to Site Settings -> Manage Site Features - >
Find Minimal Download Strategy Feature - > Click on Deactivate.


Uninstall the Minimal download strategy powershell Script

Uninstall-SPFeature MDSFeature -Force -Confirm:$false

Minimal download strategy Feature location in 15 hive directory

# backup current Feature XML
$xmlmpath = "C:\Program Files\Common Files\microsoft shared\
Web Server Extensions\15\TEMPLATE\FEATURES\MDSFeature\feature.xml"
Copy-Item $path "$xmlpath-orig"
# mo DLL assembly detail [xml] $x = Get-Content $xmlpath
$x.Feature.RemoveAttribute("ReceiverClass")
$x.Feature.RemoveAttribute("ReceiverAssembly")
$x.Save($xmlpath)
Minimal download strategy Install Feature in Configuration Database

Install-SPFeature MDSFeature
Enable Powershell Script in minimal strategy Feature
backup current Feature XML
$path = "C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\FEATURES\MDSFeature\feature.xml"
Copy-Item "$path-orig" $path -Force -Confirm:$false
Install minimal strategy Feature

Install-SPFeature MDSFeature