<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: View, Examine and Delete INDEX.DAT Contents</title> <atom:link href="http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/feed/" rel="self" type="application/rss+xml" /><link>http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=view-examine-and-delete-indexdat-contents</link> <description>Daily updated news of useful advanced computer tips and tricks</description> <lastBuildDate>Thu, 24 May 2012 02:08:11 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: Passing c#</title><link>http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/#comment-495844</link> <dc:creator>Passing c#</dc:creator> <pubDate>Sat, 06 Nov 2010 20:59:52 +0000</pubDate> <guid
isPermaLink="false">http://www.raymond.cc/blog/archives/2007/03/26/view-examine-and-delete-indexdat-contents/#comment-495844</guid> <description>Big Bro, MS is doing all they can in windows 7 to stop you deleteing index.dat files by locking the files and using &#039;Special Folders&#039; that DOS has trouble with but i have a C# solution that&#039;s far from perfect but works in Win 7 after seaching all day for a solution to the CIA spying on my every move.int DeletedCount = 0;
int CouldNotDelete = 0;
KillExplorer();
foreach (string DatFile in DatFiles)
{//Do not put break point or step into the code else explorer will start and the file will become locked again
DirectoryInfo DInfo=new DirectoryInfo(DatFile.Replace(&quot;index.dat&quot;,&quot;&quot;));
FileAttributes OldDirAttrib = DInfo.Attributes;
DInfo.Attributes  = FileAttributes.Normal;//Set to normal else can not delete
FileInfo FInfo = new FileInfo(DatFile);
FileAttributes OldFileAttrib = FInfo.Attributes;
SetAttr(FInfo, FileAttributes.Normal);
TryDelete(FInfo);
SetAttr(FInfo, OldFileAttrib);//Sets back to Hidden,system,directory,notcontentindexed
if (File.Exists(DatFile))
CouldNotDelete++;
else
DeletedCount++;
}
if (DatFiles.Count&gt;0)//Lets get explorer running again
System.Diagnostics.Process.Start(DatFiles[DatFiles.Count - 1].Replace(&quot;index.dat&quot;, &quot;&quot;));
else
System.Diagnostics.Process.Start(&quot;explorer&quot;);
System.Windows.Forms.MessageBox.Show(&quot;Deleted &quot; + DeletedCount + &quot; Index.dat files with &quot; + CouldNotDelete + &quot; Errors&quot;);return &quot;Deleted &quot; + DeleteFileCount + &quot; Files &quot;;
}private void KillExplorer()
{
foreach (Process P in Process.GetProcesses())
{//Kill both these process because these are the ones locking the files
if (P.ProcessName.ToLower() == &quot;explorer&quot;)
P.Kill();
if (P.ProcessName.ToLower() == &quot;iexplore&quot;)
P.Kill();
}
}private bool TryDelete(FileInfo Info)
{
try
{
Info.Delete();
return true;
}
catch
{return false;}
}private void SetAttr(FileInfo Info,FileAttributes Attr)
{
try
{
Info.Attributes = Attr;
}
catch { }
}</description> <content:encoded><![CDATA[<p>Big Bro, MS is doing all they can in windows 7 to stop you deleteing index.dat files by locking the files and using &#8216;Special Folders&#8217; that DOS has trouble with but i have a C# solution that&#8217;s far from perfect but works in Win 7 after seaching all day for a solution to the CIA spying on my every move.</p><p>int DeletedCount = 0;<br
/> int CouldNotDelete = 0;<br
/> KillExplorer();<br
/> foreach (string DatFile in DatFiles)<br
/> {//Do not put break point or step into the code else explorer will start and the file will become locked again<br
/> DirectoryInfo DInfo=new DirectoryInfo(DatFile.Replace(&#8220;index.dat&#8221;,&#8221;"));<br
/> FileAttributes OldDirAttrib = DInfo.Attributes;<br
/> DInfo.Attributes  = FileAttributes.Normal;//Set to normal else can not delete<br
/> FileInfo FInfo = new FileInfo(DatFile);<br
/> FileAttributes OldFileAttrib = FInfo.Attributes;<br
/> SetAttr(FInfo, FileAttributes.Normal);<br
/> TryDelete(FInfo);<br
/> SetAttr(FInfo, OldFileAttrib);//Sets back to Hidden,system,directory,notcontentindexed<br
/> if (File.Exists(DatFile))<br
/> CouldNotDelete++;<br
/> else<br
/> DeletedCount++;</p><p> }<br
/> if (DatFiles.Count&gt;0)//Lets get explorer running again<br
/> System.Diagnostics.Process.Start(DatFiles[DatFiles.Count - 1].Replace(&#8220;index.dat&#8221;, &#8220;&#8221;));<br
/> else<br
/> System.Diagnostics.Process.Start(&#8220;explorer&#8221;);<br
/> System.Windows.Forms.MessageBox.Show(&#8220;Deleted &#8221; + DeletedCount + &#8221; Index.dat files with &#8221; + CouldNotDelete + &#8221; Errors&#8221;);</p><p> return &#8220;Deleted &#8221; + DeleteFileCount + &#8221; Files &#8220;;<br
/> }</p><p> private void KillExplorer()<br
/> {<br
/> foreach (Process P in Process.GetProcesses())<br
/> {//Kill both these process because these are the ones locking the files<br
/> if (P.ProcessName.ToLower() == &#8220;explorer&#8221;)<br
/> P.Kill();<br
/> if (P.ProcessName.ToLower() == &#8220;iexplore&#8221;)<br
/> P.Kill();<br
/> }<br
/> }</p><p> private bool TryDelete(FileInfo Info)<br
/> {<br
/> try<br
/> {<br
/> Info.Delete();<br
/> return true;<br
/> }<br
/> catch<br
/> {return false;}<br
/> }</p><p> private void SetAttr(FileInfo Info,FileAttributes Attr)<br
/> {<br
/> try<br
/> {<br
/> Info.Attributes = Attr;<br
/> }<br
/> catch { }<br
/> }</p> ]]></content:encoded> </item> <item><title>By: Ram agarwal</title><link>http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/#comment-493526</link> <dc:creator>Ram agarwal</dc:creator> <pubDate>Mon, 11 Oct 2010 15:39:33 +0000</pubDate> <guid
isPermaLink="false">http://www.raymond.cc/blog/archives/2007/03/26/view-examine-and-delete-indexdat-contents/#comment-493526</guid> <description>Thanks Reymond..Nice info.After a long time you posted something, which looks  &quot;true Reymond style post&quot;.:)</description> <content:encoded><![CDATA[<p>Thanks Reymond..</p><p>Nice info.</p><p>After a long time you posted something, which looks  &#8220;true Reymond style post&#8221;.</p><p>:)</p> ]]></content:encoded> </item> <item><title>By: doubting dude</title><link>http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/#comment-456725</link> <dc:creator>doubting dude</dc:creator> <pubDate>Wed, 04 Nov 2009 22:30:03 +0000</pubDate> <guid
isPermaLink="false">http://www.raymond.cc/blog/archives/2007/03/26/view-examine-and-delete-indexdat-contents/#comment-456725</guid> <description>I downloaded the software, ran it and when I did a search in Windows Search, it still showed 21 &quot;index.dat&quot; files in many different folders and directories... So it doesn&#039;t appear to be working as it claims. I also use CCleaner and it doesn&#039;t delete index.dat files either even though the checkbox to remove those files is checked before running the program. Windows is REALLY holding us ALL hostage with this file and I don&#039;t like it at all!!!
Then they WARN THE CRAP out of you telling you that this file is a SYSTEM files and you could cause HARM to your system if you edit or modify the file.
So, you are basically STUCK with this ever growing file and no real way to delete it without going into SAFE MODE to do it... It&#039;s CRAP!!!</description> <content:encoded><![CDATA[<p>I downloaded the software, ran it and when I did a search in Windows Search, it still showed 21 &#8220;index.dat&#8221; files in many different folders and directories&#8230; So it doesn&#8217;t appear to be working as it claims. I also use CCleaner and it doesn&#8217;t delete index.dat files either even though the checkbox to remove those files is checked before running the program. Windows is REALLY holding us ALL hostage with this file and I don&#8217;t like it at all!!!<br
/> Then they WARN THE CRAP out of you telling you that this file is a SYSTEM files and you could cause HARM to your system if you edit or modify the file.<br
/> So, you are basically STUCK with this ever growing file and no real way to delete it without going into SAFE MODE to do it&#8230; It&#8217;s CRAP!!!</p> ]]></content:encoded> </item> <item><title>By: Privacy checklist &#171; Sky KID`s SKYNET</title><link>http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/#comment-325057</link> <dc:creator>Privacy checklist &#171; Sky KID`s SKYNET</dc:creator> <pubDate>Thu, 13 Dec 2007 17:46:33 +0000</pubDate> <guid
isPermaLink="false">http://www.raymond.cc/blog/archives/2007/03/26/view-examine-and-delete-indexdat-contents/#comment-325057</guid> <description>[...] your surfing habits . Not only the cache and web history - but and that nasty index.dat file. (link). Also firefox with its plugin systems provides many options to boost your privacy level - security [...]</description> <content:encoded><![CDATA[<p>[...] your surfing habits . Not only the cache and web history &#8211; but and that nasty index.dat file. (link). Also firefox with its plugin systems provides many options to boost your privacy level &#8211; security [...]</p> ]]></content:encoded> </item> <item><title>By: skykid</title><link>http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/#comment-320340</link> <dc:creator>skykid</dc:creator> <pubDate>Mon, 10 Dec 2007 17:28:21 +0000</pubDate> <guid
isPermaLink="false">http://www.raymond.cc/blog/archives/2007/03/26/view-examine-and-delete-indexdat-contents/#comment-320340</guid> <description>But what happens with the deleted data ? My guess is that it can be recovered easily as no shredding occurs.</description> <content:encoded><![CDATA[<p>But what happens with the deleted data ? My guess is that it can be recovered easily as no shredding occurs.</p> ]]></content:encoded> </item> <item><title>By: dank</title><link>http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/#comment-243389</link> <dc:creator>dank</dc:creator> <pubDate>Wed, 24 Oct 2007 08:38:31 +0000</pubDate> <guid
isPermaLink="false">http://www.raymond.cc/blog/archives/2007/03/26/view-examine-and-delete-indexdat-contents/#comment-243389</guid> <description>cc cleaner still leaves index dat full ,index dat cleaner finds the full file ,1 wish we could look at the empty file and simply delete any residue from cleaning... windows is some trip... linux here 1 com</description> <content:encoded><![CDATA[<p>cc cleaner still leaves index dat full ,index dat cleaner finds the full file ,1 wish we could look at the empty file and simply delete any residue from cleaning&#8230; windows is some trip&#8230; linux here 1 com</p> ]]></content:encoded> </item> <item><title>By: Jeylightyear</title><link>http://www.raymond.cc/blog/view-examine-and-delete-indexdat-contents/#comment-83955</link> <dc:creator>Jeylightyear</dc:creator> <pubDate>Wed, 28 Mar 2007 20:57:47 +0000</pubDate> <guid
isPermaLink="false">http://www.raymond.cc/blog/archives/2007/03/26/view-examine-and-delete-indexdat-contents/#comment-83955</guid> <description>you can get it at ccleaner.com</description> <content:encoded><![CDATA[<p>you can get it at ccleaner.com</p> ]]></content:encoded> </item> </channel> </rss>
