<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Remote Administration For Windows &#187; Sysinternals</title>
	<atom:link href="http://www.intelliadmin.com/index.php/category/sysinternals/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.intelliadmin.com</link>
	<description>Windows Network Administration Software</description>
	<lastBuildDate>Wed, 08 Feb 2012 13:36:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Delete files securely</title>
		<link>http://www.intelliadmin.com/index.php/2009/05/delete-files-securely/</link>
		<comments>http://www.intelliadmin.com/index.php/2009/05/delete-files-securely/#comments</comments>
		<pubDate>Thu, 14 May 2009 03:38:02 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Sysinternals]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=651</guid>
		<description><![CDATA[Since 2000 every version of Windows uses object reuse protection. When you create a file, the space on the hard drive for that file will be zeroed out. Another way of looking at this is when a file is created, Windows will make it impossible to see what was there before. But what about right [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Since 2000 every version of Windows uses object reuse protection. When you create a file, the space on the hard drive for that file will be zeroed out.</p>
<p>Another way of looking at this is when a file is created, Windows will make it impossible to see what was there before.</p>
<p>But what about right after you delete a file? Nothing has been written to that space yet. What is on the physical hard drive? The entire file of course. Not good if the file is highly confidential.</p>
<p>What if you wanted to delete a file securely?</p>
<p>There are plenty of tools out there that can do this, and most of them cost quite a bit of money. But there is a free alternative.</p>
<p>It is called SDelete and it is from Microsoft:</p>
<p><a href="http://download.sysinternals.com/Files/SDelete.zip">http://download.sysinternals.com/Files/SDelete.zip</a></p>
<p>How does it work?</p>
<p>Simply download the program and run it from the command line. By default it will only complete 1 pass when erasing a file. I would suggest overriding that with a higher number &#8211; the higher the better, but it will be slower.</p>
<p>Lets delete a file with it, using 25 passes:<br />
<font style="font-family: Courier New, Courier, monospace; color: blue"><br />
sdelete.exe -p 25 FileToDelete.zip</font></p>
<p>This will securely delete FileToDelete.zip</p>
<p>SDelete implements the Department of Defense clearing and sanitizing standard DOD 5220.22-M. This will give you confidence that once deleted with this tool, your file is gone forever. Note that it does delete the file, but the file name is still recoverable from the file system (Make sure the file name itself does not have any revealing information).</p>
<p>The full list of possible commands for SDelete are:<br />
<font style="font-family: Courier New, Courier, monospace; color: blue"><br />
usage: sdelete [-p passes] [-s] [-q] <file or directory><br />
       sdelete [-p passes] [-z|-c] [drive letter]<br />
   -c         Zero free space (good for virtual disk optimization)<br />
   -p passes  Specifies number of overwrite passes (default is 1)<br />
   -q         Don&#8217;t print errors (Quiet)<br />
   -s         Recurse subdirectories<br />
   -z         Clean free space<br />
</font></p>
<p>It supports wildcards too. So if you wanted to securely delete an entire folder you can call it like this:<br />
<font style="font-family: Courier New, Courier, monospace; color: blue"><br />
C:\>sdelete c:\temp\*.*</p>
<p>SDelete &#8211; Secure Delete v1.51<br />
Copyright (C) 1999-2005 Mark Russinovich<br />
Sysinternals &#8211; www.sysinternals.com</p>
<p>SDelete is set for 1 pass.<br />
c:\temp\Eula.txt&#8230;deleted.<br />
c:\temp\Import.csv&#8230;deleted.<br />
c:\temp\readme.txt&#8230;deleted.<br />
c:\temp\sdelete.exe&#8230;deleted.<br />
c:\temp\VCdControlTool.exe&#8230;deleted.<br />
c:\temp\VCdRom.sys&#8230;deleted.<br />
</font></p>
<p>If you have files that need to remain secure, SDelete is a great way to make sure they are removed from your hard drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2009/05/delete-files-securely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updates to SysInternals</title>
		<link>http://www.intelliadmin.com/index.php/2008/12/updates-to-sysinternals/</link>
		<comments>http://www.intelliadmin.com/index.php/2008/12/updates-to-sysinternals/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 07:35:55 +0000</pubDate>
		<dc:creator>Steve Wiseman</dc:creator>
				<category><![CDATA[Sysinternals]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.intelliadmin.com/blog/?p=508</guid>
		<description><![CDATA[If you have not used their tools before, I highly recommend taking a stroll over to www.sysinternals.com They have just released updates to Process Monitor, Autoruns, Disk Usage, and Process Explorer Here are some of the highlights: Process Monitor v2.03: This update to Process Monitor, a real-time file, registry, process and network monitor, adds the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://www.intelliadmin.com/images/SysInternals logo.jpg" alt="Sysinternals Logo"></p>
<p>If you have not used their tools before, I highly recommend taking a stroll over to <a href="http://www.sysinternals.com">www.sysinternals.com</a></p>
<p>They have just released updates to Process Monitor, Autoruns, Disk Usage, and Process Explorer</p>
<p>Here are some of the highlights:</p>
<p><a href="http://technet.microsoft.com/sysinternals/bb896645.aspx">Process Monitor v2.03</a>: This update to Process Monitor, a real-time file, registry, process and network monitor, adds the ability to import and export configuration settings, shows an icon in the operations column depicting the event class of the operation, and fixes a symbol configuration bug on Windows XP.</p>
<p><a href="http://technet.microsoft.com/sysinternals/bb963902.aspx">Autoruns v9.36</a>: Autoruns changes the Hide Microsoft Entries to only hide Windows entries, fixes a bug in the Find behavior, allows enabling and disabling entries using the space bar, and fixes a number of minor bugs</p>
<p><a href="http://technet.microsoft.com/sysinternals/bb896651.aspx">Disk Usage v1.33</a>: Du adds a new option, -u, that has it exclude duplicate hard-linked files from its summary.</p>
<p><a href="http://technet.microsoft.com/sysinternals/bb896653.aspx">Process Explorer v11.31</a>: This update works around a bug in the latest Debugging Tools for Windows debug engine DLL and fixes a bug that could cause objects to show up as <unknown type> when Process Explorer was run without administrative rights.</p>
<p>My personal favorite is ProcessMonitor. It has so many uses I find myself running it at least once a week. Want to see what files a program has open? ProcessMonitor can do it. See what DLLs a program uses&#8230;again a job for ProcessMonitor. Like I said, check it out, you won&#8217;t be disappointed.</p>
<p>On a side note, I will be posting information soon about a beta for Remote Control 3.1 soon. Keep an eye on the blog for details</p>
]]></content:encoded>
			<wfw:commentRss>http://www.intelliadmin.com/index.php/2008/12/updates-to-sysinternals/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

