this makes a contact in the default contacts folder:

code:
$olApp = CreateObject("Outlook.Application")
$olItem = $olApp.CreateItem(2)

$olItem.FullName = "James Smith"
$olItem.Birthday = "9/15/1975"
$olItem.CompanyName = "Microsoft"
$olItem.HomeTelephoneNumber = "704-555-8888"
$olItem.Email1Address = "someone@@microsoft.com"
$olItem.JobTitle = "Developer"
$olItem.HomeAddress = "111 Main St." +@crlf+ "Charlotte, NC 28226"

$olItem.Save

_________________________
How to ask questions the smart way <-----------> Before you ask