Tuesday, November 24, 2009

CISCO VPN Client Error message "Reason 442: Failed to Enable Virtual Adapter"

Problem Description: When users will try to establish VPN connection that cannot establish a connection. A pop-up message will apper with error message "Reason 442: Failed to Enable Virtual Adapter". If you are looking at the status bar of the VPN client you will see this pop-up appearing after VPN client was showing "Securing communication channel..."





Cause: Problem with the network adapter configuration that VPN client uses, some time it does not get disabled because someone might have closed laptop and it didn't get terminated properly.





Fix: There are usually two things that work for me


Fix1: Disable "Local Area Connection (x)" that is created and used by CISCO VPN Client. Following are steps on how to do this:





Windows XP:


1. Navigate to network connections by selecting Start >Settings > Control Panel > Network Connections


2. Set the view to show you details (Select 'View' menu on the top and select 'Details')


3. Under Device name column one should be able to see which Local Area Connection is used by CISCO Client. Here is a screenshot:





4. Right click on Local Area Connection that is used by VPN client and disable it (if its already enabled).

5. In case Local Area Connection used by VPN client is disabled then select repair.

FIX 2: This has to do with Windows VISTA specificly.

****COMING SOON****




Monday, August 31, 2009

"Arithmetic overflow error converting expression to data type datetime.Native error: 8115 SQLState: 22003" error message in Microsoft SQL

Problem Description: Following error message may be thrown by some applications that uses date formats:

"Arithmetic overflow error converting expression to data type datetime.Native error: 8115 SQLState: 22003"

A application that was working properly earlier can certainly start to throw this error message after some changes were made to the environment. In my usercase a database was moved from one SQL server to another SQL server. Problem started to occur on 13th of month, problem was present till 1st of next month. Problem will come back on 13th of next month.

Cause: Date formats used by service account can cause problem while converting data that is related to calander dates. In my usercase default language for Service Account within Microsoft SQL Server has been changed from one format to another e.g. from English (US_English) to British.


Solution: There are different solutions for it but if a application is already wrote and you only want to resolve the problem of error message following is what you can try.

Note: These steps are written for MS SQL Server 2005 you might want to change it a little for other versions of MS SQL Server
  1. Log on to SQL server that hosts databases in question.
  2. Launch 'SQL Server Management Studio'.
  3. When prompted, log on using the credentials that will allow you to make changes to the SQL server configuration.
  4. In the left pane of 'Microsoft SQL Server Management Studio' expand 'Security' section.
  5. Further expand 'Logins' section.
  6. Select Service Account and right click on it.
  7. Select 'Properties'
  8. On 'Login Properties' screen on right side of the pane check 'Default Language' section.
  9. If 'Default Language' is set to British change it to English (or vise versa depending on your needs)
  10. Select 'OK'

Language and dateformats specific for a service account can also be checked by running 'dbcc useroptions' query analyzer while logged in using service account .

Caution: Please also check with the vendor of the application on what date format is preffered by the application as making changes to date format settings can cause problem with the data that will be stored by service account into the SQL tables.


Tuesday, August 18, 2009

How to install ADSIEdit on Windows 2008 server ?

As many of us have used ADSIEdit in different versions of Windows Platforms, I am sure we all would like to know where ADSIEdit is located in Windows 2008 Server ?

In Windows 2008 ADSIEdit is part of Remote Server Administration Tools (RSAT).

Following are methods to get it installed:

Method one:
1. Open command prompt
2. Run command line 'ServerManagerCmd -i RSAT-ADDC'
3. Once installed you should be able to find it under Administrative Tools

Method two:
1. Open 'Server manager'
2. Select 'Features'
3. Select 'Add Features' on the right side of the pane
4. Select 'Remote Server Administration Tools'
5. Make sure you tick 'Active Directory Lightweight Directory Services Tools'
6. Follow the prompt to install (Select Next)
7. Once installed you should be able to find it under Administrative Tools







How to install .NET Framework on Windows 2008 server?

Following are steps on how to install .NET Framework on Windows 2008 Server

1. Open 'Server Manager'
2. Select 'Features'
3. Right click on Features
4. Select 'Add Features'
5. Select '.NET Framework 3.0 Features'
6. Follow the prompt (Select Next)
7. Once installed select 'Close'

Now you machine is ready with .NET Framework 3.0

Friday, July 24, 2009

Pop-up about "AXWIN frame window" while running trying to run patch SP2, SP3 or SP4 for SQL 2005 server

Problem Description:
Today I came accross an issue while I was trying to patch my SQL 2005 server with SP2. As a check SP2 setup will check for any running services that could cause any trouble while patching up SQL Server. It was suggested by pop-up screen to close or terminate "AXWIN frame window" before continuing. This pop-up screen shows "AXWIN frame window" as a service.

Solution: After scratching my head and going through all services that were running on the machine I have found out that it was "Computer management" console that was open on Services applet was causing this problem. Once I closed Computer Management the check didn't report anything.

Seems like "AXWIN frame window" is what windows uses internally for any window or console to appear on screen.

In other words if you see pop-up about AXWIN Frame Window please check to make sure none of the other windows are open other than the installer itself these could be anything e.g. MMC console, Services.msc, Event Viewer or computer management.

As per the comments from others this solution is not only applicable while patching SP2 but also other service packs e.g. SP4.