question

TanmoyDas-9282 avatar image
0 Votes"
TanmoyDas-9282 asked ElsieLu-MSFT commented

Index location and temp file location in SharePoint 2019

Hi Guys,

I need to know the index location and temp file location for SharePoint 2019 using PowerShell.
Can any one please share

Thanks

office-sharepoint-server-administration
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

ElsieLu-MSFT avatar image
0 Votes"
ElsieLu-MSFT answered ElsieLu-MSFT commented

Hi anonymous user ,

To find the index location:

 $essi = Get-SPEnterpriseSearchServiceInstance
 $cc = $essi.Components | ? { $_.GetType().Name -eq 'CrawlComponent' }
 $cc.IndexLocation

Regarding the temp file location, usually we use Office to open SharePoint files, SharePoint would download a temp file in the local profile on machine. Theoretically, Office will delete all of its temporary files when we exit the program. However, these temporary files might be left if Word hangs, if we exit the program abnormally.

References:
What is the search Index file location
Regarding SharePoint File Temporary files


If the answer is helpful, please click "Accept Answer" and upvote it.

Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi anonymous user , is there any update?

0 Votes 0 ·