dosperados, попробуйте так:
Код:

$oOutlook = New-Object -ComObject Outlook.Application
$oNameSpace = $oOutlook.GetNamespace("MAPI")
$oMAPIFolder = $oNameSpace.GetDefaultFolder(10)
try {
$oMyMAPIFolder = $oMAPIFolder.Folders.Item("Контакты моей компании")
} catch {
$oMyMAPIFolder = $oMAPIFolder.Folders.Add("Контакты моей компании")
}
$oContact = $oMyMAPIFolder.Items.Add(2)
$oContact.LastName = "Test_LastName"
$oContact.Email1Address = "test@email.ru"
$oContact.CompanyName = "Моя комания"
$oContact.Department = "test_Department"
$oContact.BusinessHomePage = "http://company.com/"
$oContact.Mileage = "1"
$oContact.Save()