Author: Sathiyamoorthy S

  • Add computer to domain using CMD without restart

    From your windows client machine open command prompt and run the following cmd to add computer to domain. wmic.exe /interactive:off ComputerSystem Where name=”%computername%” call JoinDomainOrWorkgroup FJoinOptions=3 Name=”myDom.local” UserName=”myDom\UsrName” Password=”@passwrd!@”

  • Error configuring Management Reporter 2012

    While configuring MR 2012 RU5 for Dynamics GP 2012 with Microsoft SQL 2014, this is the error we have faced; Error: `2/16/2015 3:15:09 PM – System.ServiceModel.EndpointNotFoundException: There was no endpoint listening at http://dynamics/CompanyService.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. —> System.Net.WebException:…

  • Travel to my hometown!

  • Script to disable list, libraries from SharePoint crawler

    This script will disable all list and libraries from search result in the site collection. Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue $site = Get-SPSite http://spapplication $site | Get-SPWeb -Limit ALL | ForEach-Object { foreach ($list in $_.lists) { $list.NoCrawl = $true $list.Update() } } $site.Dispose() You can disable it from list/library’s advanced settings. If numerous lists then…