<?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>tech stuff &#187; windows</title>
	<atom:link href="http://codytaylor.org/tag/windows/feed" rel="self" type="application/rss+xml" />
	<link>http://codytaylor.org</link>
	<description>From Cody Taylor.</description>
	<lastBuildDate>Sun, 30 Oct 2011 04:15:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Automated MySQL Install On Windows</title>
		<link>http://codytaylor.org/2009/08/automated-msi-mysql-install-on-windows.html</link>
		<comments>http://codytaylor.org/2009/08/automated-msi-mysql-install-on-windows.html#comments</comments>
		<pubDate>Wed, 19 Aug 2009 02:10:34 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[automated]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[hands free]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=14232</guid>
		<description><![CDATA[Install MySQL with an automated windows batch file.]]></description>
			<content:encoded><![CDATA[<p>If you need to install MySQL databases on a number of machines with roughly the same configuration then it becomes extremely tedious to run the installer wizard on each machine. You can download the MySQL server as a msi package which allows you to install with the MSIEXEC DOS command in windows hands free. To install all the necessary files for MySQL to run you need to type this command at the console:</p>
<p>msiexec /qn /i mysql-essential-5.1.37-win32.msi INSTALLDIR=C:\MySQL</p>
<p>The &#8216;/qn&#8217; switch makes this install quiet. In this example I chose &#8216;C:\MySQL&#8217; as the install directory. Feel free to replace that path with whatever you choose. </p>
<p>Just because MySQL is installed and has all the appropriate files registered doesn&#8217;t mean that it&#8217;s useful. You will probably want it to run as a service, have it listen on a certain port, and have a root user already set up. This can be done with the MySQLInstanceConfig.exe program, although the arguments are a little more involved.<br />
<pre><code>
C:\MySQL\bin\MySQLInstanceConfig.exe -i -q 
&quot;-lC:\MySQL\mysql_install_log.txt&quot; 
&quot;-pC:\MySQL\bin&quot; &quot;-tC:\MySQL\my-template.ini&quot; 
&quot;-cC:\MySQL\my.ini&quot; -v5.1.37 
ServerType=DEVELOPMENT 
DatabaseType=MIXED 
ConnectionUsage=DSS 
Port=3306 
ServiceName=MySQL
RootPassword=root1234 
SkipNetworking=no 
AddBinToPath=yes
</code></pre></p>
<p>The entire string above must be run as one line. If you just copy and paste then the console will error out. Most of the arguments above are straight forward if you&#8217;ve ever configured a MySQL server before but just in case I&#8217;ve detailed the parameters below.<br />
</p>
<p>-n product name<br />
-p path of installation (no \bin)<br />
-v version</p>
<p>Actions:<br />
-i (install instance)<br />
-r (remove instance)<br />
-s (stop instance)<br />
-q (be quiet)<br />
-lfilename (write log file)</p>
<p>When launched manually, these can also be submitted<br />
-t<.cnf template filename><br />
-c<.cnf filename></p>
<p>Use the following options to define the parameters for the configuration file generation.<br />
ServiceName=$<br />
AddBinToPath={yes | no}<br />
ServerType={DEVELOPMENT | SERVER | DEDICATED}<br />
DatabaseType={MIXED | INNODB | MYISAM}<br />
ConnectionUsage={DSS | OLTP}<br />
ConnectionCount=#<br />
SkipNetworking={yes | no}<br />
Port=#<br />
StrictMode={yes | no}<br />
Charset=$<br />
RootPassword=$<br />
RootCurrentPassword=$ </p>
<p>So if you use the example above you will get a basic mysql installation. When I used these commands I put them in a batch file followed by this command:</p>
<p>
mysql &#8211;user=user_name &#8211;password=your_password db_name < create_database_and_tables.sql</p>
<p>The &#8216;create_database_and_tables.sql&#8217; obviously has all the sql code to create the MySQL databases and tables that are needed. The batch file installed, configured, and structured my MySQL databases. I spent awhile yesterday looking for a post like this so hopefully this saves someone some time.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F08%2Fautomated-msi-mysql-install-on-windows.html&amp;linkname=Automated%20MySQL%20Install%20On%20Windows"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/08/automated-msi-mysql-install-on-windows.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Batch File Without Popup Console</title>
		<link>http://codytaylor.org/2009/08/windows-batch-file-without-popup-console.html</link>
		<comments>http://codytaylor.org/2009/08/windows-batch-file-without-popup-console.html#comments</comments>
		<pubDate>Sun, 16 Aug 2009 00:37:17 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[console window]]></category>
		<category><![CDATA[popup]]></category>
		<category><![CDATA[vbscript]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=14224</guid>
		<description><![CDATA[Schedule Batch File Without Popup Console on Windows]]></description>
			<content:encoded><![CDATA[<p>Sometimes you need to schedule a batch file to run some script periodically on a windows server. I found myself having to run one fairly often and it would always pop up that annoying console window whenever I was in the middle of typing something. This sent me searching for a way to run the script without the pop up console window. There was a few ways to do this but I didn&#8217;t want to download and install any other software so I went the vbscript route. Here is what I did.</p>
<p>First create a file and call it &#8217;somefilename.vbs&#8217; and put it in the same directory as the batch file that you want to run.<br />
Next put this code in it :<br />
<pre><code>
Dim oShell
Set oShell = WScript.CreateObject (&quot;WScript.Shell&quot;)
oShell.run &quot;my-batch-file.bat&quot;, 0, False
Set oShell = Nothing
</code></pre><br />
Now when you set up the windows scheduler you want to point it at the &#8216;.vbs&#8217; file and not the &#8216;.bat&#8217; file. That seemed to be the easiest and quickest way to get rid of the console popup when running a batch file on a windows server. If anyone has another method that doesn&#8217;t require the creation of a new file I would like to hear it. You could always do some reading on vbscript and just code everything in vbscript and not use a batch file at all but I didn&#8217;t bother.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F08%2Fwindows-batch-file-without-popup-console.html&amp;linkname=Windows%20Batch%20File%20Without%20Popup%20Console"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/08/windows-batch-file-without-popup-console.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Useful Windows Networking Tools</title>
		<link>http://codytaylor.org/2009/05/useful-windows-networking-tools.html</link>
		<comments>http://codytaylor.org/2009/05/useful-windows-networking-tools.html#comments</comments>
		<pubDate>Mon, 25 May 2009 23:31:17 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[problems and solutions]]></category>
		<category><![CDATA[browstat]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows network]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=14042</guid>
		<description><![CDATA[I spent awhile after work today trying to figure out why my mapped drives in windows weren't working. I kept getting "MSHOME is not accessible" which was annoying because I wanted to watch some cartoons. Turns out..]]></description>
			<content:encoded><![CDATA[<p>I spent awhile after work today trying to figure out why my mapped drives in windows weren&#8217;t working. I kept getting &#8220;MSHOME is not accessible&#8221; which was annoying because I wanted to watch some cartoons. Turns out that I booted my Linux box first and it became the master browser so I had to turn off my samba server and allow the windows xp machine to become the master browser. I found this out by using these commands and tools.</p>
<p>For informational purposes theres<br />
net config server<br />
net config workstation<br />
ipconfig /all</p>
<p>Those commands can be helpful at times but I found that they do not give enough information about the computer browsing services.</p>
<p>I found a tool called <a href='http://www.dynawell.com/download/reskit/microsoft/win2000/browstat.zip''>Browstat</a> that you can download for free that gives you the clues to properly debug your windows network. Once you&#8217;ve downloaded that file and put it in your C:\Windows folder you&#8217;re going to want to open up a command window and type: browstat status.<br />
This will give you most of the information that you need to debug your network.</p>
<p>If anyone knows about any other great networking tools like browstat I would really like to know about them.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Fuseful-windows-networking-tools.html&amp;linkname=Useful%20Windows%20Networking%20Tools"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/useful-windows-networking-tools.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Best Windows Hotkey</title>
		<link>http://codytaylor.org/2009/05/best-windows-hotkey.html</link>
		<comments>http://codytaylor.org/2009/05/best-windows-hotkey.html#comments</comments>
		<pubDate>Fri, 22 May 2009 03:43:08 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[reference]]></category>
		<category><![CDATA[hotkeys]]></category>
		<category><![CDATA[poll]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=14015</guid>
		<description><![CDATA[I found a couple new windows hotkeys that I don't think I've ever used before.  Decided to put up a poll to see what most people use on a day to day basis.....]]></description>
			<content:encoded><![CDATA[<p>I found a couple new windows hotkeys that I don&#8217;t think I&#8217;ve ever used before.  Decided to put up a poll to see what most people use on a day to day basis. All the useful windows hotkeys with explanations are right under the poll.</p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
<p>CTRL and A             Select All<br />
CTRL and C             Copy<br />
CTRL and F             Find<br />
CTRL and G             Go To<br />
CTRL and N             New<br />
CTRL and O             Open<br />
CTRL and P             Print<br />
CTRL and S             Save<br />
CTRL and V             Paste<br />
CTRL and X             Cut<br />
CTRL and Z             Undo<br />
CTRL and F4             Close<br />
CTRL+ESC             Start menu</p>
<p>ALT+ENTER             View Properties<br />
ALT+F4                 Close Item<br />
ALT+SPACEBAR             Open Shortcut Menu<br />
ALT+TAB             Switch Programs<br />
ALT+ESC             Cycle Through Programs</p>
<p>F1 key                 Help<br />
F2 key                 Rename in Windows Explorer<br />
F3 key                 Search (Same as CTRL and F)<br />
F4 key                 Display Address Bar<br />
F5 key              Update/Refresh<br />
F10 key             Activate Menu Bar</p>
<p>Windows Key             Display or hide the Start menu<br />
Windows Key+BREAK         Display the System Properties dialog box<br />
Windows Key+D             Display the desktop<br />
Windows Key+M             Minimize all of the windows<br />
Windows Key+SHIFT+M         Restore the minimized windows<br />
Windows Key+E             Open My Computer<br />
Windows Key+F             Search for a file or a folder<br />
Windows Key+CTRL+F         Search for computers<br />
Windows Key+F1             Display Windows Help<br />
Windows Key+ L             Lock the keyboard<br />
Windows Key+R              Open the Run dialog box<br />
Windows Key+U             Open Utility Manager</p>
<p>TAB                 Move forward through the options<br />
SHIFT+TAB             Move backward through the options<br />
CTRL+TAB             Move forward through the tabs<br />
CTRL+SHIFT+TAB             Move backward through the tabs</p>
<p>If I missed any then let me know</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Fbest-windows-hotkey.html&amp;linkname=Best%20Windows%20Hotkey"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/best-windows-hotkey.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>We Screwed Up Windows 7 Beta, So Unlimited Downloads For All</title>
		<link>http://codytaylor.org/2009/01/we-screwed-up-windows-7-beta-so-unlimited-downloads-for-all.html</link>
		<comments>http://codytaylor.org/2009/01/we-screwed-up-windows-7-beta-so-unlimited-downloads-for-all.html#comments</comments>
		<pubDate>Mon, 12 Jan 2009 01:45:11 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=1348</guid>
		<description><![CDATA[If you haven&#8217;t grabbed your free beta copy of Windows 7 yet, there&#8217;s good news: you&#8217;ve now got 2 weeks to do so. Microsoft made the offer Saturday evening after what started as a well received offer turned into a potential PR disaster for Microsoft.


]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t grabbed your free beta copy of Windows 7 yet, there&#8217;s good news: you&#8217;ve now got 2 weeks to do so. Microsoft made the offer Saturday evening after what started as a well received offer turned into a potential PR disaster for Microsoft.</p>
<p><a href="http://feedads.googleadservices.com/~at/a0TFfMpYsmw9f-bqjNFZCbdEu6Y/a"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/83044_i" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/83044_4nMs0nxIahc" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F01%2Fwe-screwed-up-windows-7-beta-so-unlimited-downloads-for-all.html&amp;linkname=We%20Screwed%20Up%20Windows%207%20Beta%2C%20So%20Unlimited%20Downloads%20For%20All"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/01/we-screwed-up-windows-7-beta-so-unlimited-downloads-for-all.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Google Favicon Deja Vu All Over Again?</title>
		<link>http://codytaylor.org/2009/01/new-google-favicon-deja-vu-all-over-again.html</link>
		<comments>http://codytaylor.org/2009/01/new-google-favicon-deja-vu-all-over-again.html#comments</comments>
		<pubDate>Mon, 12 Jan 2009 01:45:07 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=1339</guid>
		<description><![CDATA[theodp writes &#8220;Last June, Google rolled out a new favicon, the small branding icon that graces your URL bar when you visit Google. Which, as it turned out, bore a striking similarity to Garth Brooks&#8217; Circle-G logo. Well, Google went back to the drawing board and has come back with a new favicon, which it [...]]]></description>
			<content:encoded><![CDATA[<p>theodp writes &#8220;Last June, Google rolled out a new favicon, the small branding icon that graces your URL bar when you visit Google. Which, as it turned out, bore a striking similarity to Garth Brooks&#8217; Circle-G logo. Well, Google went back to the drawing board and has come back with a new favicon, which it says was inspired by &mdash; not copied from, mind you &mdash; its users&#8217; submitted ideas. Some are also seeing inspiration elsewhere for the new favicon, which consists of white &#8216;g&#8217; on a background of four color swatches. Take the AVG antivirus icon, for instance. Or everybody&#8217;s favorite memory toy, Simon. Or &mdash; in perhaps the unkindest cut of all &mdash; the four-color Microsoft Windows logo, shown here with a superimposed white &#8216;7&#8242;. Anything else come to mind?&#8221; What comes to mind for me is just how obsessed many people are with the Google favicon.
<p><a href="http://tech.slashdot.org/article.pl?sid=09/01/11/2048251&amp;from=rss"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/185cb_2048251"></a></p>
<p><a href="http://tech.slashdot.org/article.pl?sid=09/01/11/2048251&amp;from=rss">Read more of this story</a> at Slashdot.</p>
<p><a href="http://feedads.googleadservices.com/~at/HAa1rk0uR1-HNhZJEkSSsvoWqKQ/a"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/6bbdb_i" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/6bbdb__1bI6DEJp4E" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F01%2Fnew-google-favicon-deja-vu-all-over-again.html&amp;linkname=New%20Google%20Favicon%20Deja%20Vu%20All%20Over%20Again%3F"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/01/new-google-favicon-deja-vu-all-over-again.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu and Its Leader Set Sights on the Mainstream</title>
		<link>http://codytaylor.org/2009/01/ubuntu-and-its-leader-set-sights-on-the-mainstream.html</link>
		<comments>http://codytaylor.org/2009/01/ubuntu-and-its-leader-set-sights-on-the-mainstream.html#comments</comments>
		<pubDate>Sun, 11 Jan 2009 22:00:12 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=1316</guid>
		<description><![CDATA[The notion of a strong Linux-based competitor to Windows and, to a lesser extent, Apple’s Mac OS X has been an enduring dream of advocates of open-source software. They champion the idea that software that can be freely altered by the masses can prove cheaper and better than proprietary code produced by stodgy corporations.


]]></description>
			<content:encoded><![CDATA[<p>The notion of a strong Linux-based competitor to Windows and, to a lesser extent, Apple’s Mac OS X has been an enduring dream of advocates of open-source software. They champion the idea that software that can be freely altered by the masses can prove cheaper and better than proprietary code produced by stodgy corporations.</p>
<p><a href="http://feedads.googleadservices.com/~at/7i6Jl_0wV49bOAesZHekElptkSI/a"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/fbab3_i" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/fbab3_I3G5eeUou7c" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F01%2Fubuntu-and-its-leader-set-sights-on-the-mainstream.html&amp;linkname=Ubuntu%20and%20Its%20Leader%20Set%20Sights%20on%20the%20Mainstream"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/01/ubuntu-and-its-leader-set-sights-on-the-mainstream.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 beta now available</title>
		<link>http://codytaylor.org/2009/01/windows-7-beta-now-available.html</link>
		<comments>http://codytaylor.org/2009/01/windows-7-beta-now-available.html#comments</comments>
		<pubDate>Sat, 10 Jan 2009 23:30:10 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=1129</guid>
		<description><![CDATA[Microsoft has apparently decided that it has enough server capacity and has made the code for the Windows 7 beta available.


]]></description>
			<content:encoded><![CDATA[<p>Microsoft has apparently decided that it has enough server capacity and has made the code for the Windows 7 beta available.</p>
<p><a href="http://feedads.googleadservices.com/~at/t3X7KVhEOVG8WMd9ZDqgOaCHClg/a"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/5061f_i" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/5061f_BfklY1WhScw" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F01%2Fwindows-7-beta-now-available.html&amp;linkname=Windows%207%20beta%20now%20available"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/01/windows-7-beta-now-available.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Beta Released To Public After Delay</title>
		<link>http://codytaylor.org/2009/01/windows-7-beta-released-to-public-after-delay.html</link>
		<comments>http://codytaylor.org/2009/01/windows-7-beta-released-to-public-after-delay.html#comments</comments>
		<pubDate>Sat, 10 Jan 2009 23:30:04 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=1119</guid>
		<description><![CDATA[Z80xxc! writes &#8220;The Windows 7 Beta release is now available for download by the general public, in 32-bit and 64-bit flavors. Microsoft had previously announced availability around 3 PM PST on Friday, but after unexpected numbers of people interested in the download, had to postpone it to add more servers.&#8221;

Read more of this story at [...]]]></description>
			<content:encoded><![CDATA[<p>Z80xxc! writes &#8220;The Windows 7 Beta release is now available for download by the general public, in 32-bit and 64-bit flavors. Microsoft had previously announced availability around 3 PM PST on Friday, but after unexpected numbers of people interested in the download, had to postpone it to add more servers.&#8221;
<p><a href="http://tech.slashdot.org/article.pl?sid=09/01/10/1943242&amp;from=rss"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/941a8_1943242"></a></p>
<p><a href="http://tech.slashdot.org/article.pl?sid=09/01/10/1943242&amp;from=rss">Read more of this story</a> at Slashdot.</p>
<p><a href="http://feedads.googleadservices.com/~at/LyNR--EyvYjIrTpAxpLVbZBGqIY/a"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/941a8_i" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/941a8_6PC-tMf7FpQ" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F01%2Fwindows-7-beta-released-to-public-after-delay.html&amp;linkname=Windows%207%20Beta%20Released%20To%20Public%20After%20Delay"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/01/windows-7-beta-released-to-public-after-delay.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 Beta Rollout Fails Without BitTorrent</title>
		<link>http://codytaylor.org/2009/01/windows-7-beta-rollout-fails-without-bittorrent.html</link>
		<comments>http://codytaylor.org/2009/01/windows-7-beta-rollout-fails-without-bittorrent.html#comments</comments>
		<pubDate>Sat, 10 Jan 2009 19:45:11 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=1097</guid>
		<description><![CDATA[Microsoft ran into major bandwidth problems when they released the latest Beta of Windows 7 to the public. The company decided to delay the release while they added some more servers, citing “very heavy traffic”. If they had only used BitTorrent, this heavy traffic would have actually speeded up distribution, instead of slowing it down.


]]></description>
			<content:encoded><![CDATA[<p>Microsoft ran into major bandwidth problems when they released the latest Beta of Windows 7 to the public. The company decided to delay the release while they added some more servers, citing “very heavy traffic”. If they had only used BitTorrent, this heavy traffic would have actually speeded up distribution, instead of slowing it down.</p>
<p><a href="http://feedads.googleadservices.com/~at/g4-_WoXo_AfDL_l39PtcixAC1WI/a"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/8a15e_i" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/8a15e_dJJ4W-SG1qw" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F01%2Fwindows-7-beta-rollout-fails-without-bittorrent.html&amp;linkname=Windows%207%20Beta%20Rollout%20Fails%20Without%20BitTorrent"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/01/windows-7-beta-rollout-fails-without-bittorrent.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

