<?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>The Infinite Loop - Beginner&#039;s SEO, Beginner C# &#38; JQuery Tutorials &#187; batch tips</title>
	<atom:link href="http://theinfiniteloopblog.com/tag/batch-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://theinfiniteloopblog.com</link>
	<description>Problem. Problem Solved. Loop. - The life of a programmer</description>
	<lastBuildDate>Wed, 17 Aug 2011 15:29:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>USB Backup Utility with Batches</title>
		<link>http://theinfiniteloopblog.com/gen/usb-backup-utility-with-batches/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=usb-backup-utility-with-batches</link>
		<comments>http://theinfiniteloopblog.com/gen/usb-backup-utility-with-batches/#comments</comments>
		<pubDate>Thu, 14 May 2009 06:33:18 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[batch tips]]></category>
		<category><![CDATA[batch tricks]]></category>
		<category><![CDATA[batch utitilities]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[usb backup utility]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[windows tips and tricks]]></category>

		<guid isPermaLink="false">http://scottmoniz.com/programmingBlog/?p=111</guid>
		<description><![CDATA[After my USB got FRIED behind the damn photocopier in the library a couple years ago, I had to re-do my whole Java Assignment AGAIN. I decided to make a little backup utility that would make it a little easier to back up my usb. It will only work if the pen drive is a [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>After my USB got FRIED behind the damn photocopier in the library a couple years ago, I had to re-do my whole Java Assignment AGAIN. I decided to make a little backup utility that would make it a little easier to back up my usb. It will only work if the pen drive is a fixed letter, but its always E: on my computer so thats fine by me. It consists on 2 files placed on the usb, a backup.bat that does the backing up and an autorun.inf which puts the Backup option into the autorun screen. When i plug my USB pen drive, the autorun gives me the option to backup, making an exact copy of my usb at c:/usb</p>
<p>Open notepad and paste this text in.</p>
<p><strong><span style="color: #3366ff;">@echo off<br />
echo                USB BACKUP UTILITY V1.0<br />
echo                    CREATED BY SCOTT<br />
echo ----------------------------------------------------------<br />
echo Starting Backup:<br />
cd \<br />
c:</span></strong></p>
<p><span style="color: #3366ff;"><strong>if exist c:\usb goto exists<br />
mkdir "USB"<br />
goto copy</strong></span></p>
<p><span style="color: #3366ff;"><strong>:exists<br />
rmdir "USB" /s /q<br />
mkdir "USB"</strong></span></p>
<p><span style="color: #3366ff;"><strong>:copy<br />
echo Date&gt;C:\usb\backup.txt<br />
date /t&gt;&gt;C:\usb\backup.txt<br />
echo.&gt;&gt;C:\usb\backup.txt<br />
echo Time&gt;&gt;C:\usb\backup.txt<br />
time /t&gt;&gt;C:\usb\backup.txt<br />
echo -------------------------------------------&gt;&gt;C:\usb\backup.txt</strong></span></p>
<p><span style="color: #3366ff;"><strong>cd \<br />
xcopy E:\* "C:\USB" /y /e /r /v&gt;&gt;C:\usb\backup.txt<br />
echo Backup Complete!<br />
echo.<br />
echo Backup of entire USB at C:/USB<br />
echo Log file placed at C:/USB/backup.txt<br />
echo ----------------------------------------------------------<br />
Pause</strong></span></p>
<p>In the line <strong><span style="color: #3366ff;">xcopy E:\* "C:\USB" /y /e /r /v&gt;&gt;C:\usb\backup.txt, </span></strong>replace E: in this line with your actual drive letter.<br />
<span style="color: #000000;">Save this file as backup.bat making sure that "All Files" is selected from the files drop down box.<br />
</span><strong><span style="color: #3366ff;"><br />
</span></strong></p>
<p><strong></strong><br />
<span style="color: #000000;">Next repeat the same steps, saving this text as autorun.inf</span></p>
<p><span style="color: #3366ff;"><strong>[autorun]<br />
action=Backup<br />
open=backup.bat<br />
label=MyUsbName<br />
includeRuntimeComponents=True</strong></span></p>
<p><span style="color: #000000;">Save both these files on the root of your USB.<br />
The next time you plug your usb in, you will see the autorun option "backup".<br />
By clicking this and hitting ok, a full usb backup will be performed and put in C:/USB<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://theinfiniteloopblog.com/gen/usb-backup-utility-with-batches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Servernet.exe Removal Utility: How to clean and remove servernet.exe</title>
		<link>http://theinfiniteloopblog.com/gen/servernetexe-removal-utility/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=servernetexe-removal-utility</link>
		<comments>http://theinfiniteloopblog.com/gen/servernetexe-removal-utility/#comments</comments>
		<pubDate>Thu, 14 May 2009 06:27:56 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[batch tips]]></category>
		<category><![CDATA[batch tricks]]></category>
		<category><![CDATA[clean servernet.exe]]></category>
		<category><![CDATA[remove servernet]]></category>
		<category><![CDATA[server net removal]]></category>
		<category><![CDATA[servernet virus]]></category>
		<category><![CDATA[servernet.exe]]></category>
		<category><![CDATA[_servernet.exe]]></category>

		<guid isPermaLink="false">http://scottmoniz.com/programmingBlog/?p=108</guid>
		<description><![CDATA[The ServerNet removal Utility was something I wrote in my 2nd year of College. It was 2 batch files to get rid of an annoying "virus". It would copy itself onto root drives and various locations including 'Program Files\Common Files\MicrosoftShared\MSInfo'. It also creates a service for itself and as mspaint, dllhost, mqsvc and msdtc were [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>The ServerNet removal Utility was something I wrote  in my 2nd year of College. It was 2 batch files to get rid of an annoying "virus".  It would copy itself onto root drives and various locations including 'Program Files\Common Files\MicrosoftShared\MSInfo'. It also creates a service for itself and as mspaint, dllhost, mqsvc and msdtc were all acting strangely in terms of  computer usage I ended them before attempting to delete ServerNet.  The original for this utility went through many other drives (e: f: z:)  removing ServerNet off each. The Servernet.exe file can be found on many drives, as it copies.</p>
<p>For Removal:</p>
<p><strong>AUTOMATIC SERVERNET REMOVAL/CLEANING:</strong> <span style="color: #000000;"><a href="http://coulditgetworse.com/theinfiniteloopblog/wp-content/uploads/2009/06/servernet-removal-tool.zip">Download servernet-removal-tool<br />
</a></span></p>
<p><strong>MANUAL SERVERNET REMOVAL/CLEANING: </strong></p>
<p>Open notepad and copy paste this text:</p>
<p><span style="color: #3366ff;"><strong>sc.exe config Distributed start= disabled<br />
sc.exe delete Distributed<br />
taskkill /F /T /IM mspaint.exe<br />
taskkill /F /T /IM dllhost.exe<br />
taskkill /F /T /IM mqsvc.exe<br />
taskkill /F /T /IM msdtc.exe<br />
xcopy /y "ServerNetRemovalToolStep2.bat"<br />
"C:\Documents and Settings\%userName%\Start Menu\Programs\Startup"<br />
@echo COMPUTER WILL NOW RESTART...<br />
shutdown -r -t 10 -c "Restarting to fully clean virus. Be Patient. Scott =)"</strong></span></p>
<p><span style="color: #000000;">Click File&gt;Save as. In the drop-down menu for files, change it to All Files.</span><br />
Save this <em>exactly </em>as:    ServerNetRemovalStep1.bat</p>
<p class="subHeaderHighlight">Next repeat with this text and save this file <em>exactly </em>as:    ServerNetRemovalStep2.bat</p>
<p><strong><span style="color: #3366ff;">@echo on<br />
taskkill /F /T /IM mspaint.exe<br />
taskkill /F /T /IM dllhost.exe<br />
taskkill /F /T /IM mqsvc.exe<br />
taskkill /F /T /IM msdtc.exe<br />
cd \<br />
<em>h:</em><br />
attrib -h -s -r autorun.inf<br />
attrib -h -s -r ServerNet.exe<br />
del autorun.inf<br />
del ServerNet.exe<br />
<em>c:</em><br />
attrib -h -s -r autorun.inf<br />
attrib -h -s -r ServerNet.exe<br />
del autorun.inf<br />
del ServerNet.exe<br />
cd c:\windows\system32<br />
attrib -s -h -r "_ServerNet.exe"<br />
attrib -h -s -r autorun.inf<br />
attrib -h -s -r ServerNet.exe<br />
del autorun.inf<br />
del ServerNet.exe<br />
del _ServerNet.exe<br />
cd ..<br />
cd ..<br />
cd Program Files\Common Files\Microsoft Shared\MSInfo<br />
attrib -h -s -r ServerNet.exe<br />
del ServerNet.exe<br />
cd \<br />
c:<br />
cd Documents and Settings\%userName%\Start Menu\Programs\Startup<br />
del ServerNetRemovalToolStep2.bat<br />
@echo Hopefully your clean now <img src='http://theinfiniteloopblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
pause</span></strong></p>
<p><span style="color: #000000;">Make sure these 2 files are in the same location, and make sure all  your drives are targeted. In the above example, h: and c: are targeted. Just copy paste all the code from the drive letter to the next if you need to clean more than 2 drives. Double click ServerNetRemoval1.bat. You will see a black window, it will do some cleanup, and then will restart your computer. When your computer reboots, it will run a new file which will hopefully get rid of that annoying servernet!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://theinfiniteloopblog.com/gen/servernetexe-removal-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

