Octopus and INetCache

We faced with strange problem today. Our server with Octopus Deploy on it run out of space today having few days ago about 35Gb of free space. After analysis we figured out that space was used by files in folders:

C:\Users\Administrator\AppData\Local\Microsoft\Windows\INetCache
C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\Windows\INetCache

There are billions of files with .htm extension and 2k of size. Each file contains :

<meta http-equiv="Content-Type" content="charset=unicode-1-1-utf-8"><!-- saved from url=(0015)assemblybinder: --><html><pre>
*** Assembly Binder Log Entry  (12/1/2016 @ 3:42:57 AM) ***

The operation failed.
Bind result: hr = 0x80070002. The system cannot find the file specified.

Assembly manager loaded from:  C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll
Running under executable  C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe
--- A detailed error log follows. 

=== Pre-bind state information ===
LOG: DisplayName = Serilog
 (Partial)
WRN: Partial binding information was supplied for an assembly:
WRN: Assembly Name: Serilog | Domain ID: 1
WRN: A partial bind occurs when only part of the assembly display name is provided.
WRN: This might result in the binder loading an incorrect assembly.
WRN: It is recommended to provide a fully specified textual identity for the assembly,
WRN: that consists of the simple name, version, culture, and public key token.
WRN: See whitepaper http://go.microsoft.com/fwlink/?LinkId=109270 for more information and common solutions to this issue.
LOG: Appbase = file:///C:/Program Files/Octopus Deploy/Octopus/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = Octopus.Server.exe
Calling assembly : Nevermore, Version=2.0.3.0, Culture=neutral, PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Program Files\Octopus Deploy\Octopus\Octopus.Server.exe.Config
LOG: Using host configuration file: 
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: The same bind was seen before, and was failed with hr = 0x80070002.
ERR: Unrecoverable error occurred during pre-download check (hr = 0x80070002).

</pre></html>

Looks like Nevermore it is octopus module. Do you have any ideas why so many files generated ?

Uff… Looks like one of our developers use Fuslogvw.exe and select log all binds to disk option. Because of this it generated so many files.
Please ignore my question.