Wednesday, January 29, 2014
SharePoint 2013: How to Rename the Search Service Application Using PowerShell
Description
This post explains how to change the name of the Enterprise Search Service Application using PowerShell.
Key Words
PowerShell, Enterprise Search Service Application.
Solution
1. Set a variable
$SvcAppSearch = Get-SPEnterpriseSearchServiceApplication
2. Verify the current name
$SvcAppSearch.name
3. Change the name
$SvcAppSearch.name = "SPEnterpriseSearchServiceApplicationNewName"
4. Update
$SvcAppSearch.Update()
5. Verify the new name in PowerShell
Get-SPEnterpriseSearchServiceApplication
6. Run IIS Reset on the Web server which is hosting Central Administration
7. Verify the new name in Central Administration
Central Administration, Application Management, Manage Service Applications
References
Microsoft TechNet (2013). Get-SPEnterpriseSearchServiceApplication. Retrieved January 29, 2014 from http://technet.microsoft.com/en-us/library/ff608050.aspx
Subscribe to:
Post Comments (Atom)
Blog Archive
-
▼
2014
(24)
-
▼
January
(15)
- SharePoint 2013: Set-SPEnterpriseSearchTopology : ...
- SharePoint 2013: How to Rename the Search Service ...
- SharePoint 2013: How to Configure the Search Servi...
- Solution for Site Collection Lock, Missing Site Se...
- SharePoint 2013: How to Configure the Machine Tran...
- SharePoint 2013: How to Configure the PerformanceP...
- SharePoint 2013: How to Configure the Word Automat...
- SharePoint 2013: How to Configure the Excel Servic...
- SharePoint 2013: How to Configure the Access Servi...
- SharePoint 2013: How to Configure the Metadata Ser...
- SharePoint 2013: How to Configure the Business Dat...
- SharePoint 2013: How to Configure the Usage Servic...
- SharePoint 2013: How to Configure Secure Store Ser...
- SQL Server 2012: SELECT Machine Name, Server Name...
- How to Associate SQL Server Login with Existing Da...
-
▼
January
(15)
Events / Conferences / User Groups
- AIIM Conference
- Boston Area SharePoint User Group
- Boston Azure User Group
- Collaborate
- DevConnections
- DevIntersection
- Enterprise Search Summit
- Microsoft Build
- Microsoft SharePoint Conference
- Microsoft TechEd
- New England ASP.NET Professionals User Group
- New England Oracle Applications User Group
- Oracle Applications User Group (OAUG)
- Oracle OpenWorld
- PeopleSoft Government Contractor Special Interest Group
- PeopleSoft Southern New England Users Group
- Quest International Users Group
- SharePoint Saturday
- SPTechCon
- SQL PASS
- SQL Saturday
- Startup Weekend
No comments:
Post a Comment