Where is precached data stored on a client?

Is there some relevance for tracking down the pathname (or drive letter) that the precached data is being stored to? (as it relates to _BESClient_Download_PreCacheStageDiskLimitMB)

A lot of our servers have a limited amount of disk space on one of the drives, and I want to make sure I’m not filling up that drive, so knowing which drive it is being written to would be very useful.

Thanks,
Bob_K

The BES Client caches its files in sub folders of __BESData; so, probably you want to monitor that folder.

Thank You!!!

Bob_K

This should help pull the details in Relevance

// Client data folder
q: data folder of client
A: C:\BES\Client\__BESData
T: 0.430 ms

// Drive of the client data folder
q: name of drive of data folder of client
A: C:
T: 0.332 ms

// Drive's free space in MB
q: (free space of drive of data folder of client) / 1024 / 1024
A: 19698
T: 0.226 ms

// Drive's free space in GB
q: (free space of drive of data folder of client) / 1024 / 1024 / 1024
A: 19
2 Likes

Jason & Daniele,

I think I had a senior moment… Somehow didn’t realize that the precache was being stored under __BESData…

Thanks,
Bob-K