I would try two things for debugging. First I would change cacheControlCustom from private to public
<location path="Content"> <system.webServer> <staticContent> <clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="10.00:00:00" /> </staticContent> </system.webServer> </location>
If this does not work, check the location of your cache path. Your example does not show this part.
Finally, try unlocking the StaticContent section of the machine configuration with:
appcmd unlock config /section:staticContent
Here is a link to additional helpful client cache information .
source share