MsExchange Blog Spot Telnet25

June 27, 2009

OWA Exchange 2010 New look and Futures

Filed under: General (1) — telnet25 @ 9:10 pm

Each version of exchange OWA seems to be improving and new futures added in Exchange 2010 seems to be, right on the spot. Beside its neat look and easy interface lets look at some of the improvements in OWA 2010.

Users can perform basic search to e-mail they have sent this will give extra information to user , what happen to their e-mails. For instance I can search e-mails I sent to certain e-mail addresses

image

I am going to search for E-mail I sent to “telnet25@Gmail.com

image

here is the output from search

image

I can click on delivery report to see what happen to my e-mail

image

As you see in the details there are dates showing message is sent successfully to the recipient…..

I think the future is pretty need and intend to give more information to the user in regards to their e-mail and hopefully this might cut off some of the help desk calls

Another Neat future is improvement GALMODE (-:, remember that from exchange 5.5, users are having ability to change their own personal information.

under account settings here is where you can change the personal information

image

Beside this users can also create Groups and invite others to be member for the gorups they own.

 

image

Real smart futures and very useful in my opinion, Exchange team seems to have done great job by making it east to navigate and took more task off the helpdesk and give it to user…….

What is new in Exchange 2010

image

Oz Casey Dedeal

MVP (Exchange)
MCITP (EMA), MCITP (SA)
MCSE 2003, M+, S+, MCDST
Security+, Project +, Server +

Http://smtp25.blogspot.com (Blog)

Https://telnet25.spaces.live.com (Blog)

Https://telnet25.worldpress.com (Blog)

Send Mail With Attachment Using PowerGUI

Filed under: General (1) — telnet25 @ 3:11 am

Here is another nice PS script made by PowerGUI and this script will sent “ attachment” along with the e-mail. You can imagine where we will be using this script, all scripts we have created within the PowerGUI can be integrated with this script and we can automatically sent attachments.

Click here to download

image

#Send mail with attachment Script by Oz Casey Dedeal
#Send mail with attachment Script
#Created with PowerGUI
#I cannot thank enough to PowerGUI, it is life saver (-:
#If you want your hands get dirty go download PG from www.powergui.org
# This PS Script is worked by Oz Casey Dedeal all Credits goes to PowerGUI (-:
#Send an email
$FromAddress = "report@telnet25.org"
$ToAddress = "odedeal@telnet25.org"
$MessageSubject = "Mailbox Size Report"
$MessageBody = "Please see the Mailbox report"
# Mail2 is my Relay Server, Change this to your own Relay Server
# Make sure port 25 is open, there is no firewall turned on, might me blocking port 25, if you are not going to run this from relay server itself
$SendingServer = "Mail2"
$SMTPMessage = New-Object System.Net.Mail.MailMessage $FromAddress, $ToAddress, $MessageSubject, $MessageBody
# Make sure this directory is Valid, I used C drive and created folder called Report from my workstation
$Attachment = New-Object Net.Mail.Attachment("c:\Report\report.csv")
$SMTPMessage.Attachments.Add($Attachment)
$SMTPClient = New-Object System.Net.Mail.SMTPClient $SendingServer
$SMTPClient.Send($SMTPMessage)
# now mail is sent check your mailbox

  • You can also copy and paste the script included above table
  • Make sure port 25 is open if you are going to be using your workstation
  • Make sure from your workstation , relay is allowed to the relay server
  • Make sure you can resolve the name of the relay server
  • Make sure you created the folder on your C Drive ( change this as you wish)

image

image

Oz Casey Dedeal

MVP (Exchange)
MCITP (EMA), MCITP (SA)
MCSE 2003, M+, S+, MCDST
Security+, Project +, Server +

Http://smtp25.blogspot.com (Blog)

Https://telnet25.spaces.live.com (Blog)

Https://telnet25.worldpress.com (Blog)

Blog at WordPress.com.