Configure Windows XP to Automatically Login
Posted On Wednesday, February 8, 2012 at at 10:28 AM by OwnerHow to Remove Windows XP Login Password
After downloading fixes from Windows Updates page or via Automatic Updates, you may notice that Windows XP no longer logs into your account automatically. This is usually caused after the installation of .NET Framework from Microsoft. It creates an additional user account called ASP.NET, which you can see in the Control Panel User Accounts applet. But, you neither need to remove this update nor delete this account. You can still configure Windows XP to automatically login using this method.
If you want to enable or disable the prompt to type a username and password to get into Windows you can follow these steps.
1. Click Start and select Run.
2. Type control userpasswords2
3. Select the user you would like to use every time you login.
4. Uncheck or the box that says Users must enter a user name and password to use this computer to disable password screen and allow Windows to automatically login and bring users to the main screen. Check the box to enable username and password protection.
Change the Registered Owner and Company Name in Windows [How-To]
Posted On Saturday, December 17, 2011 at at 10:16 AM by OwnerWhen installing Windows 7, Windows Vista or Windows XP for the first time, you should have been prompted to enter an Owner Name and Organization / Company name. Normally there’s never a need to change these settings however what if you entered in a typo or, what if your not the original owner and you want to change this information?
For instance, if you open up pretty much any application that comes with Windows and Click Help, About. You will see the Registered Owner and Organization Name.
Again, although not a big deal… just follow below….
So, unfortunately Windows 7, XP and Windows Vista doesn’t have an easy way to resolve this, however by following this How-To Tutorial, we can have you fixed up in just a few minutes.
Please note that before we start, the windows registry is very sensitive and you can easily make your computer inoperable if you don’t know what you are doing. That’s what this guide is here for!
1. To start, Click the Start Menu icon. Then Type in Regedit and Press Enter. The regedit program should appear above, Click Regedit to open it.
Note – Although the steps shown are for Windows 7 and Windows Vista, the process is the same for Windows XP. Just Click – Start, Run and type Regedit to open the Windows Registry Editor
2. The User Account Control will pop up, click Continue unless you have previous Disabled the Windows Vista UAC
3. Now that the registry is open, Navigate to to the following key location in the Tree Navigation Menu
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion
4. The two key entries to Modify are RegisteredOrganization and RegisterdOwner. To change them simply Double Click each entry to open the key editor and then Type your new name. To save changes click OK.
You can now close the Registry Editor if you are finished.
Microsoft to Acquire Skype
Posted On Monday, May 16, 2011 at at 5:08 PM by OwnerHow to convert a numeric value into English words in Excel
Posted On Monday, April 18, 2011 at at 12:31 PM by OwnerFrom Microsoft Support
How to create the sample function Called SpellNumber
1. Start Microsoft Excel.
2. Press ALT+F11 to start the Visual Basic Editor.
3. On the Insert menu, click Module.
4. Type the following code into the module sheet.
------------------------Copy after this line----------------
Option Explicit
'Main Function
Function SpellNumber(ByVal MyNumber)
Dim Rupees, Paisas, 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 Paisas and set MyNumber to dollar amount.
If DecimalPlace > 0 Then
Paisas = 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 Rupees = Temp & Place(Count) & Rupees
If Len(MyNumber) > 3 Then
MyNumber = Left(MyNumber, Len(MyNumber) - 3)
Else
MyNumber = ""
End If
Count = Count + 1
Loop
Select Case Rupees
Case ""
Rupees = "No Rupees"
Case "One"
Rupees = "One Dollar"
Case Else
Rupees = Rupees & " Rupees"
End Select
Select Case Paisas
Case ""
Paisas = " and No Paisas"
Case "One"
Paisas = " and One Paisa"
Case Else
Paisas = " and " & Paisas & " Paisas"
End Select
SpellNumber = Rupees & Paisas
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
------------------------Copy before this line----------------How to use the SpellNumber sample function
To use the sample functions to change a number to written text, use one of the methods demonstrated in the following examples:
Method 1: Direct Entry
You can change 32.50 into "Thirty Two Rupees and Fifty Paisas" by entering the following formula into a cell:
=SpellNumber(32.50)
Method 2: Cell reference
You can refer to other cells in the workbook. For example, enter the number 32.50 into cell A1, and type the following formula into another cell:
=SpellNumber(A1)
Thousands of Hotmail Msn Live.com Email accounts Exposed !
Posted On Wednesday, October 7, 2009 at at 10:08 AM by OwnerAccording to news published on bbc website
Thousands of accounts on web-based e-mail system Hotmail have been compromised in a phishing attack, software giant Microsoft has confirmed.
BBC News has seen a list of more than 10,000 e-mail accounts, predominantly originating from Europe, and passwords which were posted online.
Microsoft said it had launched an investigation.
Phishing involves using fake websites to lure people into revealing details such as bank accounts or login names.
"We are aware that some Windows Live Hotmail customers' credentials were acquired illegally and exposed on a website," said a Microsoft spokesperson.
"Upon learning of the issue, we immediately requested that the credentials be removed and launched an investigation to determine the impact to customers."
Quick change
Graham Cluley, consultant at security firm Sophos, told BBC News the published list may just be a subset of a longer list of compromised accounts.
"We still don't know the scale of the problem," he told BBC News.
Technology blog neowin.net was the first to publish details of the attack. It said the accounts were posted on 1 October to pastebin.com, a website commonly used by developers to share code.
Although the details have since been removed, BBC News and Neowin has seen a list of 10,028 names beginning with the letters A and B.
BBC News has confirmed that the accounts are genuine and predominantly originate in Europe.
The list included details of Microsoft's Windows Live Hotmail accounts with email addresses ending hotmail.com, msn.com and live.com.
Mr Cluley advised Hotmail users to change their password as soon as possible.
"I'd also recommend that people change the password on any other site where they use it," he said.
Around 40% of people use the same password for every website they use, he added.
Hotmail is currently the largest web-based e-mail service.
It's Real Money - forwarded email
Posted On Wednesday, July 29, 2009 at at 10:49 AM by OwnerBut there is no way this is going to happen. Neither Microsoft nor AOL (or joint efforts) can track every email on the Internet. Whilst in theory, AOL would be able to track emails sent through their servers (and knowing their privacy practices - or rather, the lack there of - they may well), it is not possible for anyone one company to track every email floating around the Internet. If - and only if - one single body had an undisputed monopoly on mail servers with literally no other competition, then it might be possible. But as email passes through any given number of servers to reach its destination, it's impossible to track it unless it passes through a server operated by the tracker.
I would advise that you simply delete any emails that urge you to forward them on to others. If they are genuine, then they don't need to try and convince you to send them to other people. There are millions of 'chain' letters floating around - both in electronic and physical form - and they are usually started by someone who has little else to do and would like to see how far their hoax can spread. Any message following the line of 'Forward this to all your friends / x amount of people / everyone and something good will happen to you' are almost definately rubbish, and should be ignored. Helping them propagate is just helping the idiot who started it.
And now, onto the logic. Just pretend that part of the email was true, and Microsoft and AOL had teamed up to pay you money just because they have it (and, let's face it, they are known for their generosity and tendancies to throw all their money at people). Microsoft is obviously nothing short of an empire, and the Time/Warner/AOL group follows pretty closely. Being such enourmous and wealthy corporations, don't you think they would have ways of publicizing their events other than sending unsolicited email to random people, promising them that riches will follow if they help 'spread the word'?
WAMP Training
Posted On Thursday, June 18, 2009 at at 11:13 AM by Owner(Windows + Apache + Mysql +PHP)
As Pakistan Software Export Board suggest, IT industry is the fastest growing industry in Pakistan and development in Open Source (PHP/MYSQL) is the backbone of it.
To enhance the skills of fresh and working professionals in the field of PHP/ MYSQL, training is going to be conducted for 1 month from 22nd of June, 2009. This training will be focused on Basic to Advanced level PHP/MYSQL including Session Management, DBI, File Streams, Regular Expressions, Web Service architecture with implementation Focus. Detailed Course outline is attached herewith
Who Should Attend:
The course is aim for participants who have basic understanding of programming and database concepts.
Course Outcome:
After this course student should be able develop web based dynamic website which will be providing services or getting services from other service providers.
Location: R-56, DHA, Lahore
Resource Person:
Mr. Sheraz Pervaiz
· MS(Software Technology) – Germany
· BS(Computer Science) – Canada
· Teaching Experience: 7 Years.
· Contact: Email:sherazpervaiz @gmail.com
Fees: Rs. 7000 / per participant.
Contact #: 0321-4948860
Verizon Data Breach Investigation: The numbers say PCI IS important
Posted On Wednesday, April 15, 2009 at at 1:23 PM by OwnerThe 2009 Data Breach Investigation by Verizon is out, and I have to be honest, all I’ve had time to read so far has been pages 41-43. Why those pages? Because they’re the pages that specifically call out the statistics surrounding breaches affecting merchants who are (or should be) complying with the Payment Card Industry Data Security Standards (PCI DSS). Not at all surprising, at least to me, is that the study found that PCI compliance is important and that 81% of the companies researched in this report weren’t PCI compliant at the time of the breach. Of course, that also means that 19% of the companies breached had either self-assessed or been assessed by a QSA and were thought to be compliant at the time of the breach.
Read Full Article

