<?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: Create Fake Dummy File on USB Flash Drive to Enable Write Protect and Prevent Modification</title>
	<atom:link href="http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/</link>
	<description>Daily updated news of useful advanced computer tips and tricks</description>
	<lastBuildDate>Fri, 19 Mar 2010 15:54:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alan</title>
		<link>http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/#comment-470117</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Mon, 15 Mar 2010 18:06:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/?p=3464#comment-470117</guid>
		<description>There are still a few drives manufactured with write protection switches: The Imation Clip and Pivot (not Pivot Plus) drives, older Imation Swivel drives that may still be available, the PQI U339 series, and the Ritek/RiDATA Twister and Slider drives.

I have a listing of drives with links to the manufacturers at http://www.fencepost.net/2010/03/usb-flash-drives-with-hardware-write-protection/ based on information from c&#039;t magazine, forum searches and too much reading of manufacturer spec sheets.</description>
		<content:encoded><![CDATA[<p>There are still a few drives manufactured with write protection switches: The Imation Clip and Pivot (not Pivot Plus) drives, older Imation Swivel drives that may still be available, the PQI U339 series, and the Ritek/RiDATA Twister and Slider drives.</p>
<p>I have a listing of drives with links to the manufacturers at <a href="http://www.fencepost.net/2010/03/usb-flash-drives-with-hardware-write-protection/" rel="nofollow">http://www.fencepost.net/2010/03/usb-flash-drives-with-hardware-write-protection/</a> based on information from c&#8217;t magazine, forum searches and too much reading of manufacturer spec sheets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: becool</title>
		<link>http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/#comment-469592</link>
		<dc:creator>becool</dc:creator>
		<pubDate>Tue, 09 Mar 2010 11:15:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/?p=3464#comment-469592</guid>
		<description>I didn&#039;t still try it but thanks Hackoo ! 
merci ;-)</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t still try it but thanks Hackoo !<br />
merci <img src='http://www.raymond.cc/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hackoo</title>
		<link>http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/#comment-465754</link>
		<dc:creator>Hackoo</dc:creator>
		<pubDate>Sat, 30 Jan 2010 17:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/?p=3464#comment-465754</guid>
		<description>After reading this Article. I have this idea to create a good Trick in Vbscript.
&#039;----------------DummyFileCreator.vbs---------------
&#039;Made by Hackoo
&#039;web site http://hackoo.ifrance.com
Dim WshShell,FSO,Drv,Dtype,Dfree,DfreeMB,Dtot
Dim Dname,Dpct,Dused,Dserial,Dinfo
Set WshShell=WScript.CreateObject(&quot;WScript.Shell&quot;)
Set FSO=CreateObject(&quot;Scripting.FileSystemObject&quot;)
For each Drv in FSO.Drives
  If Drv.DriveType=0 Then Dtype=&quot;Unknown   &quot;
  If Drv.DriveType=1 Then Dtype=&quot;Removable&quot;
  If Drv.DriveType=2 Then Dtype=&quot;Fixed           &quot;
  If Drv.DriveType=3 Then Dtype=&quot;Network      &quot;
  If Drv.DriveType=4 Then Dtype=&quot;CD-ROM    &quot;
  If Drv.DriveType=5 Then Dtype=&quot;RAM Disk   &quot;
  If Drv.IsReady Then
    If Drv.DriveType=1 Then
      Dfree=Drv.FreeSpace
      DfreeMB=FormatNumber(Drv.FreeSpace/(1024^2),0)&amp;&quot; MB&quot;
      Label=Drv.DriveLetter
    end if
end if
Next
MsgBox &quot;Espace Libre dans Le Flash Disk &quot;&amp;Label&amp;&quot;:\&quot;&amp;&quot; est Environ de &quot; &amp;DfreeMB,64,&quot;Espace Libre&quot;
WshShell.run &quot;cmd /c fsutil file createnew &quot;&amp;Label&amp;&quot;:\IamDummy &quot; &amp;Dfree&amp;&quot;&quot;,0,True
WshShell.Run &quot;cmd /C attrib +h +s &quot;&amp;Label&amp;&quot;:\IamDummy&quot;,0,TRUE
&#039;-------------------------------------------------------
And This Code is used to delete The Fake Dummy File and so let you write into your pendrive.

&#039;----------------NoDummyFile.vbs----------------
&#039;Made by Hackoo
&#039;web site http://hackoo.ifrance.com
Dim WshShell,FSO,Drv,Dtype,Dfree,DfreeMB,Dtot
Dim Dname,Dpct,Dused,Dserial,Dinfo,filespec
Set WshShell=WScript.CreateObject(&quot;WScript.Shell&quot;)
Set FSO=CreateObject(&quot;Scripting.FileSystemObject&quot;)
filespec=&quot;IamDummy&quot;
For each Drv in FSO.Drives
  If Drv.DriveType=0 Then Dtype=&quot;Unknown   &quot;
  If Drv.DriveType=1 Then Dtype=&quot;Removable&quot;
  If Drv.DriveType=2 Then Dtype=&quot;Fixed           &quot;
  If Drv.DriveType=3 Then Dtype=&quot;Network      &quot;
  If Drv.DriveType=4 Then Dtype=&quot;CD-ROM    &quot;
  If Drv.DriveType=5 Then Dtype=&quot;RAM Disk   &quot;
  If Drv.IsReady Then
    If Drv.DriveType=1 Then
      Dfree=Drv.FreeSpace
      DfreeMB=FormatNumber(Drv.FreeSpace/(1024^2),0)&amp;&quot; MB&quot;
      Label=Drv.DriveLetter
    end if
end if
Next
If (fso.FileExists(Label&amp;&quot;:\IamDummy&quot;)) Then
Set MyFile = fso.GetFile(Label&amp;&quot;:\IamDummy&quot;)
MyFile.Delete
End If
MsgBox &quot;Espace Libre dans Le Flash Disk &quot;&amp;Label&amp;&quot;:\&quot;&amp;&quot; est Environ de &quot; &amp;DfreeMB,64,&quot;Espace Libre&quot;</description>
		<content:encoded><![CDATA[<p>After reading this Article. I have this idea to create a good Trick in Vbscript.<br />
&#8216;&#8212;&#8212;&#8212;&#8212;&#8212;-DummyFileCreator.vbs&#8212;&#8212;&#8212;&#8212;&#8212;<br />
&#8216;Made by Hackoo<br />
&#8216;web site <a href="http://hackoo.ifrance.com" rel="nofollow">http://hackoo.ifrance.com</a><br />
Dim WshShell,FSO,Drv,Dtype,Dfree,DfreeMB,Dtot<br />
Dim Dname,Dpct,Dused,Dserial,Dinfo<br />
Set WshShell=WScript.CreateObject(&#8220;WScript.Shell&#8221;)<br />
Set FSO=CreateObject(&#8220;Scripting.FileSystemObject&#8221;)<br />
For each Drv in FSO.Drives<br />
  If Drv.DriveType=0 Then Dtype=&#8221;Unknown   &#8221;<br />
  If Drv.DriveType=1 Then Dtype=&#8221;Removable&#8221;<br />
  If Drv.DriveType=2 Then Dtype=&#8221;Fixed           &#8221;<br />
  If Drv.DriveType=3 Then Dtype=&#8221;Network      &#8221;<br />
  If Drv.DriveType=4 Then Dtype=&#8221;CD-ROM    &#8221;<br />
  If Drv.DriveType=5 Then Dtype=&#8221;RAM Disk   &#8221;<br />
  If Drv.IsReady Then<br />
    If Drv.DriveType=1 Then<br />
      Dfree=Drv.FreeSpace<br />
      DfreeMB=FormatNumber(Drv.FreeSpace/(1024^2),0)&amp;&#8221; MB&#8221;<br />
      Label=Drv.DriveLetter<br />
    end if<br />
end if<br />
Next<br />
MsgBox &#8220;Espace Libre dans Le Flash Disk &#8220;&amp;Label&amp;&#8221;:\&#8221;&amp;&#8221; est Environ de &#8221; &amp;DfreeMB,64,&#8221;Espace Libre&#8221;<br />
WshShell.run &#8220;cmd /c fsutil file createnew &#8220;&amp;Label&amp;&#8221;:\IamDummy &#8221; &amp;Dfree&amp;&#8221;",0,True<br />
WshShell.Run &#8220;cmd /C attrib +h +s &#8220;&amp;Label&amp;&#8221;:\IamDummy&#8221;,0,TRUE<br />
&#8216;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
And This Code is used to delete The Fake Dummy File and so let you write into your pendrive.</p>
<p>&#8216;&#8212;&#8212;&#8212;&#8212;&#8212;-NoDummyFile.vbs&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
&#8216;Made by Hackoo<br />
&#8216;web site <a href="http://hackoo.ifrance.com" rel="nofollow">http://hackoo.ifrance.com</a><br />
Dim WshShell,FSO,Drv,Dtype,Dfree,DfreeMB,Dtot<br />
Dim Dname,Dpct,Dused,Dserial,Dinfo,filespec<br />
Set WshShell=WScript.CreateObject(&#8220;WScript.Shell&#8221;)<br />
Set FSO=CreateObject(&#8220;Scripting.FileSystemObject&#8221;)<br />
filespec=&#8221;IamDummy&#8221;<br />
For each Drv in FSO.Drives<br />
  If Drv.DriveType=0 Then Dtype=&#8221;Unknown   &#8221;<br />
  If Drv.DriveType=1 Then Dtype=&#8221;Removable&#8221;<br />
  If Drv.DriveType=2 Then Dtype=&#8221;Fixed           &#8221;<br />
  If Drv.DriveType=3 Then Dtype=&#8221;Network      &#8221;<br />
  If Drv.DriveType=4 Then Dtype=&#8221;CD-ROM    &#8221;<br />
  If Drv.DriveType=5 Then Dtype=&#8221;RAM Disk   &#8221;<br />
  If Drv.IsReady Then<br />
    If Drv.DriveType=1 Then<br />
      Dfree=Drv.FreeSpace<br />
      DfreeMB=FormatNumber(Drv.FreeSpace/(1024^2),0)&amp;&#8221; MB&#8221;<br />
      Label=Drv.DriveLetter<br />
    end if<br />
end if<br />
Next<br />
If (fso.FileExists(Label&amp;&#8221;:\IamDummy&#8221;)) Then<br />
Set MyFile = fso.GetFile(Label&amp;&#8221;:\IamDummy&#8221;)<br />
MyFile.Delete<br />
End If<br />
MsgBox &#8220;Espace Libre dans Le Flash Disk &#8220;&amp;Label&amp;&#8221;:\&#8221;&amp;&#8221; est Environ de &#8221; &amp;DfreeMB,64,&#8221;Espace Libre&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raj</title>
		<link>http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/#comment-465212</link>
		<dc:creator>raj</dc:creator>
		<pubDate>Mon, 18 Jan 2010 07:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/?p=3464#comment-465212</guid>
		<description>Use ansav anti virus , these USB virus are comming from asia so this ansav is created by asian and will recognize and solve all of yous usb misery</description>
		<content:encoded><![CDATA[<p>Use ansav anti virus , these USB virus are comming from asia so this ansav is created by asian and will recognize and solve all of yous usb misery</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/#comment-464768</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 07 Jan 2010 17:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/?p=3464#comment-464768</guid>
		<description>Good idea, I have the same conern regarding malware, but on top of that I know some AV products consider some of my portable security applications to be a risk and delete them. Unfortunately this doesn&#039;t solve the delete issue</description>
		<content:encoded><![CDATA[<p>Good idea, I have the same conern regarding malware, but on top of that I know some AV products consider some of my portable security applications to be a risk and delete them. Unfortunately this doesn&#8217;t solve the delete issue</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexovo</title>
		<link>http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/#comment-457297</link>
		<dc:creator>alexovo</dc:creator>
		<pubDate>Tue, 10 Nov 2009 17:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/?p=3464#comment-457297</guid>
		<description>Good tip.  It is flawed, however, for large capacity drives (8GB or larger) with more than 4GB of free space.  The reason?  The FAT32 filesystem only supports files up to a few bytes less than 4GB.  So if you have a 32GB flash drive with 20GB free, you would need to create multiple dummy files.  Just a little annoying, but still entirely feasable.</description>
		<content:encoded><![CDATA[<p>Good tip.  It is flawed, however, for large capacity drives (8GB or larger) with more than 4GB of free space.  The reason?  The FAT32 filesystem only supports files up to a few bytes less than 4GB.  So if you have a 32GB flash drive with 20GB free, you would need to create multiple dummy files.  Just a little annoying, but still entirely feasable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sagar</title>
		<link>http://www.raymond.cc/blog/archives/2009/02/17/create-fake-dummy-file-on-usb-flash-drive-to-enable-write-protect-and-prevent-modification/#comment-451720</link>
		<dc:creator>Sagar</dc:creator>
		<pubDate>Thu, 17 Sep 2009 23:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.raymond.cc/blog/?p=3464#comment-451720</guid>
		<description>I have a very strange request from client. I would be very thankfull if someone could help me out.

The scenario is: I have a server with some media file assigned to unique id&#039;s and the server is conected to a series of USB flash drives port (20). Now, a user comes down &amp; plugin his/her USB drive. Every USB drive has an .txt file, the .txt file names are nothing but the unique id&#039;s which are already stored on server.

Once the user plugin he&#039;s/her USB drive, the server should be able to read the .txt file name(unique id) and get all the media files from the server and copy it to USB flash drive. Once its done we shouls close the port.

Just to let you guys know, no monitor will be there and once we copy the files to USB it should intimate the User.

I know it sounds strange. Again any help / direction would be truly appreciated.

Thanks
Sagar</description>
		<content:encoded><![CDATA[<p>I have a very strange request from client. I would be very thankfull if someone could help me out.</p>
<p>The scenario is: I have a server with some media file assigned to unique id&#8217;s and the server is conected to a series of USB flash drives port (20). Now, a user comes down &amp; plugin his/her USB drive. Every USB drive has an .txt file, the .txt file names are nothing but the unique id&#8217;s which are already stored on server.</p>
<p>Once the user plugin he&#8217;s/her USB drive, the server should be able to read the .txt file name(unique id) and get all the media files from the server and copy it to USB flash drive. Once its done we shouls close the port.</p>
<p>Just to let you guys know, no monitor will be there and once we copy the files to USB it should intimate the User.</p>
<p>I know it sounds strange. Again any help / direction would be truly appreciated.</p>
<p>Thanks<br />
Sagar</p>
]]></content:encoded>
	</item>
</channel>
</rss>
