Posts

Showing posts from January, 2016

Search Service Config Using Powershell

Powershell Commands 1. Remove Search service application Get-SPServiceApplication |select id,name Remove-SPServiceApplication 1c491356-fe50-4f98-8511-39e67c2b8034 -removedata 2. Configure Serach service # Based on scripts at http://www.harbar.net/articles/sp2013mt.aspx # Thanks Spence! # Get App Pool $saAppPoolName = "SearchAdmin11012016" # Search Specifics, we are single server farm $searchServerName = (Get-ChildItem env:computername).value $serviceAppName = "Search Service Application" $searchDBName = "SearchService_DB" # Grab the Appplication Pool for Service Application Endpoint $saAppPool = Get-SPServiceApplicationPool $saAppPoolName # Start Search Service Instances Write-Host "Starting Search Service Instances..." Start-SPEnterpriseSearchServiceInstance $searchServerName Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance $searchServerName # Create the Search Service Application and Proxy Write-Host ...

Sharepoint Interview Part3

Image
Share on LinkedIn Share on Facebook Share on Twitter Basic Intro SharePoint Architecture Questions 1) What are Web Applications in SharePoint? An IIS Web site created and used by SharePoint 2010. Saying an IIS virtual server is also an acceptable answer. 2) What is an application pool? A group of one or more URLs that are served by a particular worker process or set of worker processes. 3) Why are application pools important? They provide a way for multiple sites to run on the same server but still have their own worker processes and identity. 4) What are zones? Different logical paths (URLs meaning) of gaining access to the same SharePoint Web application. 5) What are Web Application Policies? Enables security policy for users at the Web application level, rather than at the site collection or site level. Importantly, they override all other security settings. 6) What is a site collection?  A site collection contains a top-level web...