As expected Microsoft introduced SharePoint server 2019 product in May 2018 SharePoint conference. The product has more refined feature in terms of user experience, development…
Leave a CommentTag: sharepoint
SharePoint 2013 Config Cache fix mostly unstable service or applications, try with cache clear script as troubleshoot them in farm level. Here the scripts makes…
Leave a CommentIts been very long time to back in here to share the work around fixes. I have been configured public facing branding site in SharePoint 2013 multi tier environment.
Servers in the farm
SPAPP-V01
SPAPP-V02
SPWFE-V01
SPWFE-V02
SPSQL-AG (Availability group listener)
SPSQL-V01
SPSQL-V02
SPSQL-V03
Web application has been extended to Internet zone, which is exposed in public via F5, SSL configured on IIS.
AAM looks like
http://SPAPP-V01:8080 Default http://SPAPP-V01:8080
https://www.sathiya.io Internet https://www.sathiya.io
http://www.sathiya.io Internet https://www.sathiya.io
http://sathiya.io Internet https://www.sathiya.io
https://sathiya.io Internet https://www.sathiya.io
SharePoint search was configured with below topology;
SPAPP-V01 : Admin, Crawler, Content Processing, Analytics Processing & Index Partition
SPAPP-V02 : Admin, Crawler, Content Processing, Analytics Processing & Index Partition
SPWFE-V01 : Query Processing
SPWFE-V02 : Query Processing
Tweaks of SharePoint PowerShell script to download installed SharePoint solutions from the farm. All solution has deployed on server hives folder and the database but…
Leave a CommentOnce we configured the SharePoint outbound mail server then our responsible to test the setup. Here the small powershell snippet will do!
1 2 3 4 5 6 7 |
### The script will return True or False $toemail = "sathiya@sathiya.io" $subject = "Test - SharePoint Outbound mail" $body = "This mail for testing purpose...! Please ignore your action!" $site = New-Object Microsoft.SharePoint.SPSite "http://sharepoint/" $web = $site.OpenWeb() [Microsoft.SharePoint.Utilities.SPUtility]::SendEmail($web,0,0,$toemail,$subject,$body) |
If you…
Leave a Comment