Monday, July 2, 2012

How can I uninstall or remove upgraded IE?


If you have upgraded IE but now want to uninstall it, then please follow these steps:
1.     Carefully select and then copy the following command:
%windir%\ie8\spuninst\spuninst.exe
2.     Click Start, and then click Run.
3.     In the Open box, type Cmd.exe, and then press ENTER.
4.     Right-click inside the Cmd.exe window, and then click Paste to paste the command that you copied in step 1.
5.     Press ENTER to uninstall Internet Explorer 8.
6.     When the uninstall program is finished, restart your computer.

Reference:

Tuesday, December 20, 2011

How to change default script host to either CScript or VBScript?

Follow the steps / commands below to change default scripting language to either CScript or VBScript:


To Change to CScript:
CScript //h:cscript

To Change to VBScript:
CScript //h:vbscript

URL: http://win-techie.blogspot.com/2011/12/how-to-change-default-script-host-to.html




 

Tuesday, November 22, 2011

How to resolve 'application failed to initialize properly (0XC0000005)'?

Problem

When we try to install or run an application we get the below error message. Sometimes the message doesn't appear on screen but it is logged in Windows Event Viewer.

"The application failed to initialize properly (0XC0000005). Click OK to terminate the application.”

 ‍Discussion

This problem is generated by Microsoft's Data execution prevention (DEP) . For more information, reference Microsoft Technet

Any application that is not registered with DEP will receive an exception with status code STATUS_ACCESS_VIOLATION (0xC0000005).

 ‍Solution

If you are logged on as an administrator, you can now easily configure DEP settings by using the System dialog box in Control Panel.

End users who are logged on as administrators can manually configure DEP between the OptIn and OptOut policies using the Data Execution Prevention tab inside the System Properties dialog box.

The following procedure describes how to manually configure DEP on the computer:

1.Click Start, click Control Panel, and then double-click System.
2.Click the Advanced tab (or Advanced System Properties in Vista and Windows7). Then, under Performance, click Settings.
3.Click the Data Execution Prevention tab.
4.Click Turn on DEP for essential Windows programs and services only to select the OptIn policy, or:
5.Click Turn on DEP for all programs and services except those I select to select the OptOut policy.
6.If you selected the OptOut policy, click Add and add the applications that you do not want to use DEP with.

http://win-techie.blogspot.com/2011/11/how-to-resolve-application-failed-to.html

References:

http://ambientweather.wikispaces.com/The+application+failed+to+initialize+properly+(0XC0000005).+Click+OK+to+terminate+the+application

Tuesday, November 15, 2011

How to check the version of Microsoft dotnet framework installed?

There are multiple ways to verify if we have successfully installed the dotnet and what is the version installed.

Method 1:

Check for a local directory like

%windir%\Microsoft.NET\Framework\

where is
v1.1.4322 - for .NET Framework v1.1
v1.0.3705 - for .NET Framework v1.0

Method 2:
 
From Add/Remove Program...







Method 3:

We can also try to check


HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework

and

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup












Method 4:

Also there is a freeware uility that not only reveals which version of dotnet is installed but also helps you in downloading dotnet framework from Microsoft.

You may download the utility from the link below.
http://www.asoft.be/prod_netver.html

























Other References:

http://www.asoft.be/prod_netver.html
http://www.pcreview.co.uk/forums/check-version-dotnet-framework-installed-t1222779.html
http://www.walkernews.net/2008/05/16/how-to-check-net-framework-version-installed/

Saturday, November 12, 2011

How can be checked if the hotfix has been applied?

We may use any of the below methods to verify whether Microsoft hotfix has already been installed or not.

Method 1 - Getting Information From Registry (Regedit32)

Using regedit or regedt32, access registry at following key:
   HKEY_LOCAL_MACHINE\software\Microsoft\WindowsNt\CurrentVersion \Hotfix

All hotfixes will be listed here (by their Microsoft KB article)

Method 2 - Getting Information From WINNT Folder

Open the \WINNT directory, ensure to 'Show all files' from the menubar (View-->Options). There will be folders visible $Qxxxxxx$ which are the hidden system uninstall directories for each installed hotfix.

Reference:

http://win-techie.blogspot.com/2011/11/how-can-be-checked-if-hotfix-has-been.html