<?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>Networknet.nl &#187; delete</title>
	<atom:link href="http://www.networknet.nl/apps/wp/archives/tag/delete/feed" rel="self" type="application/rss+xml" />
	<link>http://www.networknet.nl/apps/wp</link>
	<description>Stay Connected</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:46:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PowerShell: How to delete a file based on a list of computers?</title>
		<link>http://www.networknet.nl/apps/wp/archives/943</link>
		<comments>http://www.networknet.nl/apps/wp/archives/943#comments</comments>
		<pubDate>Sun, 31 Jan 2010 09:50:59 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/943</guid>
		<description><![CDATA[The following PowerShell script recipe will help you delete a remote file based on a list of computers stored in a text file. New PowerShell function will be created during the session which will be piped from the text file. Create new file named C:\Scripts\Active_Computers.txt and populate the computer names. function delete-remotefile {     PROCESS {                 $file = "\\$_\c$\install.exe"                 if (test-path $file)                 {                 echo "$_ install.exe exists"                 Remove-Item $file -force                 echo "$_ install.exe file deleted"                 }             } } Get-Content  C:\Scripts\Active_Computers.txt &#124; delete-remotefile That&#8217;s it. &#160;]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/943/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Windows Server: How to remove Security Updates and WSUS cache?</title>
		<link>http://www.networknet.nl/apps/wp/archives/455</link>
		<comments>http://www.networknet.nl/apps/wp/archives/455#comments</comments>
		<pubDate>Wed, 25 Jun 2008 06:30:10 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[hotfixes]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/455</guid>
		<description><![CDATA[This morning my Cacti appliance warned me that a windows system volume was getting above 90% of used disk space. A while ago I configured this to get notified with an email. When partitioning this Windows server I didn&#8217;t plan the disk configuration. My current problem is that server has 4GB of RAM and paging file is sitting on C:\. I was not able to move the paging file and I could not move the virtual machines to another volume. I browsed through C:\Windows directory where I found a lot of blue directories used by the Automatic Updates. It was more than 500MB.\ How to safely remove Windows Security updates cache from C:\Windows? To safely remove Hotfix Backup files and Add/Remove Programs Registry entries go here and download the tool. Run the tool and remove all Hotfix backup files. After you run the tool, go to c:\Windows and delete all blue marked directories. They all starting with $ sign. There is another directory which you should check. Go to C:\WINDOWS\SoftwareDistribution\Download and verify the size. My folder was 600MB huge. Stop &#8220;Automatic Updates&#8221; service from Services console or run &#8220;net stop wuauserv&#8221; from command prompt. Delete all sub folders from C:\WINDOWS\SoftwareDistribution\Download directory. Restart the &#8220;Automatic Updates&#8221;  service. This procedure can be executed on a Windows XP or a Windows Server 2003 system.]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/455/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data really deleted???</title>
		<link>http://www.networknet.nl/apps/wp/archives/442</link>
		<comments>http://www.networknet.nl/apps/wp/archives/442#comments</comments>
		<pubDate>Sun, 18 May 2008 14:07:02 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[disks]]></category>
		<category><![CDATA[erase]]></category>
		<category><![CDATA[harddisk]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp2/archives/442</guid>
		<description><![CDATA[Today I moved my data using the robocopy.exe tool and using the /move switch; the tool migrated data from one usb disk to another one. Before returning my usb disk to the IT department I checked the disk partition with one of the tools I use to check deleted files. Guess what the tool found 18000 files in 10 minutes scan on the usb volume which was empty… Before I will return this USB disk for re-use I will make sure no data is left which can be recovered by any tool. With physical disks I used gdisk with dod option to wipe all data. For the USB disk I am going to install tool called Eraser which is freeware. How to safely clean a harrdisk before disposal? Go to http://www.heidi.ie/eraser/download.php and download the Eraser tool. Click Next Accept the license and click Next Click Next Click Next Click Next Click Next Click Finish and the tool has been loaded on your computer. Locate now the disk/folder or file and right click with mouse; select Erase as illustrated below. Review Options and click Yes. The data has been overwritten. After the erase process has finished I re-run my &#8220;Recover My Files&#8221; tool and now it was only being able to read rubbish written by the Eraser tool. &#160; We all should be aware if you delete a file in Windows and clean up the Recycle-Bin that files are not deleted from the physical disk. Only file reference information is removed ...]]></description>
		<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/442/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

