Showing posts with label Microsoft. Show all posts
Showing posts with label Microsoft. Show all posts

Configure Windows XP to Automatically Login

 

How 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.

 

autologon

 

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.

Posted in Labels: , | 0 comments

Change the Registered Owner and Company Name in Windows [How-To]

Windows Vista Icon :: groovyPost.com

When 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.

Posted in Labels: , | 4 comments

Microsoft to Acquire Skype

REDMOND, Wash., and LUXEMBOURG – May 10, 2011 – Microsoft Corp. (Nasdaq: “MSFT”) and Skype Global S.à r.l today announced that they have entered into a definitive agreement under which Microsoft will acquire Skype, the leading Internet communications company, for $8.5 billion in cash from the investor group led by Silver Lake. The agreement has been approved by the boards of directors of both Microsoft and Skype.

The acquisition will increase the accessibility of real-time video and voice communications, bringing benefits to both consumers and enterprise users and generating significant new business and revenue opportunities. The combination will extend Skype’s world-class brand and the reach of its networked platform, while enhancing Microsoft’s existing portfolio of real-time communications products and services.

With 170 million connected users and over 207 billion minutes of voice and video conversations in 2010, Skype has been a pioneer in creating rich, meaningful connections among friends, families and business colleagues globally. Microsoft has a long-standing focus and investment in real-time communications across its various platforms, including Lync (which saw 30 percent revenue growth in Q3), Outlook, Messenger, Hotmail and Xbox LIVE.

Skype will support Microsoft devices like Xbox and Kinect, Windows Phone and a wide array of Windows devices, and Microsoft will connect Skype users with Lync, Outlook, Xbox Live and other communities. Microsoft will continue to invest in and support Skype clients on non-Microsoft platforms.

“Skype is a phenomenal service that is loved by millions of people around the world,” said Microsoft CEO Steve Ballmer. “Together we will create the future of real-time communications so people can easily stay connected to family, friends, clients and colleagues anywhere in the world.”


Posted in Labels: , , | 0 comments

How to convert a numeric value into English words in Excel


From Microsoft Support


This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure. However, they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.

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)

Posted in Labels: , | 0 comments

Thousands of Hotmail Msn Live.com Email accounts Exposed !

It has now been confirmed that the usernames and passwords of more than 10,000 Hotmail users were posted online last week to a website for sharing code snippets .

According 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

Vast numbers of networks have been shut down due to the forwarding hoax emails causing traffic to block up. No offense intended - it's in our nature to be optimistic, and wanting to believe what people say comes with that. Falling for 'pranks', 'hoaxes', etc. happens to the best of us.

But 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

(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

Posted in Labels: , | 0 comments

Verizon Data Breach Investigation: The numbers say PCI IS important

The 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

Related Posts Plugin for WordPress, Blogger...