Posts

Showing posts from September, 2006

Office 2003 SKU011.CAB problem

  When Office2003 couldn't find file SKU011.CAB: regedit -> [HKEY_LOCAL_MACHINE] -> [SOFTWARE] -> [Microsoft] -> [Office] -> [11.0] -> [Delivery] -> {90000409-6000-11D3-8CFE-0150048383C9} -> [CDCache] change to [0] .... Done!

Clean up a SQL 2005 instance name

A nice trick provided by Aaron Stebner Ref: http://blogs.msdn.com/astebner/archive/2005/12/08/501885.aspx I have heard from a few customers who have tried to uninstall beta versions of SQL 2005 and then install the final release and have run into errors with both the beta uninstall and the final release install. I have already described the most common uninstall error and a suggested workaround in this previous blog post (an error reading property "Installids" from the cache and/or an error writing property "flagCommit" to the cache). I wanted to address one of the most common final release install errors I have seen - a duplicate instance name error that causes SQL setup to fail and rollback. It is pretty easy to tell if you are running into this error if you launch SQL setup directly and step through the SQL setup UI. However, if you are installing SQL Express as a part of Visual Studio 2005, setup runs in silent mode and you will only see a generic error bubb...

DirectInput refresh

Simply remove files in: Program Files\Common Files\DirectX\DirectInput\User Maps\*.*

Redirect Apache request to IIS

Just got some ideas for redirecting Apache request to IIS, if anyone make this work, please let me know. RewriteEngine on RewriteRule ^/(.*\.asp)$ http://localhost:81/$1 [P]

Usage on Weka Attribute Filter

I seldom use Weka, but just reminded me some work I did years ago... AttributeFilter af = new AttributeFilter(); int i[] = {1,2,3}; af.setAttributeIndicesArray(i); af.setInputFormat(data); Instances ins = Filter.useFilter(data,af); System.out.println(ins);