Archive for the ‘Workaround’ Category
Friday, June 27th, 2008 |
If you are using Windows Update to periodically download and install latest patch, you might encountered an annoying window that prompts you to restart your computer once new updates installed. It will keep on bugging you until your computer is restarted. Clicking Restart Later is only good for a few minutes before the restart window pops up again.

(more…)
Popularity: 16% [?]
Share This
If you like this post, you may want to subscribe to my RSS feed.
Posted in Development, Tools, .Net, Workaround | No Comments »
Wednesday, March 26th, 2008 |
After completed testing of my ASP.Net in test server, I deployed the same application to client’s server. However, I was hit with following error:
HTTP 500 - Internal Error Server
On further testing, I can’t even connect to localhost (that’s weird!). It gives the same error as above. My client’s system has the following:
- Windows XP SP2
- IIS 5.1
- Microsoft .Net Framework 1.1 (v 1.1.4322)
I tried the following but still couldn’t work:
- Reinstall IIS
- Reinstall Microsoft .Net Framework
- Run aspnet_regiis.exe -i
Solution:
- First of all I need to ensure that IE will not suppress any error messages. In order to do that, open Internet Explorer go to Tools-> Internet Options -> Advanced Tab. Check option Show Friendly HTTP Error Messages.
- Install IIS
- Install Microsoft .Net Framework
- Make sure Distributed Transaction Coordinator service is installed and running!
- open up your services panel or enter "services.msc"
- look for Distributed Transaction Coordinator (DTC)
- If it is not there, that means it is not installed.
- To install DTC, open up command prompt,
- go to your %windir/system32
- run msdtc.exe -install
- Once installed, you should be able to see DTC in your service panel.
- Start it
- Run aspnet_regiis.exe -i to complete installation.
- And voila! My ASP.Net application works!
For guides to reinstall DTC, click here http://support.microsoft.com/kb/891801
Popularity: 46% [?]
Share This
Posted in Development, .Net, General, Workaround, Internet Explorer | No Comments »
Thursday, October 11th, 2007 |
You misplace your Visual Studio 2005 serial key? Don’t worry. As long as you already have it installed in your PC, you can retrieve the key yourself.
You can retrieved the installed Visual Studio 2005 serial key in Windows Registry. Follow the instruction below:
- Open registry window. (Start-> Run -> Regedit)
- Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\Registration
- Look for PIDKEY value
- The value is the serial key string. Just add a ‘-’ on every 5 characters and you will get your full serial key which you can use later.
By the way, if you are looking for a cracked serial key, sorry, you came to the wrong place.
Popularity: 59% [?]
Share This
Posted in Development, .Net, Tips and Tricks, General, Workaround | 2 Comments »
Thursday, October 11th, 2007 |

“Error 25007.Error occurred while initializing fusion. Setup could not load fusion with LoadLibraryShim(). The handle is invalid.”
When you encountered this error, you cannot continue to install Microsoft .Net Framework 2.0. Even if you tried to uninstall .Net Framework 2.0, it won’t allow you too! Now, you found yourself stuck in the situation and thinking of reformat your PC for a clean fresh installation.
Don’t do that just yet. There is one simple solution to this problem. Just remove the following folder
%windir\WinSXS\Policies
where %windir is your Windows directory and reinstall .Net Framework 2.0.
Now, you should be able to get the Framework installed.
Updated :
Below are links to other method to solve the same issue. Will keep on updating if I found any new workaround.
1) MSDN
Popularity: 100% [?]
Share This
Posted in Development, .Net, Tips and Tricks, General, Workaround | 19 Comments »