exchange

Exchange contacts export

I am looking for a way to export contacts (address book) from the users's profiles on Exchange (Exchange 2003 Enterprise Ed). I want to be able to selected users for export or export everyone's contacts. Thanks!! ...

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...

LDAP: why would the following use of DirectoryEntry return no members for a large global security group?

The following code works for 90+ % of global security groups, but for one very large global security group, it returns an enumerator, but no member objects of the group, even though the group has many thousands. DirectoryEntry group = groupResult.GetDirectoryEntry(); filter = "member;range=0-20"; group.RefreshCache(new[] { filter }); Pr...

Add appointment to calendar through Exchange programatically

How can I add an item to a users calendar programatically through the Exchange 2003 Information Store. I need to know the interface or connector to research. I have full Exchange rights and want to be able to automate assigning appointments without the end users interaction or login. I know this is possible as I have a 3rd party enterp...

Communicating with Exchange in .NET

I would like to use Exchange e-mail groups as an authentication scheme for an internal app. IE, if a user is in a certain mailing group, they are allowed in. Any pointers on where to look for information with talking with Exchange from .NET? EDIT: Exchange 2003. ...

Emailing MS Reporting Services 2005 Reports as if from a specific address

We have various reporting services reports which are scheduled to automatically generate reports and email them to a distribution list. This works really well but they appear to come from [email protected]. This is all well and good but the PHB would like them to look like they are coming from [email protected]. We've got a g...

Using MAPI w/ C++, how can I open another user's Inbox?

I'm looking to write an automated monitor script to programmatically retrieve information from another user's Exchange 2003 inbox. I have working C++ code to log into MAPI and connect to my own inbox. I can also use the Control Panel->Mail applet to configure another user's mailbox into my profile, and my code can access that way. How...

Transfer mail to other mail box

I am working on an application where i need to transfer mails from a mailbox to anoter one.I can not send these mails using smtp because this willchange the header information .I am using C# and out look api to process mails . is thre any way i can transfer mails to other mail box without changing mail header. ...

Creating large amount of mailboxes on Exchange 2003

I've got around 750+ users that I'm going to create mailboxes for. Should I sleep for a bit between creates to not overload the exchange server or does it not matter? I've read that the actual mailbox is not created until the user accesses it or they get mail. I'm using CDOEXM and DirectoryServices in .NET 2.0. Imports System.DirectoryS...

What is the best way to get started using MAPI?

I've been spending some time hacking away at MAPI for the purpose of creating tools for process automation on both server and client. Most of the resources I read online are either short on details and/or examples or full of conflicting information compared to other sources. Assuming I have an understanding of C++, COM and .NET, what p...

Using HTML Mime Mail for PHP to send email, but need to authenticate through Exchange server

First off, the server: Exchange 2003 sp2 running on Windows 2003 Server sp2 I have a script that sends email to two email accounts, one called students@ and the other being fs@ (faculty/staff). We are setting both those email accounts to only accept incoming email by authenticated users on the exchange server, to spare ourselves from sp...

How to return a user's unread mail count from an Exchange inbox?

Hi, I am involved in writing a little internal SharePoint portal for our company. I thought it would be a 'quick win' to get create a web part that would display the user's unread mail count, and possibly a list of today's calendar tasks. However, I have had a hunt around for information to do with OWA web services stuff and I can see ...

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...

Is Catalyst+Mason+Template::Toolkit worth learning rather than sticking to LAMP+Axkit?

hi, Currently i'm using pretty much Unix + Mysql + Perl + Apache with some javascript to make it more ajax like. and i've been looking at sites which are web 2.0 and stackoverflow and really like the simple design and the smooth flow from pages and action, etc. i'm trying to decide if learning catalyst, mason and the likes are going to ...

Retrieve Contacts from Microsoft Exchange Server 2003

How to retrieve contacts from Microsoft Exchange Server 2003 using .net? ...

Extracting data from an email message (or several thousand emails) [Exchange based]

My marketing department, bless them, has decided to make a sweepstakes where people enter over a webpage. That is great but the information isn't stored to a DB of any sort but is sent to an exchange mail box as an email. Great. My challenge is to extract the entry (and marketing info) from these emails and store them someplace more u...

Integrating Oulook/Exchange Tasks with Linux-based Rails

Is it possible to integrate MS Outlook/Exchange tasks with Rails? I know how to send emails with Rails, but that isn't using anything "special" about exchange, just pointing it at the server. What is "special" about an Outlook Task and how I can I create/read/update/delete them from Rails. (Even a subset of CRUD would be great.) PS. I ...

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 ...

exchange powershell : get-mailbox outside default scope

how do you run the cmdlet "get-mailbox" outside the current default scope of the current domain? When I run get-mailbox -OrganizationalUnit bob.com/bobsage I get an error message saying: Get-mailbox: The requested search root 'rss.com/rsstoilet' is not in the current default scope 'ens.com'. Cannot perform searches outside the current d...

ldap vbscript : msExchOmaAdminWirelessEnable is randomly missing on different accounts

In my script: Function getDescript (strname, uname) Set MyUser = GetObject ("LDAP://cn=" & uname & ",ou=" & strname & ",DC=tms-1,DC=net") getDescript = myUser.Get("msExchOmaAdminWirelessEnable") End Function uname = "Bob Gardner" strname = "bgConsultants" WScript.Echo "wireless enable: " & getDescript(strname, uname) I have n...