Category: SharePoint

  • Remove Blacklist Domain SPAMRATS

    Remove Blacklist Domain SPAMRATS

    RATS Dyna block list is common to avoid Trojan and bots sending mail to recipients. SPAMRATS detect unhealthy and invalid rDNS records entries in server. Remove Blacklist from span filter domain, add PTR record in DNS server. In case of on-perm outgoing mail apparently get the IP from ISP. In my scenario, mail service has…

  • Unexpectedly deleted search index entries

    SharePoint 2019 security CVE-2019-1330 patch has been released in October’19. The patch causing search indexes the crawl of content that has many links fails because of the maximum allowable links exceeds. So multiple fails, the search index entries for the content are deleted unexpectedly. So ContentPIMaxNumLinks properties should be updated accordingly with below SharePoint 2019…

  • SharePoint Server 2019 Public Preview

    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 stuff, security concerns and scalable with Hybrid collaboration environments Now, public preview available to experience the complete features of next milestone. SharePoint Server 2019 Public Preview Product Build Number Package…

  • Clear SharePoint 2013 Config Cache

    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 perfect with dynamic values of GUI ID and other parameters. Standalone farm clean can be done manually but if its multi-tier farm would time conservation so better do with powerful…

  • SharePoint crawling not working with non-default zone (public facing site)

    Its 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.

  • Simple HTML Maintenance Page

    We everyone are looking for very simple HTML and classy site maintenance page for hosting. Nowhere we go. html maintenance page snippet <!doctype html> <title>Site Maintenance!</title> <style> body { text-align: center; padding: 150px; } h1 { font-size: 50px; } body { font: 20px Helvetica, sans-serif; color: #333; } article { display: block; text-align: left; width:…

  • Apps Configuration for SharePoint 2013

    SharePoint apps feature has been looks great in your site. Here the simple steps to configure an apps and few tweaks to ride it. Before you jump into the configuration check bellow points;Configuration the domain names in DNS Create dedicated forward lookup zone for SharePoint apps On DNS server, click Start to navigate Administrator Tools…

  • Download Installed SharePoint Solutions

    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 there is not option to download them.  Try with below script to attain it. Snippet: $farm = Get-SPFarm $solution = $farm.Solutions.Item(“SiteSolution.wsp”).SolutionFile $solutions.SaveAs(“c:\wsp\SiteSolution.wsp”) Cheers…!

  • Upgrade SharePoint 2013 Enterprise 15.0.4569.1000 to 15.0.4641.1000

    Upgrade SharePoint 2013 Enterprise 15.0.4569.1000 to 15.0.4641.1000

    To upgrade SharePoint server 2013 Enterprise from 15.0.4569.1000 to 15.0.4641.1000 had a long investigation and searching on web made me confusion.  Even I didn’t find any clear way that to reach there.  So I kept my finger crossed and jump into my another SP Farm which has the same build.  Finally got a clue and spins a…

  • Verifying SMTP SharePoint Outbound mail settings

    Once we configured the SharePoint outbound mail server then our responsible to test the setup. Here the small powershell snippet will do! ### 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…