SHarePoint 2016 OnPrem
5 TopicsSharepoint 2016 Crawl specific subsite
we are crawling a site collection that has 1114 subsite and is taking to much time to crawl, we need to crawl a specific subsite, is there any way we can crawl specific subsite, so that the specific subsite can be crawl quickly. Below are the server Farm SharePoint 2016 details 1) 2 App server + Search 2) 2 FE server 3) 1 Database server355Views0likes0CommentsRe-hosting (Lift and shift )SharePoint 2016 on Premise Environment to Azure
we have an existing SharePoint 2016 on-premise environment having HA as backend SQL server 2016 always on failover cluster. two web servers, two application servers, and 1 office web app server. All servers are virtuals. The requirement is to rehost the complete environment in azure. I mean they want to complete lift and shift the environment from on-premise to Azure. The first question is possible? if yes what is recommended way to do that The plan is to use a standard azure migration tool to copying the VMs. I want to understand, is there are any guidelines to do the same. Need to know if there will be any impact on SharePoint Farm. I heard that it is complex to reshoot the SQL server 2016 always-on cluster in azure. There is the possibility to use Microsoft SQL Managed service. In that case, the instance name of the hosted database will change (as per my understanding). In that case, changing the instance detail from cliconfig.exe from all SharePoint server, will it help. Please advice.987Views0likes0CommentsSharePoint powershell to retrieve count of files in 2nd level subfolder in all subsites
Hi, How to generate a report in csv to count of all files present in 2nd level subfolder [Change Requests] in all subsites https://www.sharepointdiary.com/2017/03/get-all-list-and-libraries-inventory-of-site-collection-using-powershell.html I have edited source from this https://sharepointrelated.com/2014/11/11/download-all-content-in-a-site-collection/ ... $lists = $web.lists | ?{$_.title -eq "Documents" -and $_.itemcount -ge "1" -And $_.BaseType -eq "DocumentLibrary"} #Change any identifier here foreach($list in $lists) { Write-Host "- $($list.RootFolder.url)" $DirpathList = $Dirpath +"\"+$list.title CreateFolder($DirpathList) #Download files in root folder #$rootfolder = $web.GetFolder($list.RootFolder.Url) #Download-SPContent($rootfolder) #Download files in subfolders foreach($folder in $list.folders) { #$folder = $web.GetFolder($folder.url) if ($folder.name -eq "Change Requests") { $folder = $web.GetFolder($folder.url) Download-SPContent($folder) } } } Thanks952Views0likes0Comments