Name
Emails
Phone
Reason for contact Please SelectSharePoint DevelopmentMobile app DevelopmentWebsite DevelopmentPower BiCustom SoftwareBusiness IntelligenceOther
Message
Pick Your Date
Pick Your Time Select Your Time1:00 AM1:30 AM2:00 AM2:30 AM3:00 AM3:30 AM4:00 AM4:30 AM5:00 AM5:30 AM6:00 AM6:30 AM7:00 AM7:30 AM8:00 AM8:30 AM9:00 AM9:30 AM10:00 AM10:30 AM11:00 AM11:30 AM12:00 PM12:30 PM1:00 PM1:30 PM2:00 PM2:30 PM3:00 PM3:30 PM4:00 PM4:30 PM5:00 PM5:30 PM6:00 PM6:30 PM7:00 PM7:30 PM8:00 PM8:30 PM9:00 PM9:30 PM10:00 PM10:30 PM11:00 PM
For unique web design and experience.
To ensure unique online presence.
For engaging mobile experience.
Your ultimate corporate collaboration solution.
System Applications for effective business functioning.
Advance analytics with real-time results.
For data integration from disparate sources.
Personalized software packages and handling solutions.
To smartly interrelate your computing devices.
To get the best resources for your projects.
For optimized business performance and procedures.
For intelligent business and decision making.
Transform your data into actionable insights with Power BI
For reduced response size and efficiency.
For smart document tracking, retrieval and storage.
To manage multiple form types smartly.
A whole some solution for all your HR Management System.
For efficient workflow Management System.
For inviting and secure visitor management.
Connect with us to advance towards a better future
Work with advanced, diversified and certified technologies
Sharepoint
maaz uddin
Email
Bring to the table win-win survival strategies to ensure proactive domination.
A backup is a copy of data that is used to restore and recover that data after a system failure. While backups allow you to restore data after a failure they are also useful to keep for routine purposes. These purposes include copying a database from one server to another, setting up database mirroring, and archiving to comply with regulatory requirements.
The farm backup architecture in SharePoint 2013 starts a SQL Server backup of content and service application databases, writes configuration content to files, and also backs-up the Search index files and synchronizes them with the Search database backups. To back up a farm by using PowerShell command Backup-SPFarm -Directory <BackupFolder> -BackupMethod {Full | Differential} [-Verbose] To back up a farm by using Central Administration
This Backup is called Granular backup. The architecture uses Transact-SQL queries and export calls. It will create .bak file for restore Site. Granular backup and export is a more read-intensive and processing-intensive operation than farm backup. It will backup the whole website including Libraries, Lists, and workflows, etc. To backup a site collection using powershell command Backup-SPSite <URL of your site> -Path <file path to store backup file> for e.g : Backup-SPSite http://yoururl/ -Path C:\Backup\site_name.bak
Following Steps are required to run site collection backup daily. 1. Create new file in notepad and copy this text. #Backup location $backupLocation = “C:\\” #Site collection location $sitecollection = http://yoursitename/ #daily backup filename $dailybackupfile = Join-Path -Path $backupLocation -ChildPath (“yourfilename_” + (Get-Date -UFormat “%Y-%m-%d-%A”) + “.bak”) $snapin = Get-PSSnapin | Where-Object {$_.Name -eq ‘Microsoft.SharePoint.Powershell’} if ($snapin -eq $null) { Write-Host “Loading SharePoint Powershell Snapin” Add-PSSnapin “Microsoft.SharePoint.Powershell” } if(!(test-path $backupLocation -PathType Container)) { “Backup location (” + $backupLocation + “) not found.” break } Backup-SPSite -Identity $sitecollection -Path $dailybackupfile –Force copy $dailybackupfile –Force 2. Save file as with “.ps1” extension 3. Open window Task Scheduler 1) Open Task Scheduler 2) Create New Task 3) Enter Task Name 4) Select Task Schedule 5) Set Backup timing 6) Select Task Type 7) Set path of powershell script file 8) Finish 9) Backup will run every day at the time you specified.
Save my name, email, and website in this browser for the next time I comment.