View Single Post
Old 06-03-2020, 10:19   #1
Sotorex
Junior Member
 
Iscritto dal: Mar 2020
Messaggi: 5
File strani in Windows-INetCache-IE

Buongiorno,

vi scrivo perchè allegando dei file ad una mail che dovevo inviare in mattina mi sono trovato tra i documenti recenti i file che trovate in allegato sotto.

Visualizzando il percorso di questi file risultano tutti essere in

C:\Users\nomeutentei\AppData\Local\Microsoft\Windows\INetCache\IE\0R43SS0Z

Quando provo però ad accedere alla cartella arrivo fino alla cartella Windows ma non vedo InetCache e seguenti.

i file hanno nomi tipo 1GFHR456.txt, auto[1].txt o simili.

Ho caricato un file come esempio ma ci sono anche altri che aperti con un blocco note mostrano:

$$$|1|5.64.7613|0|0|$$$

oppure

unction OnLoad()
{
ViewPanel.addBehavior("#default#mmcview");
MMCEvents.ConnectTo(external.Document.Application);
UpdateState();
}

// Prevent text from being selected and messing up the UI.
function document.onselectstart()
{
event.returnValue = false;
}

function UpdateState()
{
var strDetails = "";
var strDisplayName = "";
var strDescription = "";
var i;
var curnode;
var strNodeType;

N = external.Selection;

switch(N.count)
{
case 0:
DisplayNameElem.style.fontWeight="normal";
strDetails = "";
strDisplayName = L_strNoItemSelected_Text;
break;

case 1:
DisplayNameElem.style.fontWeight="bold";
strDetails = "";
curNode = N(1);

// got the selected node
strNodeType = curNode.Nodetype;
strDisplayName = external.CellContents(curNode, 1);
strDescription = curNode.Property("CCF_DESCRIPTION");
strDetails = curNode.Property("CCF_HTML_DETAILS");

break;

default: // multiselect
DisplayNameElem.style.fontWeight="normal";
strDetails = L_strMultipleItemsSelected_Text;
break;
}

TaskpadName.innerText = external.ActiveScopeNode.Name;
TaskpadName.innerHTML = "<NOBR>" + TaskpadName.innerHTML + "</NOBR>";
DisplayNameElem.innerText = strDisplayName;
DisplayNameElem.innerHTML += "<BR>";

if (strDetails != "")
{
strDetails = "<BR>" + strDetails + "<BR>"
}

DetailsElem.innerHTML = strDetails;

if (strDescription != "")
{
strDescription = L_strDescription_Text + strDescription;
}

DescriptionElem.innerText = strDescription;
}


function OnUnload()
{
MMCEvents.Disconnect;
}


Vorrei capire di cosa si tratta. Grazie.
Allegati
File Type: txt 1GFHR456.txt (460 Bytes, 4 visite)
Sotorex è offline   Rispondi citando il messaggio o parte di esso