exchange-2003

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

powershell exchange 2003 quest : is there a way to query activesyncenabled?

Using quest powershell on a Windows 2003 Server running Exchange 2003, is there a way to query a user's activesync or oma is enabled or disabled? EDIT: This is arguably a duplicate of your own question from Dec. 3, 2008. ...

How should I go about getting and processing an (Exchange) email attachment?

I need to get a zip file from an email attachment, unzip it and copy it somewhere. What would be the way I should go about it? I'm currently googling around things like 'Exchange API' and 'processing email attachments' and kind of hoping this kind of thing has been done before. The environment will be Windows and Exchange 2003, and an...

Convert HTML to Plain Text?

Hi, I am able to read emails in from Microsoft Exchange using an IMAP Client from Lumisoft. I have set the exchange server settings to convert any mail to plain text. However, when I read in the information it still seems to contain HTML/CSS. What is the best way of removing HTML/CSS from the body of an email? Or is there a setting on ...

How to stop Exchange from automatically converting plain text emails to HTML?

I've set up an Exchange 2003 mailbox for emails that will be parsed by my code. The emails are sent as plain text and my code expects to receive them as plain text. However, it appears that Exchange is automatically converting them to HTML. How do I stop it from doing that and just receive the email the way it was sent? The reason I bel...

How to set mailbox delegates in Exchange 2003

I am trying to implement a small windows application in C#.NET which will allow user to quickly set mailbox delegate rights. I am thinking of seperating this from Outlook, so I want to do it directly with exchange server. The exchange server version I am using is 2003. I have done hours of Google search on it and found CDO, CDOEX, can no...

Accessing contact's custom properties in a Outlook 2007 form region

We have added a form region to contact details form where there are some winform controls which we have data bound to contact custom properties. There is a separate app which creates contacts in exchange server (2003) for different mailboxes using Web Dav protocol. While creating the contact it creates these custom properties also. When ...

Differences between Exchange 2003 Web Services and Exchange 2007 web services

We have Exchange integration into our CRM (diaries and email); we have done this through CRL functions in our SQL 2008 server which handle all the authentication and communication with Exchange 2007 web services. The CLR then presents the functions to developers in SQL Server as regular functions and stored procedures which makes coding ...

What *is* an IPM.DistList?

I'm trying to get the recipient addresses within an IPM.DistList that is stored in a public folder (of type contacts) in Exchange 2003. The typeName of the object (once I get hold of it) is a Message (with a parent object being a Messages collection) and the messageType is "IPM.DistList". I can find all sorts of things about IPM.DistLi...

How to generate a UUID for Exchange - using WebDav for appointment creation

I have an web app that is creating appointments for clinicians within a EMR. The clinicians wanted a way to send the created appointments to their outlook calendars as a way to sync appointments to their Palms, Blackberries, etc. I am following this: http://msdn.microsoft.com/en-us/library/aa493903.aspx What I am running into is that ...

Getting the Outlook Out of Office flag with .NET

My company is using Exchange 2003. Is it possible to query exchange from .NET code to find out if someone's 'Out of Office' assisstant is on or off? ...

Exchange 2003 - which API to use to find out room/resource availability?

I need to expose room availability information from a web service that will be consumed by a number of other applications. The availability information is stored within Exchange 2003, and can be viewed using Outlook 2003/2007 today. What API or Web Service (if available) should I be using to get to this information? I imagine that I cou...

securing Exchange 2003 Server on IIS 6.0

I've done the requisite google search, but it come up surprisingly empty-handed. Are there any "you've just gotta do that" steps that a novice IIS administrator (and novice exchange administrator, for that matter) should take when securing an Exchange server? ...

List of email address to public folders in exchange

How do i get a list of all e-mail address for exchange public folders? Will reply on my own, will accept the best reply offered. ...

WebDAV Date Range query

Hi, Im trying to access and extract message from Exchange Server 2003. I need to get them by dates but im having problem with it. Here's the code lsQuery = "<?xml version=\"1.0\"?>" + "<D:searchrequest xmlns:D = \"DAV:\" xmlns:m=\"urn:schemas:httpmail:\">" + "<D:sql>SELECT \"ur...

Exchange 2003 scripting. Need to find emails from mailbox between particular dates

Hi , I am looking for VBscript for searching through a set of mail boxes on an exchg 2003 server. I could get through to the point of finding the message count. How can i loop through all the mails of mailbox? What object to use? Regards Richard J P.S. i have got all the necessary access rights to the mailboxes ...

Whats the best way to Programmatically Process New Email Messages and Store Attachments

I have several clients/vendors that distribute reports to me via email. Some of these files are enormous, and need to be removed from email and saved on a file share for processing, as well as to control mailbox size. Can anyone provide guidance on their recommended method of automatically downloading and saving attachments. I am in a...

How can I monitor the Exchange 2003 Event Service from my application?

We had our server guys set up something on Exchange so that for a particular email address, any attachments sent to it will be dumped to a location on the file server. The Exchange Event Service controls this behaviour, but it seems that this particular service fails fairly often. I dont know why - I dont have access to the Exchange se...

MS Exchange Server 2003: any good scripting tutorial?

Hello. I need to write a script for MS Exchange Server 2003 that will analyze incoming emails and put some of them into a specific mailbox. Of course it's a lot of information about Exchange Server scripting at MSDN, but amount of information there is very huge. Is it some simple tutorials available that will describe how to install a s...

Use of WebDAV to access OWA (exchange 2003) mails with Basic authentication and SSL

I have got a working C# code for accessing OWA mails using WebDAV against a FBA enabled exchange 2003 (http://support.microsoft.com/kb/891748/en-us/) But my client's OWA (exchange 2003) has Basic authentication and SSL (i-e when I try to access the web mail link through browser I get a grey login box instead of a web page I can log into...