Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the location of "NT Authority\Network Service" home directory?

I have an java application for which its cache gets created in under C:\Users\<User>. But when application runs as NT Authority\Network Service where does its cache get created ?

like image 982
Jaimin Ajmeri Avatar asked Sep 01 '25 22:09

Jaimin Ajmeri


1 Answers

Can be found here %systemroot%\ServiceProfiles\NetworkService

Usually %systemroot% translates to "C:\Windows". "systemroot" is an environment variable in windows that holds the path "C:\Windows" depending on your Windows OS installation location.

Edit: It completely depends on an application to create its cache. But most of the developers use user's home directory to maintain applications cache.

like image 50
Jaimin Ajmeri Avatar answered Sep 03 '25 13:09

Jaimin Ajmeri