Originally posted on: http://geekswithblogs.net/bjackett/archive/2015/04/02/default-search-index-file-location-for-sharepoint-2013.aspx
Blogging this as a simple reminder to myself on the default (out of the box) value of the Search Service Application index location in SharePoint 2013. Invariably I have to look this up every couple of months when supporting customers and only ever find the PowerShell commands to retrieve it. Putting both on here. Hopefully this saves someone else a few minutes of their day as well.
PowerShell Commands
$ssi = Get-SPEnterpriseSearchServiceInstance
$ssi.Components | Select-Object IndexLocation
Default Value
C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\Applications
-Frog Out