exchange2007

Import Sql Server data into Exchange 2007

Whats the best way to import data from SQL Server 2005 into Exchange 2007? I have seen references to xp_sql2exchange but the companies website has been down for several weeks so Im unable to download the stored procedure. Interested in 3rd party solutions as well if it makes the job easier. ...

powershell : how to query AD and exchange mailbox sizes

I just recently found out that exchange server2007 will no longer be supporting WMI, namely the service which uses \ROOT\MicrosoftExchangeV2. The old script I wrote output the ServerName, StorageGroupName, Storename, MailboxDisplayName, Size, TotalItems, DeletedMessageSizeExtended fields to a csv text file. How would I go about doing...

exchange powershell : get-user has no Description property? (solved)

When I run get-user|get-member in powershell with the exchange add-in I noticed there is no description property. Does anyone know if it has been renamed to something else or another way of accessing it? ...

exchange powershell : finding the active directory office property (solved)

I wrote this small script to pull the office property from get-user by piping the exchange mailbox object. $server = "tms08" $arrUser = get-mailbox -Server $server |Get-MailboxStatistics |select identity foreach ( $id in $arrUuser) { $office = get-user -Identity $id.Identity |select office $out += $id.Identity } $out I don't get any...

Is there a way to query who are activesync/bb users through Exchange PowerShell?

Is there a way to query against exchange 2007 to distinguish who is either an active sync or blackberry user using powershell exchange addin? ...

powershell exchange : how do you setup a scheduled task to run exchange2007 powershell? (solved)

I'm having trouble setting up a scheduled task (now called Task Scheduler) under the actions tab to run on windows 2007 server. It also has exchange server 2007. I've tried setting Program/script : C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe Add arguments (optional): -psconsolefile exshell.psc1 -command "& {c:\mes-detai...

Outlook 2007 wants password over HTTP. (Exchange 2007)

I have an Exchange 2007 configured with ActiveSync and RPC over HTTP. Here are the things that work: Outlook inside the network. Mobile devices. Outlook Web Access. Only thing that doesn't work is: Outlook outside of the network. Whenever, someone is outside of the network trying to access their email via Outlook, they get prom...

exchange powershell : parsing an array boolean value

In my output, I get @{ActiveSyncEnabled=False} how do I parse this so that it just says "False"? the output is coming from this line of code: $pda = get-casmailbox -Anr $user.displayname | select activesyncenabled ...

How do I send emails outside my domain with Exchange 2007 and c#

I am able to send emails using the typical C# SMTP code across Exchange 2007 as long as both the from and to addresses are within my domain. As soon as I try to send emails outside the domain I get: Exception Details: System.Net.Mail.SmtpFailedRecipientException: Mailbox unavailable. The server response was: 5.7.1 Unable to relay How ...

Use Exchange Web Services to enumerate all the properties(mapi properties?) on a mail item

I'm trying to troublshoot a problem with some mail items in on an Exchange 2007 server. I've been able to determine there is something wrong with I think a reciepient property, but I'm not sure, so I'd like to just enumerate all the properties on a message on a bad one and compare it to a good one. I would also settle for a MAPI or Web...

Querying Exchange 2007 storage group/database details with Unmanaged C++

I have a program that's already in C++ which needs to query some information from Exchange 2007. What little information exists in Active Directory (or the Cluster Database) seems to be incorrectly documented, and while there are hints that parts of the information are in the registry, not all of the information we need is available. I ...

Exchange Server 2007 Web Services PHP Class

Does anyone know of an open source PHP class (preferably BSD or MIT license) that will interface with the MS Exchange Server 2007 Web Services via. SOAP? I am looking for a higher level class that has functionality for sending messages via. the web service. ...

How can I send local Email by using exchange with asp.net?

I have a project that need to sends notification for employees by local email. I use SmtpClient class to send email but didn't work! here is the code: MailMessage message = new MailMessage(); message.From = new MailAddress("[email protected]"); message.To.Add(new MailAddress("[email protected]")); message.Su...

how to read/update exchange 2007 calendars from MS Access

Hi, We have Exchange 2007 and have a need for quite complex group scheduling. Group scheduling is useless if the people invited do not see it in their Outlook Calendar of course. The data about when those appointments are to take place and who should be there live in an Excel or Access application. I bought the Microsoft book "Inside Mi...

Problem connecting to a Exchange 2007 server in PHP5 with imap_open.

When im trying to connect to an Exchange 2007 server over IMAP in PHP5 I get the following error message. Kerberos error: No credentials cache found (try running kinit) for smtp.domain01.net I was wondering if somebody found a way around this issue? Related info: http://bugs.php.net/bug.php?id=33500 ...

Getting "404 Not Found" when accessing Exchange 2007 mail store using WebDAV

I am trying to access the Exchange 2007 mail store programmatically using WebDAV. However, for some users I am getting the dreaded error "404 Not found". I am using a url similar to http://server/exchange/usermailbox/. It is working just fine for some users but not for others. What might I be doing wrong? ...

Programmatically Verify an email message reached an exchange mail box

I have a job that runs which sends out emails to our users to which starts off a work flow process in our company. Periodically, a user will swear up and down that they didn't receive the email - though, when we go to the mail administrator to pull an exchange report, 10 times out of 10 it's in their deleted items. :P I'd like to be ab...

Exchange 2007 master category list

We are constructing an application that will be interacting with Exchange 2007 calendar functions. We will be using the Outlook Redemption Objects dll’s. Our design relies upon the outlook 2007 meeting Category features. We would like to ensure that specific mailboxes have a standard set of category names and colors. We can’t rely...

Cannot access a disposed object error on external class library call

Hi, I have a Windows Forms app that provisions user accounts in Exchange using Powershell and Exchange2007 cmdlets. There is only one form to this application that takes the information for the new user and then runs the Powershell commands. Like a good programmer, I just refactored the code and took all the Exchange and Active Director...

Is there an automated procedure to upload mails from Outlook/Outlook Express to Exchange 2007?

I'm moving an organization from pop3 accounts to Microsoft Exchange 2007, and I have to upload all the users mails (which are in, mostly, Outlook Express and a few Outlook) to their Exchange accounts. Anybody knows an automated or semi-automated procedure to upload all the mails and address books from Outlook Express and from a .pst fil...