To disable the file cache, setup the "ConnectionBehaviour" section in these files:
For web portal: web.config
For frontends: <Frontend>.exe.config
In the .config file is a section:
<connectionbehaviour>
In the next line, as part of this section, add the following:
<add key="CacheType" value="None" />
Example:
<connectionbehaviour>
<add key="CacheType" value="None" />
<add key="sqllogdir" value=""/>
</connectionbehaviour>
Instead of the above, if preferred, the following modification can be made in the registry:
--- Windows Registry file ----
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Quest Software\Identity Manager\ObjectBrowser\ConnectionBehaviour]
"CacheType"="None"
[HKEY_CURRENT_USER\Software\Quest Software\Identity Manager\Manager\ConnectionBehaviour]
"CacheType"="None"
[HKEY_CURRENT_USER\Software\Quest Software\Identity Manager\Transporter\ConnectionBehaviour]
"CacheType"="None"
[HKEY_CURRENT_USER\Software\Quest Software\Identity Manager\DataImporter\ConnectionBehaviour]
"CacheType"="None"
--- Windows Registry file ----