<?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>anebg</title>
	<atom:link href="http://anebg.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://anebg.net</link>
	<description>2 geek life, brainstorm, computing!</description>
	<lastBuildDate>Thu, 26 Jan 2012 08:06:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>A quote</title>
		<link>http://anebg.net/2012/01/26/a-quote/</link>
		<comments>http://anebg.net/2012/01/26/a-quote/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 08:06:00 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anebg.net/?p=92</guid>
		<description><![CDATA["When you nourish your true character, your reputation will take care of itself."]]></description>
			<content:encoded><![CDATA[<p>"When you nourish your true character, your reputation will take care of itself."</p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2012/01/26/a-quote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>../lib/.libs/libcurl.so: undefined reference to `SSLv2_client_method&#8217;</title>
		<link>http://anebg.net/2012/01/25/lib-libslibcurl-so-undefined-reference-to-sslv2_client_method/</link>
		<comments>http://anebg.net/2012/01/25/lib-libslibcurl-so-undefined-reference-to-sslv2_client_method/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 06:36:54 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://anebg.net/?p=88</guid>
		<description><![CDATA[I was trying to install hiphop-php, and while compiling curl, ran accross this issue ../lib/.libs/libcurl.so: undefined reference to `SSLv2_client_method' So I went over to github and fixed my file. Their new file is here https://github.com/bagder/curl/blob/26b487a5d6ed9da5bc8e4a134a88d3125884b852/lib/ssluse.c So if you edit your own file, around line 1457, you will see a line that looks like this(github line [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to install hiphop-php, and while compiling curl, ran accross this issue<br />
<code>../lib/.libs/libcurl.so: undefined reference to `SSLv2_client_method'</code></p>
<p>So I went over to github and fixed my file. Their new file is here<br />
<a href="https://github.com/bagder/curl/blob/26b487a5d6ed9da5bc8e4a134a88d3125884b852/lib/ssluse.c" title="github blob" target="_blank">https://github.com/bagder/curl/blob/26b487a5d6ed9da5bc8e4a134a88d3125884b852/lib/ssluse.c</a></p>
<p>So if you edit your own file, around line 1457, you will see a line that looks like this(github line 1461):<br />
<code>case CURL_SSLVERSION_SSLv2:<br />
....<br />
break;</code></p>
<p>Change your case/break statement to only contain what is in the following snippet<br />
<code><br />
    #ifdef USE_TLS_SRP<br />
    if (data->set.ssl.authtype == CURL_TLSAUTH_SRP)<br />
      return CURLE_SSL_CONNECT_ERROR;<br />
    #endif<br />
    #ifdef OPENSSL_NO_SSL2<br />
        failf(data, "openSSL was compiled without SSLv2 support");<br />
    return CURLE_SSL_CONNECT_ERROR;<br />
    #endif<br />
    req_method = SSLv2_client_method();<br />
    use_sni(FALSE);<br />
<code><br />
Shazam! Good luck curling!</p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2012/01/25/lib-libslibcurl-so-undefined-reference-to-sslv2_client_method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Zend Server Community (Zend CE) on Ubuntu 11.10  [Tutorial]</title>
		<link>http://anebg.net/2011/10/10/installing-zend-server-community-zend-ce-on-ubuntu-11-10/</link>
		<comments>http://anebg.net/2011/10/10/installing-zend-server-community-zend-ce-on-ubuntu-11-10/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 06:14:23 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Zend Server]]></category>

		<guid isPermaLink="false">http://anebg.net/?p=79</guid>
		<description><![CDATA[First, you need to add the Zend Key to your Aptitude (So you can use their repository), and for this we need root. Enter Sudo Console sudo bash Add the key to our local key storage (Zend's key was unavailable, so I put one on my server.. Got it from pastebin wget http://anebg.net/zend.key -O- &#124; [...]]]></description>
			<content:encoded><![CDATA[<p>First, you need to add the Zend Key to your Aptitude (So you can use their repository), and for this we need root.</p>
<p>Enter Sudo Console<br />
<code>sudo bash</code></p>
<p>Add the key to our local key storage (Zend's key was unavailable, so I put one on my server.. Got it from <a href="http://pastebin.com/1WYWfeBX">pastebin</a><br />
<code>wget http://anebg.net/zend.key -O- | sudo apt-key add -</code></p>
<p>After downloading the download script from zend,</p>
<p>http://www.zend.com/en/products/server-ce/downloads</p>
<p>Extract it,go to the directory where you extracted it on the terminal and Install Zend CE for PHP 5.3<br />
<code>./install_zs.sh 5.3 ce</code></p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2011/10/10/installing-zend-server-community-zend-ce-on-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TCPDF returns an empty page with just the headers when writing HTML</title>
		<link>http://anebg.net/2011/09/07/tcpdf-returns-an-empty-page-with-just-the-headers-when-writing-html/</link>
		<comments>http://anebg.net/2011/09/07/tcpdf-returns-an-empty-page-with-just-the-headers-when-writing-html/#comments</comments>
		<pubDate>Wed, 07 Sep 2011 21:20:11 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blank document]]></category>
		<category><![CDATA[empty]]></category>
		<category><![CDATA[generated]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tcpdf]]></category>

		<guid isPermaLink="false">http://anebg.net/?p=65</guid>
		<description><![CDATA[First, make sure your HTML is valid. Second, make sure your encoding is true to what your TCPDF construction, for example : $pdf = new TCPDF('L', PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); Is creating a UTF8 pdf document. So, before you pass in your $html variable, utf8 encode it. $pdf->writeHTML(utf8_encode($html), true, 0, true, 0); I use [...]]]></description>
			<content:encoded><![CDATA[<p>First, make sure your HTML is valid.<br />
Second, make sure your encoding is true to what your TCPDF construction,  for example :</p>
<p><code>$pdf = new TCPDF('L', PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);<br />
</code><br />
Is creating a UTF8 pdf document. So, before you pass in your $html variable, utf8 encode it.</p>
<p><code>$pdf->writeHTML(utf8_encode($html), true, 0, true, 0);</code></p>
<p>I use it in a site where lots of users input pasted text from MS Word, and it seems that it comes with a bunch of weird characters that break TCPDF, utf8 encoding fixed a bunch of seemingly 'random' blank generated PDFs.</p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2011/09/07/tcpdf-returns-an-empty-page-with-just-the-headers-when-writing-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Wifi tether &#8211; Wireless tether your XPERIA X10 Mini Pro</title>
		<link>http://anebg.net/2010/12/02/how-to-wifi-tether-wireless-tether-your-xperia-x10-mini-pro/</link>
		<comments>http://anebg.net/2010/12/02/how-to-wifi-tether-wireless-tether-your-xperia-x10-mini-pro/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 01:07:29 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[X10 Mini Pro]]></category>
		<category><![CDATA[barnacle]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wifi tether]]></category>
		<category><![CDATA[x10 mini pro]]></category>
		<category><![CDATA[xperia]]></category>

		<guid isPermaLink="false">http://anebg.net/?p=66</guid>
		<description><![CDATA[This was tested on a XPERIA X10 Mini Pro Running Eclair (2.1) 1. Root your phone. (Install the app z4root from the market and do a permanent root) Here is z4root.1.3.0.apk 2. Install the 'barnacle' app, from the market as well. If you have trouble finding it use the code below (or click to download [...]]]></description>
			<content:encoded><![CDATA[<p>This was tested on a XPERIA X10 Mini Pro Running Eclair (2.1)</p>
<p>1. Root your phone. (Install the app z4root from the market and do a permanent root)</p>
<p>Here is z4root.1.3.0.apk</p>
<p><a href="http://goo.gl/HPouV"><img class="alignnone" title="z4root.1.3.0.ak" src="http://goo.gl/HPouV.qr" alt="" width="150" height="150" /></a></p>
<p>2. Install the 'barnacle' app, from the market as well. If you have trouble finding it use the code below (or click to download the apk)</p>
<p><a href="http://goo.gl/SCadh"><img class="alignnone" title="Barnacle QR Code" src="http://goo.gl/SCadh.qr" alt="" width="150" height="150" /></a></p>
<p>Success stories in the comments <img src='http://anebg.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2010/12/02/how-to-wifi-tether-wireless-tether-your-xperia-x10-mini-pro/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>doubleTwist Download Failed. Please verify that you are connected to the internet. Reason: resolving hostname</title>
		<link>http://anebg.net/2010/12/01/doubletwist-download-failed-please-verify-that-you-are-connected-to-the-internet-reason-resolving-hostname/</link>
		<comments>http://anebg.net/2010/12/01/doubletwist-download-failed-please-verify-that-you-are-connected-to-the-internet-reason-resolving-hostname/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 15:51:13 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[doubleTwist]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[help]]></category>

		<guid isPermaLink="false">http://anebg.net/?p=61</guid>
		<description><![CDATA[This is either because of a  proxy or doubleTwist's failing servers. You can get the full installer from here: http://download.doubletwist.com/doubleTwistSetupFull.exe Good luck and try out AirSync!]]></description>
			<content:encoded><![CDATA[<p>This is either because of a  proxy or doubleTwist's failing servers.</p>
<p>You can get the full installer from here:</p>
<p><a href="http://download.doubletwist.com/doubleTwistSetupFull.exe">http://download.doubletwist.com/doubleTwistSetupFull.exe</a></p>
<p>Good luck and try out AirSync!</p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2010/12/01/doubletwist-download-failed-please-verify-that-you-are-connected-to-the-internet-reason-resolving-hostname/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to remove preinstalled apps on Xperia X10 Mini Pro</title>
		<link>http://anebg.net/2010/09/26/how-to-remove-preinstalled-apps-on-xperia-x10-mini-pro/</link>
		<comments>http://anebg.net/2010/09/26/how-to-remove-preinstalled-apps-on-xperia-x10-mini-pro/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 16:30:29 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[superuser]]></category>
		<category><![CDATA[x10]]></category>
		<category><![CDATA[x10 mini pro]]></category>

		<guid isPermaLink="false">http://anebg.net/2010/09/26/how-to-remove-preinstalled-apps-on-xperia-x10-mini-pro/</guid>
		<description><![CDATA[With this tutorial you will be able to remove stock apps that come when you buy your phone(goldrush, wisepilot, creatouch, roadsync) for this you need to root your phone (If you haven’t –follow this simple guide). Then… Open the shell by running “adb shell” on your command prompt. adb shell Change directory to /system/app cd [...]]]></description>
			<content:encoded><![CDATA[<p>With this tutorial you will be able to remove stock apps that come when you buy your phone(goldrush, wisepilot, creatouch, roadsync) for this you need to root your phone (If you haven’t –<a href="http://blogote.com/2010/tips-and-tricks/guide-on-how-to-root-xperia-x10-mini-and-x10-mini-pro.html" target="_blank">follow this simple guide</a>).</p>
<p>Then…</p>
<p>Open the shell by running “adb shell” on your command prompt.</p>
<p>adb shell</p>
<p>Change directory to /system/app</p>
<p>cd /system/app</p>
<p>List the currently installed apps</p>
<p>ls</p>
<p>And to remove an app,&#160; run the command</p>
<p>rm –r [appname].apk</p>
<p>The apps I uninstalled were:</p>
<blockquote><p>rm -r rollercoaster.apk     <br />rm -r peggle.apk      <br />rm -r california-gold-rush.apk      <br />rm -r roadsync.apk      <br />rm -r creatouch-2.apk</p>
</blockquote>
<p>And that is it… (Simple, right?)</p>
<p><strong>Make sure to not uninstall system-wide apps such as Timescape or Homescreen, as this may break your android and you might have to reinstall stock firmware and start all over again…)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2010/09/26/how-to-remove-preinstalled-apps-on-xperia-x10-mini-pro/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>.htaccess allow/deny rules for subnet</title>
		<link>http://anebg.net/2010/09/22/htaccess-allowdeny-rules-for-subnet/</link>
		<comments>http://anebg.net/2010/09/22/htaccess-allowdeny-rules-for-subnet/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 22:50:52 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://anebg.net/2010/09/22/htaccess-allowdeny-rules-for-subnet/</guid>
		<description><![CDATA[AuthName &#34;CIRC Under Maintenance&#34; AuthType Basic &#60;Limit GET POST&#62; order deny,allow deny from all allow from 216.249.119. allow from 216.249.123.120 &#60;/Limit&#62; &#160; Allow 216.249.119.&#160; Works for all the addresses which begin in 216.249.119. Allow from 216.249.119.120 Adds a different IP from a different subnet.]]></description>
			<content:encoded><![CDATA[<blockquote><p>AuthName &quot;CIRC Under Maintenance&quot;     <br />AuthType Basic      <br />&lt;Limit GET POST&gt;      <br />order deny,allow      <br />deny from all      <br />allow from 216.249.119.      <br />allow from 216.249.123.120      <br />&lt;/Limit&gt;</p>
<p>&#160;</p>
</blockquote>
<p>Allow 216.249.119.&#160; Works for all the addresses which begin in 216.249.119.</p>
<p>Allow from 216.249.119.120 Adds a different IP from a different subnet.</p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2010/09/22/htaccess-allowdeny-rules-for-subnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install pdo_mysql on CentOS</title>
		<link>http://anebg.net/2010/04/06/install-pdo_mysql-on-centos/</link>
		<comments>http://anebg.net/2010/04/06/install-pdo_mysql-on-centos/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 04:27:06 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://anebg.net/2010/04/06/install-pdo_mysql-on-centos/</guid>
		<description><![CDATA[I tried installing it by runing pecl install pdo_mysql but I got this error: configure: error: cannot run C compiled programs. If you meant to cross compile, use `--host'. See `config.log' for more details. ERROR: `/root/tmp/pear/temp/PDO_MYSQL/configure' failed The problem is that the /tmp and /var/tmp directories are noexec, which prevents pecl build scripts from running. [...]]]></description>
			<content:encoded><![CDATA[<p>I tried installing it by runing <strong>pecl install pdo_mysql</strong> but I got this error: </p>
<blockquote><pre>configure: error: cannot run C compiled programs.
If you meant to cross compile, use `--host'.
See `config.log' for more details.
ERROR: `/root/tmp/pear/temp/PDO_MYSQL/configure' failed</pre>
</blockquote>
<p>The problem is that the /tmp and /var/tmp directories are noexec, which prevents pecl build scripts from running.</p>
<p>Here is what can be done to resolve the problem (assuming root account)<br />
  </p>
<blockquote>
<p>mkdir /root/tmp.pear<br />
    <br />mkdir /root/tmp.pear-build-root </p>
<p>rm -rf /tmp/pear* </p>
<p>ln -s /root/tmp.pear /tmp/pear </p>
<p>ln -s /root/tmp.pear-build-root /tmp/pear-build-root</p>
</blockquote>
<p>pecl install pdo_mysql should now work. </p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2010/04/06/install-pdo_mysql-on-centos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>InterVideo WinDVD BD for VAIO</title>
		<link>http://anebg.net/2009/09/20/intervideo-windvd-bd-for-vaio/</link>
		<comments>http://anebg.net/2009/09/20/intervideo-windvd-bd-for-vaio/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 19:16:49 +0000</pubDate>
		<dc:creator>anebg</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Drivers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bluray]]></category>
		<category><![CDATA[extract mod]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[intervideo windvd bd]]></category>
		<category><![CDATA[play bluray]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[sony]]></category>

		<guid isPermaLink="false">http://anebg.net/2009/09/20/intervideo-windvd-bd-for-vaio/</guid>
		<description><![CDATA[&#160; 4/30/10- Post updated. Read the last paragraph before venturing in. I recently upgraded to Windows 7 through my school’s MSDNAA program. For all my drivers, I used Windows Update and everything pretty much worked out of the box. However, recently, my friend bought a 50” HDTV and we wanted to test it out by [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="WinDVD" border="0" alt="WinDVD" align="left" src="http://anebg.net/wp-content/uploads/2009/09/WinDVD.png" width="244" height="124" />&#160;</p>
<p><strong>4/30/10- Post updated. Read the last paragraph before venturing in.</strong></p>
<p>I recently upgraded to Windows 7 through my school’s MSDNAA program. For all my drivers, I used Windows Update and everything pretty much worked out of the box. However, recently, my friend bought a 50” HDTV and we wanted to test it out by using my laptop’s (VGN-FW270J) Bluray drive. I looked all over in Sony’s Drivers &amp; Downloads site but All I could find was updates&#160; and not the installer.&#160; I called Sony and they straight up told me that they didn’t support Win7 until Oct 22nd and that if I wanted to play Bluray without spitting out some cash, that I had to reformat using my recovery partition(which I luckily didn’t format while installing Win7). I looked all over the web for a solution and I couldn’t find any&#160; so I took matters into my own hands. I booted up Linux and crawled through the recovery partition and bumped across some files that looked like installation files that were compressed in some way (.MOD). I&#160; did some looking around and it turns out that there is a program called <strong>Mod2WIM</strong>, which temporarily displays your hidden recovery partition and copies over all the installer files (mod &amp; sny) and then converts(unlocks) them to be WIM, a format that is used by Windows to pack / mount installers.&#160; After mounting a couple (using <strong>gimagex</strong> – a graphical inteface to the imagex program that is included in the mod2wim download) , I found WinDVD BD, which was file “<strong>MODJ-128993.wim</strong>”.&#160; After mounting, I just opened the setup.exe file and voilà! The installer popped up.</p>
<p>So If you have a Sony VAIO Notebook computer which comes with WinDVD BD preinstalled and wishes to play Bluray without reformatting or anything crazy like that, go ahead and download it here.</p>
<blockquote><p>&#160;<a title="http://rapidshare.com/files/282725115/WinDVDBD.rar" href="http://rapidshare.com/files/282725115/WinDVDBD.rar"><font size="3">http://rapidshare.com/files/282725115/WinDVDBD.rar</font></a></p>
</blockquote>
<p>And if you wish to install some of the other software that comes preinstalled which your computer, here is the software I used and some explanatory screenshots.</p>
<p>Mod2WIM [<a href="http://rapidshare.com/files/282731013/mod2wim.zip" target="_blank">Download</a>] ( Click to enlarge )</p>
<p><a href="http://anebg.net/wp-content/uploads/2009/09/Capture2.png" rel="lightbox"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Capture2" border="0" alt="Capture2" src="http://anebg.net/wp-content/uploads/2009/09/Capture2_thumb.png" width="244" height="125" /></a></p>
<p>ImageX [<a href="http://www.autoitscript.com/gimagex/#Downloads" target="_blank">Download</a>] (GUI Version GImageX)     <br /><a href="http://anebg.net/wp-content/uploads/2009/09/GImageX.png" rel="lightbox"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="GImageX" border="0" alt="GImageX" src="http://anebg.net/wp-content/uploads/2009/09/GImageX_thumb.png" width="244" height="202" /></a></p>
<p>The files I were able to obtain from my partition were:</p>
<blockquote><p>437M MOD-Quickbooks_Starter_Edition.no_3.wim      <br />435M MOD-VAIO_Movie_Story.no_35.wim       <br />312M MOD-OneCare.no_36.wim       <br />307M MOD-Office_2007_Home_and_Student_Trial.no_6.wim       <br />300M MODJ-126940.no_15.wim       <br />252M MOD-MS_Works_Bundle.no_5.wim       <br />190M MODJ-126695.no_17.wim       <br />189M MODJ-128993.no_31.wim       <br />180M MOD-Music_Box.no_34.wim       <br />161M MODJ-126708.no_26.wim       <br />137M MOD-VAIO_Help_and_Support.no_48.wim       <br />90M MODJ-126813.no_24.wim       <br />68M MODJ-126259.no_7.wim       <br />65M MOD-VAIO_Media_Plus.no_40.wim       <br />46M MODJ-126696.no_20.wim       <br />46M MOD-AOL_Software.no_47.wim       <br />44M MOD-Wireless_Connection_Utility_EVDO.no_46.wim       <br />29M MODJ-126299.no_9.wim       <br />20M MODJ-126885.no_21.wim       <br />19M MODJ-126296.no_8.wim       <br />18M MODJ-126887.no_28.wim       <br />16M MODJ-127038.no_25.wim       <br />16M MODJ-126883.no_22.wim       <br />12M MOD-Napster_Pre_Install.no_32.wim       <br />12M MODJ-126880.no_23.wim       <br />8.5M MOD-VAIO_OOBE_And_Welcome_Center.no_49.wim       <br />7.7M MOD-VAIO_Care.no_50.wim       <br />6.8M MOD-MS_Office_2007_Activation_Assistant.no_33.wim       <br />6.8M MODJ-126798.no_19.wim       <br />6.1M MODJ-126955.no_14.wim       <br />5.6M MOD-VAIO_Wireless_Wizard.no_41.wim       <br />5.1M MODJ-120274.no_2.wim       <br />4.8M MODJ-126894.no_13.wim       <br />4.6M MODJ-126779.no_12.wim       <br />3.7M MOD-CSUP.no_39.wim       <br />3.2M MODJ-128897.no_30.wim       <br />2.9M MODJ-126728.no_27.wim       <br />2.7M MOD-VAIO_Startup_Assistant.no_45.wim       <br />2.2M MODJ-126943.no_18.wim       <br />2.2M MOD-Documentation.no_44.wim       <br />2.2M MODJ-126957.no_16.wim       <br />2.0M MOD-VAIO_My_Memory_Center.no_11.wim       <br />1.7M MOD-VAIO_Survey_Standalone.no_43.wim       <br />1.7M MOD-Media_Center_User_Guide.no_4.wim       <br />1.5M MOD-SetAutoFailover.no_42.wim       <br />412K EPC-RenewCPU.no_51.wim       <br />304K MOD-Registration_Warranty.no_10.wim       <br />184K MOD-Puma.no_37.wim       <br />128K MOD-OEM_Information_Registry_Settings.no_38.wim       <br />16K MODJ-128994.no_29.wim       <br />4.0K MOD-PowerPlay_Setting A.no_1.wim</p>
</blockquote>
<p><strong>*Update* 4/30/10 – </strong>Sony eSupport site finally caught up to Windows 7. As of January of 2010, they have put up the installer for (at least) my model. You can grab the installer from their site:<a title="http://esupport.sony.com/US/perl/swu-list.pl?mdl=VGNFW270J&amp;SelectOS=45#div_pos_113" href="http://esupport.sony.com/US/perl/swu-list.pl?mdl=VGNFW270J&amp;SelectOS=45#div_pos_113">http://esupport.sony.com/US/perl/swu-list.pl?mdl=VGNFW270J&amp;SelectOS=45#div_pos_113</a>&#160; and expanding the ‘WinDVD sofware’ dropdown. My model is in there, you can change it to see if you can find yours.</p>
<p>I hope this helps out somebody out there.. and if you find it useful; don’t forget to thank in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://anebg.net/2009/09/20/intervideo-windvd-bd-for-vaio/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>

