Posts

SharePoint Search Service App Pool Name, Id and other details

To get SharePoint Search service app pool details like name, id use the below script, Get-SPServiceApplication | Select Name, @{Name="SPAppPoolName"; Expression={$_.ApplicationPool.Name}},  @{Name="IISAppPoolName"; Expression={$_.ApplicationPool.Id}}, @{Name="ProcessAccountName"; Expression={$_.ApplicationPool.ProcessAccountName}}

wsp not getting deployed in all servers

Last week, got into an issue that wsp was not deployed in all servers and hang. Please find below more information on that: Issue: Unable to deploy wsp solution in SP2016 On-Premise server Resolution : C leared SharePoint config cache and rebooted all SharePoint servers and the SQL server, r an the command Add-SPSolution and  Install-SPSolution and the .wsp solution got deployed Troubleshooting Steps Followed: -     ​In Central Admin checked in Farm Solution Management the status was stuck on deploying​ -     Stopped the SharePoint Admin and SharePoint Timer services -     Checked and found multiple One-time jobs​, deleted those using the scripts below ​   -     Find onetimer running job from timer job definition and delete with below query Get-SPTimerJob | where{$_.schedule.description -eq "One-time"} | ForEach-Object{$_.Delete()}​ Get-SPTimerJob | where{$_.DisplayName -eq $null} | fo...

SharePoint: Fiscal year as Calculated column

= IF ( MONTH ( Created )> 2 , "FY " & YEAR ( Created )+ 1 , "FY " & YEAR ( Created )) here Month(Created)>2 can be changed as per business need. I had a scenario to show fiscal year between February of every year

Get SharePoint Multiline(Enriched) text box value

var content = $ ( 'nobr:contains("<<title of the field>>")' ). closest ( 'tr' ). find ( '.ms-rtestate-write' )[ 0 ]. innerText.trim() ;

SharePoint 2016 and 2013 important urls 9hidden lists)

Hi, I wanted to explore the logs of Content and Structure while copying files between sites and this below link provided what I am looking for, SharePoint Important Urls(Hidden links)

Move/migrate SP2010 site/list to SharePoint 2013/SP2016

Today I had a scenario to migrate just a site from SP2010 to SP2016. For this there are 2 ways, which I know, 1. Use any 3rd party tools like ShareGate, etc., 2. Use DB backup and restore into SP2013 and mount-database and test-spcontendatabase and now your SP2013 site is ready. Repeat the same for SP2013 to SP2016. All this steps are done in Dev environment and as last step, particular site will be exported from SP2016 dev environment and imported to SP2016 production environment. But I found some blog which shows 3 steps especially for lists,    https://absolute-sharepoint.com/2013/08/how-to-move-a-list-from-sharepoint-2010-to-sharepoint-2013.html  Go through the link and take advantage of it, if there is a need for list migration.

Microsoft office files dont open in Google chrome and throws site could not be reached error

Alright, Today I experienced an issue - none of the microsoft office file and pdf files stopped opening in Google Chrome.  Cause: Google latest version release on 7/28/2018 with version 68 is the culprit here. Analysis: Checked by installing certificates in local machine IE - Internet Options - Content -Certificates - Other People and import the certificate here. By installing certificate in IE, will reflected in chrome. But this didn't solve the problem. Solution: In registry, Chrome certificate transparency need to be disabled. It is done by:  HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\CertificateTransparencyEnforcementDisabledForUrls - Here create String value as "1" and <<example.com>>   After doing this, all files started to work. Now to make it work for all users, create Group Policy in Active Domain Directory Services.  Ref:   https://fpki.idmanagement.gov/announcements/chromect/