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 ?
Asked
Active
Viewed 1,962 times
4

Jaimin Ajmeri
- 572
- 3
- 18
-
2It depends on the program, but probably `C:\Windows\ServiceProfiles\NetworkService` – Harry Johnston Nov 15 '16 at 01:02
-
Hey @HarryJohnston, Thanks ! – Jaimin Ajmeri Nov 15 '16 at 03:38
1 Answers
7
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.

Jaimin Ajmeri
- 572
- 3
- 18