Thursday, November 19, 2009

How to minimize MSN Messenger to the system tray in Windows 7?


how to minimize MSN Messenger into the system tray in Windows 7 is a nuisance for a many users. By running MSN in compatibility mode and selecting Windows Vista, MSN will no longer remain in the taskbar and will minimize into the system tray instead.


1) Go to your MSN folder. It’s usually located at: C:\Program Files\Windows Live\Messenger

2) Right click msnmsgr.exe and select Properties



3) Select the Compatibility tab at the top.

4) Check Run this program in compatibility mode for: and select Windows Vista from the drop-down menu



5) Click Apply, then OK, and you’re finished

Saturday, October 24, 2009

How to adjust lights of your car?

Head Lamps or Head lights

Safe driving is dependent on our ability to react to any situation, but we can only respond to what we can see. Low beams and high beams are our first line of defense against poor visibility, but often their range falls short. Driving lights pick up the slack. They're designed to boost the intensity and range of your high beams, showering the roadway with brilliant light. When we can see clearly, we're able to rapidly respond to whatever may come our way.

If you think about it, driving lights give you the power to peer into the future. All their extra light reveals the road that lies ahead of you, and you can use that knowledge of upcoming conditions to plan your next course of action. Without the foresight that driving lights deliver, your ability to respond to hazards is greatly diminished. Because of this special characteristic, driving lights are most effective for nighttime highway driving because of the higher cruising speeds.

Driving lights generate beams that are more focused than fog lights because they're engineered to travel farther in advance of your vehicle. As such, correctly aiming them is crucial to improve your own visibility while avoiding blinding other motorists. Follow these S.A.E. tips to properly align your driving lights.

Mount your driving lights on the front of your vehicle 14"–30" up from the ground.
Park 25' away from a flat wall,
like a garage door or the side of a building. Level ground gives you the most accurate results.
Measure the distance from the center of your driving light down to the pavement, and mark that distance on the wall with chalk.
Flip on the lights and find the center of the hot spot, which is the intense inner circle of the beam. Tilt the driving light so that the center of the hot spot is 1 " below the mark you made in the wall.
While there is little variation in the beam pattern, driving lights come in a number of different styles that are optimized for specific driving conditions

Fog Lights or Fog Lamps

The only effective way to drive through dense fog is to angle the light downward onto the road, so that it avoids running right into the reflective water droplets. Typically, fog hovers about 12"–18" above the road's surface. Fog lights mount low on your front bumper, and cast a wide beam of light down onto the road. That way, the light gets lower than the fog, and you're able to see clearer and drive safer. What's more, in order to keep the light from extending above the level of your bumper, the beams of light are cut off at the top (imagine an Oreo cookie that's been divided in half).

How your fog lights are aimed is extremely important. If they're angled too high, their light will just shoot right up into the mist—not to mention right into the eyes of oncoming motorists. If they're angled too low, then their range is greatly reduced, and you won't be able to see far enough ahead. Thankfully, the Society of Automotive Engineers (S.A.E.) has taken the guess work out of aiming fog lights by developing a standard system. Here's how it works:

Mount the fog lights on the front of your vehicle between 10"–14" up from the ground. Park your vehicle 25' away from a flat wall, like a garage door or the side of a building. You'll want to make sure that the ground is level so that the results are accurate.
Measure the height from the center of the lamp to the ground. Use that same measurement to draw a line on the wall with some chalk.
Turn on the fog lights, and take a look at where the light hits on the wall. The tops of the beams should be 4" below the line you drew.
A properly aimed set of fog lights not only gives you better visibility, it's also good roadway etiquette. Misaligned fog lights can shoot right into the eyes of oncoming drivers, and no one wants blinded motorist on the road, especially on stormy nights.

NOTE: Fog lamps can be of any single color. Usually Yellow is being used

Thursday, September 3, 2009

How to Save User Defined Function (SpellNumber) in Excel to work with it on all workbooks? (By One OF MY FRIEND --NB--)

Well all you have to do is to follow following steps;
Step-1: open a new file, open the VBA Module by pressing Atl-F11 and past the code for converting Number into Text (Words), simply save this file as Add-Ins, when you will try to save the file, you have to select the file type and in file types u will see two options, one is for Excel 97-2003 as Add-Ins 97-2003 and other option for Excel 2007, with only name as Add-Ins, all you have to do is to select that simple Add-In option and save the file with the name u like to (I saved it as “SpellNumber” easy for me to remember). After saving it close the VBA Module by pressing Alt-
Step-2: Go and open new excel workbook, select the Office>Select Option>Select Add Ins, you will see in the list of Add Ins, there is an Add In (SpellNumber, with Owner Name as yours), select that Add In & Press Go under the bottom where mentioned (Manage [Com Add Ins]-Go), select this Go.
Step-3: A new popup block will open which shows the already available Add-Ins including the new SpellNumber with an unchecked box, check the box and close this popup block.
Step-4: Now write a figure anywhere in any cell and select the Formulas, in Formula Library select the Insert Function command and a list of functions will appear, select from the category list the User Define Functions and you will find your function “SpellNumber”, select the function and got the result.
Enjoy the Solution.


For more details see below :

User-Defined Functions in ExcelExcel allows you to create custom functions, called "User Defined Functions" (UDF's) that can be used the same way you would use SUM(), VLOOKUP, or other built-in Excel functions. The Excel user who wishes to use advanced mathematics or perform text manipulation is often seriously disappointed by Excel's limited library of formulas and functions. A UDF is simply a function that you create yourself with VBA. This blog will help you get started with UDFs and show a couple of examples.
Sample UDFThe following is a sample that is a good candidate for a UDF:
Function CtoF(Centigrade) CtoF = Centigrade * 9 / 5 + 32End Function

Wednesday, September 2, 2009

Convert a numeric value into words in MSEXCEL

Open EXCEL
press Alt+F11

Go to Insert>Module
paste the code below
Press Alt+Q
save it
go to excel sheet insert formula
SpellNumber()

put the value in (32) to convert to word

NOTE
its in Doller/cents
if you like to change the currency
simply search and replace
Dollars with []
cents with []

on request of a friend
if your currenty value is high

replace
Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _ "00", 2))
With
Cents = GetHundreds(Left(Mid(MyNumber, DecimalPlace + 1) & _"000", 3))

CODE
Start copy below the line
------------------------------------------------

Option Explicit

'****************
' Main Function *
'****************

Function SpellNumber(ByVal MyNumber)
Dim Dollars, Cents, Temp
Dim DecimalPlace, Count

ReDim Place(9) As String
Place(2) = " Thousand "
Place(3) = " Million "
Place(4) = " Billion "
Place(5) = " Trillion "

' String representation of amount.
MyNumber = Trim(Str(MyNumber))

' Position of decimal place 0 if none.
DecimalPlace = InStr(MyNumber, ".")
' Convert cents and set MyNumber to dollar amount.
If DecimalPlace > 0 Then
Cents = GetTens(Left(Mid(MyNumber, DecimalPlace + 1) & _
"00", 2))
MyNumber = Trim(Left(MyNumber, DecimalPlace - 1))
End If

Count = 1
Do While MyNumber <> ""
Temp = GetHundreds(Right(MyNumber, 3))
If Temp <> "" Then Dollars = Temp & Place(Count) & Dollars
If Len(MyNumber) > 3 Then
MyNumber = Left(MyNumber, Len(MyNumber) - 3)
Else
MyNumber = ""
End If
Count = Count + 1
Loop

Select Case Dollars
Case ""
Dollars = "No Dollars"
Case "One"
Dollars = "One Dollar"
Case Else
Dollars = Dollars & " Dollars"
End Select

Select Case Cents
Case ""
Cents = " and No Cents"
Case "One"
Cents = " and One Cent"
Case Else
Cents = " and " & Cents & " Cents"
End Select

SpellNumber = Dollars & Cents
End Function



'*******************************************
' Converts a number from 100-999 into text *
'*******************************************

Function GetHundreds(ByVal MyNumber)
Dim Result As String

If Val(MyNumber) = 0 Then Exit Function
MyNumber = Right("000" & MyNumber, 3)

' Convert the hundreds place.
If Mid(MyNumber, 1, 1) <> "0" Then
Result = GetDigit(Mid(MyNumber, 1, 1)) & " Hundred "
End If

' Convert the tens and ones place.
If Mid(MyNumber, 2, 1) <> "0" Then
Result = Result & GetTens(Mid(MyNumber, 2))
Else
Result = Result & GetDigit(Mid(MyNumber, 3))
End If

GetHundreds = Result
End Function



'*********************************************
' Converts a number from 10 to 99 into text. *
'*********************************************

Function GetTens(TensText)
Dim Result As String

Result = "" ' Null out the temporary function value.
If Val(Left(TensText, 1)) = 1 Then ' If value between 10-19...
Select Case Val(TensText)
Case 10: Result = "Ten"
Case 11: Result = "Eleven"
Case 12: Result = "Twelve"
Case 13: Result = "Thirteen"
Case 14: Result = "Fourteen"
Case 15: Result = "Fifteen"
Case 16: Result = "Sixteen"
Case 17: Result = "Seventeen"
Case 18: Result = "Eighteen"
Case 19: Result = "Nineteen"
Case Else
End Select
Else ' If value between 20-99...
Select Case Val(Left(TensText, 1))
Case 2: Result = "Twenty "
Case 3: Result = "Thirty "
Case 4: Result = "Forty "
Case 5: Result = "Fifty "
Case 6: Result = "Sixty "
Case 7: Result = "Seventy "
Case 8: Result = "Eighty "
Case 9: Result = "Ninety "
Case Else
End Select
Result = Result & GetDigit _
(Right(TensText, 1)) ' Retrieve ones place.
End If
GetTens = Result
End Function




'*******************************************
' Converts a number from 1 to 9 into text. *
'*******************************************

Function GetDigit(Digit)
Select Case Val(Digit)
Case 1: GetDigit = "One"
Case 2: GetDigit = "Two"
Case 3: GetDigit = "Three"
Case 4: GetDigit = "Four"
Case 5: GetDigit = "Five"
Case 6: GetDigit = "Six"
Case 7: GetDigit = "Seven"
Case 8: GetDigit = "Eight"
Case 9: GetDigit = "Nine"
Case Else: GetDigit = ""
End Select
End Function


------------------------------------------------
end copy above the line(dont copy the line)


Thursday, July 9, 2009

Useful shortcuts for windows environment





BASIC SHORTCUT KEYS























































Shortcut Keys Description
Alt + FFile menu options in current program.

Alt + E

Edit options in current program

F1

Universal Help in 90% of Windows programs.

Ctrl + A


Select all text.

Ctrl + X

Cut selected item.

Shift + Del


Cut selected item.

Ctrl + C


Copy selected item.


Ctrl + Ins


Copy selected item



Ctrl + V


Paste

Shift + Ins


Paste


Home


Goes to beginning of current line.


Ctrl + Home


Goes to beginning of document.


End

Goes to end of current line.


Ctrl + End


Goes to end of document.

Shift + Home

Highlights from current position to beginning of line.


Shift + End

Highlights from current position to end of line.


Ctrl + Left arrow

Moves one word to the left at a time.

Ctrl + Right arrow


Moves one word to the right at a time.


MICROSOFT WINDOWS SHORTCUT KEYS














































































Shortcut Keys


Operating System

Description

Alt + Tab

3.X/95/98/NT/2000/XP

Switch between open applications.

Alt + Shift + Tab


3.X/95/98/NT/2000/XP

Switch backwards between open applications.

Alt +Print Screen

3.X/95/98/NT/2000/XP

Create ascreen shot
only for the program you are currently in.

Ctrl + Esc

3.X/95/98/NT/2000/XP

Switch Between open applications on taskbar.

F2

3.X/95/98/NT/2000/XP

Renames selected Icon

F3

3.X/95/98/NT/2000/XP


Starts find from desktop


F4

3.X/95/98/NT/2000/XP

Opens the drive selection when browsing.

F5





3.X/95/98/NT/2000/XP





Refresh Contents




Alt + F4






3.X/95/98/NT/2000/XP




Closes Current open program.





Ctrl + F4






3.X/95/98/NT/2000/XP





Closes Window in Program





Ctrl + (the '+' key on the

keypad)






3.X/95/98/NT/2000/XP





Automatically adjust the width's of all the columns in Windows
explorer





Alt + Enter






3.X/95/98/NT/2000/XP





Opens properties window of Selected icon or program.





Shift + F10






3.X/95/98/NT/2000/XP





Simulates right click on selected item.





Shift + Del







3.X/95/98/NT/2000/XP





Delete programs/files without throwing into the

recycle bin.





Holding Shift











3.X/95/98/NT/2000/XP






Boot safe mode or by pass system files.





Holding Shift






3.X/95/98/NT/2000/XP





When putting in an audio CD will prevent CD Player from playing.





WINDOWS KEYBOARD SHORTCUTS
























































Shortcut Keys




Description





WINKEY + D




Minimizes all windows and returns the user to the desktop



WINKEY + M





Minimizes all windows.





WINKEY + SHIFT + M





Undo the minimize.





WINKEY + E





Open Microsoft Explorer.





WINKEY + Tab





Cycle through open programs through the taskbar




WINKEY + F





Display the Windows Search / Find feature.





WINKEY +CTRL+ F





Display the search for computers window.





WINKEY + F1





Display the Microsoft Windows help.





WINKEY + R





Open the run window.





WINKEY + Pause / Break key





Open the system properties window.





WINKEY + U





Open Utility Manager.





WINKEY + L





Lock the computer (Windows XP and above only).






EXCEL SHORTCUT KEYS

































































































































Shortcut Keys




Description





F7





Spell check selected text and or document.





F11





Create chart.





Ctrl + Shift + ;





Enter the current time





Ctrl + ;





Enter the current date





Alt + Shift + F1





Insert New Worksheet





Shift + F3





Open the Excel formula window.





Shift + F5





Bring up search box.





Ctrl + A





Select all contents of the worksheet.





Ctrl + B





Bold highlighted selection.





Ctrl + I





Italic highlighted selection.





Ctrl + K





Insert link.





Ctrl + U





Underline highlighted selection.





Ctrl + 5





Strikethrough highlighted selection.





Ctrl + P





Bring up the print dialog box to begin printing.





Ctrl + Z





Undo last action.





Ctrl + F9





Minimize current window.





Ctrl + F10





Maximize currently selected window.





Ctrl + F6





Switch between open workbooks / windows.





Ctrl + Page up





Move between Excel work sheets in the same Excel document.





Ctrl + Page down





Move between Excel work sheets in the same Excel document.





Ctrl + Tab





Move between Two or more open Excel files.





Ctrl + Shift + !





Format number in comma format.





Ctrl + Shift + $





Format number in currency format.





Ctrl + Shift + #





Format number in date format.





Ctrl + Shift + %





Format number in percentage format.





Ctrl + Shift + ^




Format number in scientific format.



Ctrl + Shift + @





Format number in time format.





Ctrl + Arrow key





Move to next section of text.





Ctrl + Space





Select entire
column.





Shift + Space





Select entire row.






WORD SHORTCUT KEYS



































































































































































































Shortcut Keys





Description





Ctrl + A





Select all contents of the page.





Ctrl + B





Bold highlighted selection.





Ctrl + C





Copy selected text.





Ctrl + X





Cut selected text.





Ctrl + P





Open the print window.





Ctrl + F





Open find box.





Ctrl + I





Italic highlighted selection.





Ctrl + K





Insert link.





Ctrl + U





Underline highlighted selection.





Ctrl + V





Paste.





Ctrl + Y





Repeat the last action performed.





Ctrl + Z





Undo last action.





Ctrl + L





Aligns the line or selected text to the left of the screen.





Ctrl + E





Aligns the line or selected text to the center of the screen.





Ctrl + R





Aligns the line or selected text to the right of the screen.





Ctrl + M





Indent the paragraph.





Ctrl + Shift + F





Change the font.





Ctrl + Shift + >





Increase selected font +1.





Ctrl + ]





Increase selected font +1.





Ctrl + Shift + <





Decrease selected font -1.





Ctrl + [





Decrease selected font -1.





Ctrl + Shift + *





View or hide non printing characters.





Ctrl + <left arrow>





Moves one word to the left.





Ctrl + <right arrow>





Moves one word to the right.





Ctrl + <up arrow>





Moves to the beginning of the line or paragraph.





Ctrl + <down arrow>





Moves to the end of the paragraph.





Ctrl + Del





Deletes word to right of cursor.





Ctrl + Backspace





Deletes word to left of cursor.





Ctrl + End





Moves the cursor to the end of the document.





Ctrl + Home





Moves the cursor to the beginning of the document.





Ctrl + Spacebar





Reset highlighted text to the default font.





Ctrl + 1





Single-space lines.





Ctrl + 2





Double-space lines.





Ctrl + 5





1.5-line spacing.





Ctrl + Alt + 1





Changes text to heading 1.





Ctrl + Alt + 2





Changes text to heading 2.





Ctrl + Alt + 3





Changes text to heading 3.





F1





Open Help.





Shift + F3





Change the case of the selected text.





Shift + Insert





Paste.





F4





Repeat the last action performed (2000+)





F5





Open goto window.





F7





Spell check selected text and or document.





Shift + F7





Activate the thesaurus.





F12





Save as.





Shift + F12





Save




Wednesday, July 8, 2009

How to connect microsoft outlook data file

Sorry folks I was quite bussy, writing this blog after a while. This article is about setting data file of microsoft outlook after a fresh installation or after moving to other computer. I will be going through it quickly hopefully its informative.


Step 1
Open your Microsoft Outlook . Skip the new account setup.




STEP 2

go to tools >> options







STEP 3
Click Data files under Mail Setup





STEP 4
go to the path of data file and click ok

Congralutations you are done uploading now set it to default using the same window.
If you have more than 1 file follow the same procedure.
if u want the default file to be deleted it will be done using the same procedure.
YEP ITS SO SIMPLE



Sunday, July 5, 2009

Display multiple clocks

With huge popularity of social websites there is huge possibility that you have found some friends which are spread across the planet? With Windows Vista, you can display up to 3 clocks, each representing a different time zone. You know immediately what time is in your friend's country. This can help you to know in what time you can contact your friend. Of course these clocks can also have other purpose but this with social website was a simple example. To display multiple clocks in windows vista fallow steps below:

1. In Windows Vista, click the clock in the notification area, right of the taskbar.
2. The clock and a complete schedule appear. Click Change settings of the date and time.
3. Open Additional Clocks tab.
4. Then check the Show this clock, select a new time zone and then give a name to the clock.
5. You can then repeat the operation for a third clock. Click OK when you are finished.
6. Now when you spend a few moments with mouse pointer on the clock your other clocks will be displayed.
7. The time your friends will also be displayed after double clicking the clock

Ready Boost for windows Vista

What is ReadyBoost and what is SuperFetch?Microsoft introduces, using Windows, these new techniques, which have to speed up your computer which is used for daily usage.
How do these technologies work?Do you really get a super system when you extend the memory using a USB stick?The memory in computers increased dramatically since a few years ago. This is logical because there is nothing what makes a computer more stable and faster than extra memory. Microsoft wants to use that new memory maximum and equipped Windows Vista with a few techniques which have to take care of this.
The memory manager of Windows Vista can change the grouping of the memory any time, which decreases the chance of overloading a part of the memory. Microsoft calls this 'dynamic kernel address space'.
The possibility to assign memory dynamically is also used to decide which data have to be loaded into the memory and which data is mend for the virtual memory. Previous version of Microsft windows did not make any difference between data which is used much and which is used less. Windows Vista does it on another way. SuperFetch doesn't look at the data which is unused the longest, but it predicts which data will be needed as first again and keeps this data stored in the memory.If there will be any free space in the RAM-memory then SuperFetch will fill these spaces with the data of which it predicts it will be needed as first again.

Saturday, May 2, 2009

Hibernate in windows vista

How to hybernate in windows Vista. Yeh it was a good option in widows xp. we can hybernate windows xp and wow it was fast. Where did that option goes in vista. Well it is quite simple. No need to waste time to search option to hybernate or activate it just by going in registeries. VISTA merged the hibernation with sleep . Yeh its true try doing it and it works as hibernate does

Thursday, April 23, 2009

ajax Lightbox2.03a /Lightwindow

Dear fellows this is the topic for programmers as its not an operating system topic. Most of the programmers are familiar with the Ajax. The net is full of ajax scripts help topic for Php but for asp classic and asp.net its not easily available.
What is ajax?

Asynchronous JavaScript and XML is a way of programming for the Web that gets rid of the hourglass. Data, content, and design are merged together into a seamless whole. When your customer clicks on something on an Ajax driven application, there is very little lag time. The page simply displays what they're asking for.

Ajax helps reducing time and also helps in presentation stuff in a cool way.

Ajax is a new way of looking at technology that is already mature and stable


Where ajax can be used?

Ajax can be used any where for registration. Login form Displaying images, Contents Etc.

Ajax is freely available on url and can be included in any page for required operations.

Monday, April 20, 2009

What is tunnel adapter how to disable















WHAT IS TUNNEL ADAPTER
hello fellows i am back again. Every one asking what is tunnel adapter. when they type ipconfig in cmd it shows a list of adapters have a look
Microsoft Windows [Version 6.0.6000]Copyright (c) 2006 Microsoft Corporation. All rights reserved.
C:\>ipconfig
Windows IP Configuration
Wireless LAN adapter Wireless Network Connection:
Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . :
Tunnel adapter Local Area Connection* 7:
Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . :
Tunnel adapter Local Area Connection* 11:
Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . :
Tunnel adapter Local Area Connection* 12:
Media State . . . . . . . . . . . : Media disconnected Connection-specific DNS Suffix . :
C:\>

(these above lines are taken from cmd window.) The first is common wireless LAN yeh i got a wireless cardbut what about other 3 tunnel adapters. Well thats a technique used to secure communications across the network. Tunnel adapter is a technique to share data in ipv6 technology. Most of us get familiar with it in vista window. Also tunnling is used in virtual machines to communicate between 2 Operating systems.knowning they are no harm to the system i myself didnt liked those laying there so i worked over it and found it to remove there leaves a neat& clean window.



HOW TO DISABLE THEM
how to disable them is too easy dont worry i am not going to make you go to that black white screen just few clicks and its done. As its always under the nose and no 1 notices.






Right click on my computer then click manage click device manager go to view and enable hidden devices







under network adapter disable tredo tunnel adapter by right clicking and disabling iti also disabled wan port for v6 and also wan port for pppoe and l2tp and 6to4
easy isnt it

Saturday, April 11, 2009

Global.asa,Global.asax and IIS7 in vista

I searched a lot over the internet and found every where that global.asa and global.asax not working over vista iis7. At few places it was mentioned that 1 need to write a script in IIS to make it work. I had never done scripting for iis didnt knew how to do it. I thought i might trying it for myself to see what issues are there. So i installed the iis7 .(IIS is not available in vista home basic) most of us also confuse that thing. I created a virtual directory under "Default Web Site". every 1 know that u need the directory independently to make asa or asax work so i converted that in application by simply right clicking on the site name in iis manager. then i just pressed browse and it worked wow. Wasnt it easy ? if its that easy then why there are so many forums that global .asa and asax not trigring. It seems like there must be some coding error in global.asahere is a view of my global.asa
If mine is working then hopefully yours will work too there seems no issue with the global.asa file.

Friday, April 10, 2009

Extended Partition

well fellows i came across a strange thing. how to make extended partition in vista? Is there any option? Are extended option removed?
The answer for these questions are still there are extended partition and they are required to create logical partitions. now a question arose how to create extended partation if they exist. in disk manager i couldnt find extended partition information as it created primary and logical drives. but still the old black screen with white text works. There is a command "diskpart" it will allow user to create the extended partation. i knew most of user hate to work in DOS as its not user friendly. well if you think its not easy to use you can use third party partition softwares they are available i use partition magic its nice with graphics looks and easy to use. dont worry i found it from microsoft site they also allowed the usage of 3rdpart partation softwares.

Thursday, April 9, 2009

Windows Vista

,
Many people still wonder what is window Vista . At last i managed to find a licensed Vista version to test it. In a asian countries pirated windows are pretty common but finding a pirated Vista is not easy. Well what i experienced is xp was far better than vista in terms of user friendlness. As in Vista the window is more dependent on the operator for every decision. An old user can easily be irritated when it asks to allow that program to run or not and similar activities. Also 1 common activity we perform is over writing the contents of a folder well in xp u just have to tell once to overright everything in the folder but in vista it groups similar files and asks again and again to for user decision to overright them or not. Getting a license window is also benifical to know about latest updates i will also give 4/10 points for the update procedure Vista is using. It downloads the updated and waits when gets shutdown. While on the way to turn off it starts installing those updates. Isnt it hactis , i mean if someone is in a hurry need to attend a meeting already late and wating for the window to shut down and updates are not allowing as even they take some time more than 20 Mints?
Graphically Vista is cool i will give 8/10 still there are always chances of improvement.
A common function everyone need to use is network enabling and disabling. If some 1 got more than 1 network adapters how can you switch it on or off . For some people its a mistory as its now been placed user some other options in control pannel. In a standard Vista look controlpannel click "view Network status and tasks" Under "Network and Internet" Now if you view to you left side there is a link on top fifth row "Manager Network Connections" Click it. Isnt it the window you were looking for?
here is a picture of that also

What will be in this blog

i am a computer geek will update this place with my researches and the knowlesge i got