<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx</link><description>4/07/2007 Update 
 Rick O'Dell and Phil C. both emailed solutions for XP (Yes it happens in XP as well) and Vista that will prevent alternate streams from being saved period. 
 
 Open a cmd window. 
 gpedit.msc 
 Goto: User Configuration &amp;gt; Administrative</description><dc:language>en</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#10192691</link><pubDate>Thu, 04 Aug 2011 08:59:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10192691</guid><dc:creator>2011-08-04 guest</dc:creator><description>&lt;p&gt;I thought the unblock.js could really &amp;#39;unblocked&amp;#39; a EXE file, but can&amp;#39;t.&lt;/p&gt;
&lt;p&gt;How to create a unblock.js, simply create a new text.txt.&lt;/p&gt;
&lt;p&gt;Rename to unblock.js, right-click edit.&lt;/p&gt;
&lt;p&gt;Copy and Paste everything below into file:&lt;/p&gt;
&lt;p&gt;// Script to &amp;quot;UNBLOCK&amp;quot; all files in the current directory by pete.at.redtitan.com&lt;/p&gt;
&lt;p&gt;// (c) RedTitan Technology 2007&lt;/p&gt;
&lt;p&gt;// &lt;a rel="nofollow" target="_new" href="http://www.pclviewer.com"&gt;http://www.pclviewer.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;var shell=new ActiveXObject(&amp;quot;WScript.Shell&amp;quot;);&lt;/p&gt;
&lt;p&gt;fso=new ActiveXObject(&amp;quot;Scripting.FileSystemObject&amp;quot;);&lt;/p&gt;
&lt;p&gt;var total=0;&lt;/p&gt;
&lt;p&gt;var f=fso.GetFolder(&amp;#39;.&amp;#39;); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Current folder&lt;/p&gt;
&lt;p&gt;var fc=new Enumerator(f.files);&lt;/p&gt;
&lt;p&gt;for (; !fc.atEnd(); fc.moveNext()){&lt;/p&gt;
&lt;p&gt; var fileName=fc.item().Name+&amp;#39;:Zone.Identifier&amp;#39;;&lt;/p&gt;
&lt;p&gt; try&lt;/p&gt;
&lt;p&gt; {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; f1 = fso.OpenTextFile(fileName,2); // If the Zone Identifier does not exist ..&lt;/p&gt;
&lt;p&gt; &amp;nbsp; total++;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; f1.Close();&lt;/p&gt;
&lt;p&gt; }&lt;/p&gt;
&lt;p&gt; catch(e){} &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // .. we don&amp;#39;t care&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;shell.Popup(&amp;#39;Unblocked &amp;#39;+total+&amp;#39; files&amp;#39;);&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10192691" width="1" height="1"&gt;</description></item><item><title>re: Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#10081895</link><pubDate>Thu, 28 Oct 2010 03:51:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10081895</guid><dc:creator>WTF_is_happening</dc:creator><description>&lt;p&gt;Watch out for this one: (using IE6 XP-SP3)&lt;/p&gt;
&lt;p&gt;Have a bunch of local pages made from downloading web manual, suitably modified for off-line viewing by taking out all the useless fluff and fixing all the links to other pages in the manual. Note: this was done as a batch lot by processing the pages through a filter into temporaries and then renaming over the originals (thus erasing :Zone.Identifier). Then wanted to add one more page so downloaded it and processed it manually, i.e. NO temporary. All the existing pages could link to it but trying to go back via links in the new page produced nothing. I mean literally NOTHING. Clicking the link had no effect whatsoever not even an error. Even more confusing was that a direct copy of the page produced the same effect but if I copied the contents and pasted it into a new file then it worked OK. Finally noticed the file blocked item on the properties. After reading the above (and some extra searching through MSDN) found that &amp;lt;filename&amp;gt;:Zone.Identifier:$DATA (opened using wordpad as in &lt;a rel="nofollow" target="_new" href="http://msdn.microsoft.com/en-us/library/bb540537(v=VS.85).aspx"&gt;msdn.microsoft.com/.../bb540537(v=VS.85).aspx&lt;/a&gt;) contained &lt;/p&gt;
&lt;p&gt;[ZoneTransfer]&lt;/p&gt;
&lt;p&gt;Zone=3&lt;/p&gt;
&lt;p&gt;Zone 3 means internet. Changed it to Zone=0 (curiosity), i.e. local computer, and then everything worked fine. The only problem I have now is figuring out why it did this (again curiosity). &lt;/p&gt;
&lt;p&gt;It should be noted that the JScript &amp;nbsp;solution doesn&amp;#39;t remove :Zone.Identifier, it just blanks it. Wondering whether the presence of an empty :Zone.Identifier:$DATA might cause problems down the track (Win 7.1/IE 10?).&lt;/p&gt;
&lt;p&gt;Scorecard - NAME: Microsoft&lt;/p&gt;
&lt;p&gt;Course: Computer Science 101&lt;/p&gt;
&lt;p&gt;Grade: D-&lt;/p&gt;
&lt;p&gt;Comments: Poor error reporting in submitted project. Must do better if student wishes to obtain professional employment. &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10081895" width="1" height="1"&gt;</description></item><item><title>re: Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#9917635</link><pubDate>Wed, 04 Nov 2009 23:28:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9917635</guid><dc:creator>Gudbarnone</dc:creator><description>&lt;p&gt;Excellent tip Glen - and thanks heaps again to Mark from Sysinternals! Saved a lot of hassle on my 500Gb USB drive (a little big for FAT Peter!) which has replaced my slab of DVDs. I shuffle it between work and home, XP, Vista Win 7 and download from whatever I'm plugged into. Streams ran through and removed the the Zone Identifier attribute which I'd never heard of until yesterday! &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Definitely agree with Rickfreezerburn though - too much is hidden by MS now making me feel &amp;nbsp;like Inspector Clouseau! &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9917635" width="1" height="1"&gt;</description></item><item><title>re: Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#9872869</link><pubDate>Mon, 17 Aug 2009 23:33:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9872869</guid><dc:creator>Kendalbeefcake</dc:creator><description>&lt;p&gt;Thanks dude, this has been driving me crazy..&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9872869" width="1" height="1"&gt;</description></item><item><title>re: Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#9854253</link><pubDate>Fri, 31 Jul 2009 11:55:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9854253</guid><dc:creator>Meifter</dc:creator><description>&lt;p&gt;Thanks very much for the guide, you have saved me also countless hours as i have alot of TAFE documents and even online research .html and .pdf files i know are safe and hate wasting the time applying unblock to files i know are safe its a tiresome rigmorale.&lt;/p&gt;
&lt;p&gt;I use Firefox 3.51 and win xp professional and this tool streams i copied into system 32 folder and type into the run interface &amp;quot;streams [-s] [-d] &amp;lt;file or directory&amp;gt;&amp;quot; works a treat!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9854253" width="1" height="1"&gt;</description></item><item><title>re: Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#9592802</link><pubDate>Thu, 07 May 2009 07:35:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9592802</guid><dc:creator>smillachan</dc:creator><description>&lt;p&gt;'Streams' is not recognized as an internal or external command, operable program, or batch file.&lt;/p&gt;
&lt;p&gt;That's what I get when I type the given line in the command prompt. Anyone have any suggestions? I've been looking all over for a solution to this problem and nothing ever seems to work. I'm running XP Home, and the files in question came from Firefox, which, for some bizarre reason, decided to add in this &amp;quot;feature&amp;quot; in their update. I'm pretty much ready to tear my hair out.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9592802" width="1" height="1"&gt;</description></item><item><title>Erro ao executar testes unitários</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#9481884</link><pubDate>Mon, 16 Mar 2009 22:56:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9481884</guid><dc:creator>André Nobre</dc:creator><description>&lt;p&gt;Hoje recebi uma mensagem de erro ao tentar executar testes unit&amp;#225;rios no Visual Studio 2008: Test Run&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9481884" width="1" height="1"&gt;</description></item><item><title>Blocked Files when getting files from the Internet</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#9392176</link><pubDate>Tue, 03 Feb 2009 03:47:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9392176</guid><dc:creator>My Blog</dc:creator><description>&lt;p&gt;Blocked Files when getting files from the Internet&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9392176" width="1" height="1"&gt;</description></item><item><title>re: Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#9384883</link><pubDate>Fri, 30 Jan 2009 18:47:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9384883</guid><dc:creator>Anthony</dc:creator><description>&lt;p&gt;Does anyone have definitive rules on what creates these and when? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Is it only MSIE that causes this?&lt;/p&gt;
&lt;p&gt;Is there a difference between downloading from FTP::// v.s. HTTP://? &amp;nbsp;&lt;/p&gt;
&lt;p&gt;It is critical for us to make sure our clients do not hit this problem when they download our software, but I have no idea how to protect against this &amp;quot;protection&amp;quot;.&lt;/p&gt;
&lt;p&gt;Additionally, I've been downloading files for ages and have never run into this issue until yesterday. &amp;nbsp;I spent most of the day hunting down web server permissions before I found the actual cause.&lt;/p&gt;
&lt;p&gt;This is quite disturbing. &amp;nbsp;Personally I am quite glad I will be shedding my Microsoft chains after this weekend.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9384883" width="1" height="1"&gt;</description></item><item><title>re: Tips: Streams, Zones, Vista and Blocked Files in IE</title><link>http://blogs.msdn.com/b/gblock/archive/2006/12/19/tips-steams-zones-vista-and-blocked-files-in-ie.aspx#9374089</link><pubDate>Sat, 24 Jan 2009 19:11:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9374089</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The JS Script to unblock a file downloaded from internet was good.&lt;/p&gt;
&lt;p&gt;but is there a vbscript version of the same.&lt;/p&gt;
&lt;p&gt;If yes then do post it over here.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9374089" width="1" height="1"&gt;</description></item></channel></rss>