HiOutlook 2003 profile can be configured using the "importprf" switchyou need |
Henr posted on Tuesday, May 29, 2007 11:54 AM
|
Hi
Outlook 2003 profile can be configured using the "importprf" switch
you need a prf file that conatins the Exchange settings.
when creating mailboxes using powershell you could send the initial mail
also using powershell
Henry |
 |
|
Thanks Henry, is it possible to give some idea on importprf & powershell... |
Amodiam posted on Thursday, May 31, 2007 4:46 AM
|
Thanks Henry,
is it possible to give some idea on importprf & powershell...
I am searching on the microsoft and google... given in little complicated way
how to configure both...
Regards
Amodiamm |
 |
|
Automate email for newly created mailbox on exchange |
Henr posted on Friday, June 01, 2007 2:07 PM
|
Hi
to create thr prf file follow this link
http://support.microsoft.com/kb/308300/el
when you have finished creating the prf file simple start "outlook.exe
/importprf <yourPRFFile.prf>"
to send a mail using powershell
$emailFrom = "sentFrom@Domain.com"
$emailTo = "sentTo@Domain.com"
$subject = "Powershell"
$body = "Somebody has sent a mail using Powershell."
$smtpServer = "yourMailserver"
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
$smtp.Send($emailFrom,$emailTo,$subject,$body)
hope that helps
Henry |
 |
|
Hi Henry,On a topic similar to this one, would you know how to implement such |
AlanSebastia posted on Thursday, June 07, 2007 5:06 PM
|
Hi Henry,
On a topic similar to this one, would you know how to implement such an
automated email for active directory users that are created? I've thought
about sending to a pre-gathered list of users created each day but it would
be nice to automate and have an email sent out immediately after a new
account has been created.
Regards,
Alan |
 |
|
Exchange 2007 |
Rasha B posted on Monday, January 26, 2009 7:54 AM
|
yes i am almost having the same concern the we are having exchange 2007 and using outlook 2003& 2007.
i need something to help so upon creation for new user in Active Directory so automatic email to this new user and this there is nothing support this request in exchange 2007.
so any script or support or solution to work around and make it happen?
thanks. |
 |
|