RE: PS Script to notify when a queue exceeds limit

2011-01-10 Thread Michael B. Smith
Getting the number of messages in queues is trivial.

get-queue | select Identity, MessageCount

Sending a message differs somewhat depending on the version of Exchange 
(2007/2010). Which are you running?

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Sunday, January 09, 2011 1:24 AM
To: MS-Exchange Admin Issues
Subject: PS Script to notify when a queue exceeds limit

HI,
I am looking for a power shell script that can generates a mail and post it to 
admin when a mail queue (on Hub & Edge)exceeds a particular number.
Hope someone may have it.
Appreciate getting a help on the same.

Regards

Liby Philip Mathew



Disclaimer
[The information contained in this e-mail message and any attached files are 
confidential information and intended solely for the use of the individual or 
entity to whom they are addressed. This transmission may contain information 
that is privileged, confidential or exempt from disclosure under applicable 
law. If you have received this e-mail in error, please notify the sender 
immediately and delete all copies. If you are not the intended recipient, any 
disclosure, copying, distribution, or use of the information contained herein 
is STRICTLY PROHIBITED. Path Solutions accepts no responsibility for any 
errors, omissions, computer viruses and other defects.]

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: PS Script to notify when a queue exceeds limit

2011-01-10 Thread Liby Philip Mathew
Thanks Mike,
I am on E2K7 SP2.  I guess your query is in reference to Send-MailMessage 
cmd-let. If so, that part is taken care.
But I need to send a message only if a Q exceeds 20 mails with the Identity & 
MessageCount of the Q and schedule it as a task that runs every 30min or so.
Regards

Liby Philip Mathew

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, January 10, 2011 3:17 PM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

Getting the number of messages in queues is trivial.

get-queue | select Identity, MessageCount

Sending a message differs somewhat depending on the version of Exchange 
(2007/2010). Which are you running?

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Sunday, January 09, 2011 1:24 AM
To: MS-Exchange Admin Issues
Subject: PS Script to notify when a queue exceeds limit

HI,
I am looking for a power shell script that can generates a mail and post it to 
admin when a mail queue (on Hub & Edge)exceeds a particular number.
Hope someone may have it.
Appreciate getting a help on the same.

Regards

Liby Philip Mathew



Disclaimer
[The information contained in this e-mail message and any attached files are 
confidential information and intended solely for the use of the individual or 
entity to whom they are addressed. This transmission may contain information 
that is privileged, confidential or exempt from disclosure under applicable 
law. If you have received this e-mail in error, please notify the sender 
immediately and delete all copies. If you are not the intended recipient, any 
disclosure, copying, distribution, or use of the information contained herein 
is STRICTLY PROHIBITED. Path Solutions accepts no responsibility for any 
errors, omissions, computer viruses and other defects.]

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Mark Bartnik wants to stay in touch on LinkedIn

2011-01-10 Thread John Hornbuckle
All of us?



John Hornbuckle
MIS Department
Taylor County School District
www.taylor.k12.fl.us



From: messages-nore...@bounce.linkedin.com 
[mailto:messages-nore...@bounce.linkedin.com] On Behalf Of Mark Bartnik
Sent: Sunday, January 09, 2011 2:27 PM
To: MS-Exchange Admin Issues
Subject: Mark Bartnik wants to stay in touch on LinkedIn

LinkedIn

MS-Exchange,

I'd like to add you to my professional network on LinkedIn.

- Mark Bartnik
[http://media.linkedin.com/media/p/1/000/014/2d5/0414abe.jpg]

Mark Bartnik
Principle Consultant at JCS Computer
Greater Detroit Area


Confirm that you know 
Mark

© 2010, LinkedIn Corporation
[http://www.linkedin.com/emimp/j0t8fi-giqc52nx-2p.gif]

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist





NOTICE: Florida has a broad public records law. Most written communications to 
or from this entity are public records that will be disclosed to the public and 
the media upon request. E-mail communications may be subject to public 
disclosure.


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist


RE: PS Script to notify when a queue exceeds limit

2011-01-10 Thread Michael B. Smith
So...

Get-Queue |? { $_.MessageCount -gt 20 } |% { send-mailmessage 
-to ale...@whereever.com -subject "queue 
$($_.identity) too full ($($_.MessageCount))"

Put that into a BAT file and schedule the BAT file using task scheduler to run 
every 30 minutes.

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Monday, January 10, 2011 7:25 AM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

Thanks Mike,
I am on E2K7 SP2.  I guess your query is in reference to Send-MailMessage 
cmd-let. If so, that part is taken care.
But I need to send a message only if a Q exceeds 20 mails with the Identity & 
MessageCount of the Q and schedule it as a task that runs every 30min or so.
Regards

Liby Philip Mathew

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, January 10, 2011 3:17 PM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

Getting the number of messages in queues is trivial.

get-queue | select Identity, MessageCount

Sending a message differs somewhat depending on the version of Exchange 
(2007/2010). Which are you running?

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Sunday, January 09, 2011 1:24 AM
To: MS-Exchange Admin Issues
Subject: PS Script to notify when a queue exceeds limit

HI,
I am looking for a power shell script that can generates a mail and post it to 
admin when a mail queue (on Hub & Edge)exceeds a particular number.
Hope someone may have it.
Appreciate getting a help on the same.

Regards

Liby Philip Mathew



Disclaimer
[The information contained in this e-mail message and any attached files are 
confidential information and intended solely for the use of the individual or 
entity to whom they are addressed. This transmission may contain information 
that is privileged, confidential or exempt from disclosure under applicable 
law. If you have received this e-mail in error, please notify the sender 
immediately and delete all copies. If you are not the intended recipient, any 
disclosure, copying, distribution, or use of the information contained herein 
is STRICTLY PROHIBITED. Path Solutions accepts no responsibility for any 
errors, omissions, computer viruses and other defects.]

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: PS Script to notify when a queue exceeds limit

2011-01-10 Thread Liby Philip Mathew
Thanks Mike.
Got it done.
I need to learn power shell:(

Regards

Liby Philip Mathew | ICT Consultant
ICT Professional Services
Path Solutions
Tel: +965 24824600 Ext. 703
Fax: +965 24824500
www.path-solutions.com

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, January 10, 2011 4:11 PM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

So...

Get-Queue |? { $_.MessageCount -gt 20 } |% { send-mailmessage 
-to ale...@whereever.com -subject "queue 
$($_.identity) too full ($($_.MessageCount))"

Put that into a BAT file and schedule the BAT file using task scheduler to run 
every 30 minutes.

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Monday, January 10, 2011 7:25 AM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

Thanks Mike,
I am on E2K7 SP2.  I guess your query is in reference to Send-MailMessage 
cmd-let. If so, that part is taken care.
But I need to send a message only if a Q exceeds 20 mails with the Identity & 
MessageCount of the Q and schedule it as a task that runs every 30min or so.
Regards

Liby Philip Mathew

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, January 10, 2011 3:17 PM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

Getting the number of messages in queues is trivial.

get-queue | select Identity, MessageCount

Sending a message differs somewhat depending on the version of Exchange 
(2007/2010). Which are you running?

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Sunday, January 09, 2011 1:24 AM
To: MS-Exchange Admin Issues
Subject: PS Script to notify when a queue exceeds limit

HI,
I am looking for a power shell script that can generates a mail and post it to 
admin when a mail queue (on Hub & Edge)exceeds a particular number.
Hope someone may have it.
Appreciate getting a help on the same.

Regards

Liby Philip Mathew



Disclaimer
[The information contained in this e-mail message and any attached files are 
confidential information and intended solely for the use of the individual or 
entity to whom they are addressed. This transmission may contain information 
that is privileged, confidential or exempt from disclosure under applicable 
law. If you have received this e-mail in error, please notify the sender 
immediately and delete all copies. If you are not the intended recipient, any 
disclosure, copying, distribution, or use of the information contained herein 
is STRICTLY PROHIBITED. Path Solutions accepts no responsibility for any 
errors, omissions, computer viruses and other defects.]

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Mark Bartnik wants to stay in touch on LinkedIn

2011-01-10 Thread Matt Moore
Just say no to spam………;4)

 

From: John Hornbuckle [mailto:john.hornbuc...@taylor.k12.fl.us] 
Sent: Monday, January 10, 2011 4:52 AM
To: MS-Exchange Admin Issues
Subject: RE: Mark Bartnik wants to stay in touch on LinkedIn

 

All of us?

 

 

 

John Hornbuckle

MIS Department

Taylor County School District

www.taylor.k12.fl.us

 

 

 

From: messages-nore...@bounce.linkedin.com 
[mailto:messages-nore...@bounce.linkedin.com] On Behalf Of Mark Bartnik
Sent: Sunday, January 09, 2011 2:27 PM
To: MS-Exchange Admin Issues
Subject: Mark Bartnik wants to stay in touch on LinkedIn

 



LinkedIn


MS-Exchange,

I'd like to add you to my professional network on LinkedIn.

- Mark Bartnik 


   

Mark Bartnik
Principle Consultant at JCS Computer 
Greater Detroit Area 

 

 Confirm that you know Mark 

© 2010, LinkedIn Corporation

   

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

 

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

 
 
NOTICE: Florida has a broad public records law. Most written communications to 
or from this entity are public records that will be disclosed to the public and 
the media upon request. E-mail communications may be subject to public 
disclosure.
 
 

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Mark Bartnik wants to stay in touch on LinkedIn

2011-01-10 Thread Campbell, Rob
I heard pretty much everyone was leaving Detroit.  Must be getting lonesome.

From: John Hornbuckle [mailto:john.hornbuc...@taylor.k12.fl.us]
Sent: Monday, January 10, 2011 6:52 AM
To: MS-Exchange Admin Issues
Subject: RE: Mark Bartnik wants to stay in touch on LinkedIn

All of us?



John Hornbuckle
MIS Department
Taylor County School District
www.taylor.k12.fl.us



From: messages-nore...@bounce.linkedin.com 
[mailto:messages-nore...@bounce.linkedin.com] On Behalf Of Mark Bartnik
Sent: Sunday, January 09, 2011 2:27 PM
To: MS-Exchange Admin Issues
Subject: Mark Bartnik wants to stay in touch on LinkedIn

LinkedIn

MS-Exchange,

I'd like to add you to my professional network on LinkedIn.

- Mark Bartnik
[Image removed by sender.]

Mark Bartnik
Principle Consultant at JCS Computer
Greater Detroit Area


Confirm that you know 
Mark

© 2010, LinkedIn Corporation
[Image removed by sender.]

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist



---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist





NOTICE: Florida has a broad public records law. Most written communications to 
or from this entity are public records that will be disclosed to the public and 
the media upon request. E-mail communications may be subject to public 
disclosure.




**
Note: 
The information contained in this message may be privileged and confidential 
and 
protected from disclosure.  If the reader of this message is not the intended  
recipient, or an employee or agent responsible for delivering this message to  
the intended recipient, you are hereby notified that any dissemination,   
distribution or copying of this communication is strictly prohibited. If you  
have received this communication in error, please notify us immediately by  
replying to the message and deleting it from your computer. 
**

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist
<><>

Re: Email performance tool?

2011-01-10 Thread Matt Plahtinsky
@ Rob -  The server I need to monitor is SBS / Exchange 2003.  I don't know
enough about Power Shell to know if your script would work with Exchange
2003.  It sounds very cool though.

@ Michael -  Thanks for the links.  They appear to do what I need and I will
testing them out this week.


Thanks

Matt

On Fri, Jan 7, 2011 at 9:53 AM, Michael B. Smith wrote:

>  I use a similar tool. Thankfully, I have a server “in the cloud” where I
> can run those types of tests. Companies that offer this kind of service
> include:
>
>
>
> http://www2.catbird.com/our_services/email_s.shtml
>
> http://www.site24x7.com/mail-server-monitoring.html
>
>
>
> I have no affiliation with either. I have used Site24x7 before successfully
> (in pre-PowerShell days).
>
>
>
> Regards,
>
>
>
> Michael B. Smith
>
> Consultant and Exchange MVP
>
> http://TheEssentialExchange.com
>
>
>
> *From:* Campbell, Rob [mailto:rob_campb...@centraltechnology.net]
> *Sent:* Friday, January 07, 2011 9:37 AM
>
> *To:* MS-Exchange Admin Issues
> *Subject:* RE: Email performance tool?
>
>
>
> I did this using a powershell script and a scheduled task.
>
>
>
> About every half hour, the script would fire, and send an smtp email
> through an external smtp relay, with a timestamp in the subject line.  Then
> it would wait 5 minutes, and check the message tracking log to see if that
> message had been received, and could calculate how  long the round trip time
> was just from the Subject line.  All the information I needed was in the
> message tracking log, so I didn’t have to mess with opening a mailbox and
> looking for the email there, and I set a transport rule to discard the
> messages so I didn’t have to worry about them accumulating in a mailbox
> somewhere.
>
>
>
> Don’t know if that’s something that would work in your environment or not.
>
>
>
>
>
>
>
> *From:* Matt Plahtinsky [mailto:cbusitl...@gmail.com]
> *Sent:* Friday, January 07, 2011 7:47 AM
> *To:* MS-Exchange Admin Issues
> *Subject:* Email performance tool?
>
>
>
> I'm looking for tool (preferably free or cheap) that can do
> a specific email test and am not having any luck.  I was hoping someone
> could point me in the right direction.
>
>
>
> Here is what I need it to do. Send an email from an external account and
> then check to see how long it takes to be delivered to an internal
> exchange account.  If the email takes longer than 5 minutes I would like to
> be alerted.
>
>
>
> Thanks for any tips.
>
>
>
> Matt
>
>
>
>
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>
> **
>
> Note:
>
> The information contained in this message may be privileged and confidential 
> and
>
> protected from disclosure.  If the reader of this message is not the intended
>
> recipient, or an employee or agent responsible for delivering this message to
>
> the intended recipient, you are hereby notified that any dissemination,
>
> distribution or copying of this communication is strictly prohibited. If you
>
> have received this communication in error, please notify us immediately by
>
> replying to the message and deleting it from your computer.
>
> **
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Email performance tool?

2011-01-10 Thread Campbell, Rob
I'm don't believe it will work on Exchange 2003.

They changed the format of the message tracking logs radically between Exchange 
2003 and Exchange 2007, and I don't believe there's any way to get the Exchange 
cmdlets which first came out with E2K7 to work with those log formats.



From: Matt Plahtinsky [mailto:cbusitl...@gmail.com]
Sent: Monday, January 10, 2011 8:15 AM
To: MS-Exchange Admin Issues
Subject: Re: Email performance tool?

@ Rob -  The server I need to monitor is SBS / Exchange 2003.  I don't know 
enough about Power Shell to know if your script would work with Exchange 2003.  
It sounds very cool though.

@ Michael -  Thanks for the links.  They appear to do what I need and I will 
testing them out this week.


Thanks

Matt
On Fri, Jan 7, 2011 at 9:53 AM, Michael B. Smith 
mailto:mich...@smithcons.com>> wrote:
I use a similar tool. Thankfully, I have a server "in the cloud" where I can 
run those types of tests. Companies that offer this kind of service include:

http://www2.catbird.com/our_services/email_s.shtml
http://www.site24x7.com/mail-server-monitoring.html

I have no affiliation with either. I have used Site24x7 before successfully (in 
pre-PowerShell days).

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Campbell, Rob 
[mailto:rob_campb...@centraltechnology.net]
Sent: Friday, January 07, 2011 9:37 AM

To: MS-Exchange Admin Issues
Subject: RE: Email performance tool?

I did this using a powershell script and a scheduled task.

About every half hour, the script would fire, and send an smtp email through an 
external smtp relay, with a timestamp in the subject line.  Then it would wait 
5 minutes, and check the message tracking log to see if that message had been 
received, and could calculate how  long the round trip time was just from the 
Subject line.  All the information I needed was in the message tracking log, so 
I didn't have to mess with opening a mailbox and looking for the email there, 
and I set a transport rule to discard the messages so I didn't have to worry 
about them accumulating in a mailbox somewhere.

Don't know if that's something that would work in your environment or not.



From: Matt Plahtinsky [mailto:cbusitl...@gmail.com]
Sent: Friday, January 07, 2011 7:47 AM
To: MS-Exchange Admin Issues
Subject: Email performance tool?

I'm looking for tool (preferably free or cheap) that can do a specific email 
test and am not having any luck.  I was hoping someone could point me in the 
right direction.

Here is what I need it to do. Send an email from an external account and then 
check to see how long it takes to be delivered to an internal exchange account. 
 If the email takes longer than 5 minutes I would like to be alerted.

Thanks for any tips.

Matt



---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

**

Note:

The information contained in this message may be privileged and confidential and

protected from disclosure.  If the reader of this message is not the intended

recipient, or an employee or agent responsible for delivering this message to

the intended recipient, you are hereby notified that any dissemination,

distribution or copying of this communication is strictly prohibited. If you

have received this communication in error, please notify us immediately by

replying to the message and deleting it from your computer.

**

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist
**
Note: 
The information contained in this message may be privileged and confidential 
and 
protected from disclosure.  If the reader of this message is not the intended  
recipient, or an employee or agent responsible for delivering this message to  
the intended recipient, you are hereby notified that any dissemina

RE: PS Script to notify when a queue exceeds limit

2011-01-10 Thread Webster
MBS should write a quick blog entry on his recommendations for learning
PowerShell.  I bought Don Jones' PowerShell 2.0 TFM and subscribed to Bruce
Payette's Windows PowerShell in Action book in progress.  Both, I believe,
on MBS' recommendation.

 

 

Webster

 

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com] 
Subject: RE: PS Script to notify when a queue exceeds limit

 

Thanks Mike.

Got it done.

I need to learn power shellL


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: PS Script to notify when a queue exceeds limit

2011-01-10 Thread Campbell, Rob
There's also the MS Scripting Guy.

http://technet.microsoft.com/en-us/scriptcenter/dd742419.aspx

From: Webster [mailto:carlwebs...@gmail.com]
Sent: Monday, January 10, 2011 8:47 AM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

MBS should write a quick blog entry on his recommendations for learning 
PowerShell.  I bought Don Jones' PowerShell 2.0 TFM and subscribed to Bruce 
Payette's Windows PowerShell in Action book in progress.  Both, I believe, on 
MBS' recommendation.


Webster

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Subject: RE: PS Script to notify when a queue exceeds limit

Thanks Mike.
Got it done.
I need to learn power shell:(

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist
**
Note: 
The information contained in this message may be privileged and confidential 
and 
protected from disclosure.  If the reader of this message is not the intended  
recipient, or an employee or agent responsible for delivering this message to  
the intended recipient, you are hereby notified that any dissemination,   
distribution or copying of this communication is strictly prohibited. If you  
have received this communication in error, please notify us immediately by  
replying to the message and deleting it from your computer. 
**

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Mark Bartnik wants to stay in touch on LinkedIn

2011-01-10 Thread Paul Gordon
And people who don’t know how to spell their own job title! J

 

Paul G.

 

From: Matt Moore [mailto:mattmoore...@hotmail.com] 
Sent: 10 January 2011 14:10
To: MS-Exchange Admin Issues
Subject: RE: Mark Bartnik wants to stay in touch on LinkedIn

 

Just say no to spam………;4)

 

From: John Hornbuckle [mailto:john.hornbuc...@taylor.k12.fl.us] 
Sent: Monday, January 10, 2011 4:52 AM
To: MS-Exchange Admin Issues
Subject: RE: Mark Bartnik wants to stay in touch on LinkedIn

 

All of us?

 

 

 

John Hornbuckle

MIS Department

Taylor County School District

www.taylor.k12.fl.us

 

 

 

From: messages-nore...@bounce.linkedin.com 
[mailto:messages-nore...@bounce.linkedin.com] On Behalf Of Mark Bartnik
Sent: Sunday, January 09, 2011 2:27 PM
To: MS-Exchange Admin Issues
Subject: Mark Bartnik wants to stay in touch on LinkedIn

 



LinkedIn


MS-Exchange,

I'd like to add you to my professional network on LinkedIn.

- Mark Bartnik 


   

Mark Bartnik
Principle Consultant at JCS Computer 
Greater Detroit Area 

 

 Confirm that you know Mark 

© 2010, LinkedIn Corporation

   

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

 

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

 
 
NOTICE: Florida has a broad public records law. Most written communications to 
or from this entity are public records that will be disclosed to the public and 
the media upon request. E-mail communications may be subject to public 
disclosure.
 
 

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

Re: Mark Bartnik wants to stay in touch on LinkedIn

2011-01-10 Thread Jonathan Link
Is that a principal[1] of yours? :-)

[1] I saw that, too.  But, I missed that this was sent to the entire
list...  So, he just dumped his address book into LinkedIn.  I wonder of
Mark is still subscribed to this list, he might learn a thing or three.


On Mon, Jan 10, 2011 at 10:08 AM, Paul Gordon wrote:

>  And people who don’t know how to spell their own job title! J
>
>
>
> Paul G.
>
>
>
> *From:* Matt Moore [mailto:mattmoore...@hotmail.com]
> *Sent:* 10 January 2011 14:10
>
> *To:* MS-Exchange Admin Issues
> *Subject:* RE: Mark Bartnik wants to stay in touch on LinkedIn
>
>
>
> Just say no to spam………;4)
>
>
>
> *From:* John Hornbuckle [mailto:john.hornbuc...@taylor.k12.fl.us]
> *Sent:* Monday, January 10, 2011 4:52 AM
> *To:* MS-Exchange Admin Issues
> *Subject:* RE: Mark Bartnik wants to stay in touch on LinkedIn
>
>
>
> All of us?
>
>
>
>
>
>
>
> John Hornbuckle
>
> MIS Department
>
> Taylor County School District
>
> www.taylor.k12.fl.us
>
>
>
>
>
>
>
> *From:* messages-nore...@bounce.linkedin.com [mailto:
> messages-nore...@bounce.linkedin.com] *On Behalf Of *Mark Bartnik
> *Sent:* Sunday, January 09, 2011 2:27 PM
> *To:* MS-Exchange Admin Issues
> *Subject:* Mark Bartnik wants to stay in touch on LinkedIn
>
>
>LinkedIn
>
> MS-Exchange,
>
> I'd like to add you to my professional network on LinkedIn.
>
> - Mark Bartnik
>
>  Mark Bartnik
>
> Principle Consultant at JCS Computer
> Greater Detroit Area
>
>  *Confirm that you know 
> Mark*
>
> © 2010, LinkedIn Corporation
>
> ---
>
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>
>
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>
>
>
>
>
> NOTICE: Florida has a broad public records law. Most written communications 
> to or from this entity are public records that will be disclosed to the 
> public and the media upon request. E-mail communications may be subject to 
> public disclosure.
>
>
>
>
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Mark Bartnik wants to stay in touch on LinkedIn

2011-01-10 Thread Webster
Maybe he only consults in the area of principles?  

 

 

Webster

 

From: Paul Gordon [mailto:paul_gor...@hotmail.com] 
Subject: RE: Mark Bartnik wants to stay in touch on LinkedIn

 

And people who don’t know how to spell their own job title! J

 

From: messages-nore...@bounce.linkedin.com 
[mailto:messages-nore...@bounce.linkedin.com] On Behalf Of Mark Bartnik
Subject: Mark Bartnik wants to stay in touch on LinkedIn

 



LinkedIn


MS-Exchange,

I'd like to add you to my professional network on LinkedIn.

- Mark Bartnik 


   

Mark Bartnik
Principle Consultant at JCS Computer 
Greater Detroit Area 

 

 Confirm that you know Mark 

© 2010, LinkedIn Corporation

   

 


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: [Bulk] RE: "Object could not be found" error 0x8004010F on Outlook 2003

2011-01-10 Thread Maglinger, Paul
Would the next step be to blow away and recreate his account?  Seems pretty 
extreme.

-Original Message-
From: Maglinger, Paul [mailto:pmaglin...@scvl.com] 
Sent: Thursday, January 06, 2011 9:22 AM
To: MS-Exchange Admin Issues
Subject: RE: [Bulk] RE: "Object could not be found" error 0x8004010F on Outlook 
2003

Hey!  That's interesting.  When I check his Address Book Settings I see 
"Download Offline Address Book List".  Everyone else has "\Global Address 
List".  I don't have any other options to choose from on his or on mine.  As we 
have the same issue on other workstations logged in as him, it must be a 
setting on the Exchange server itself?

-Original Message-
From: Michael B. Smith [mailto:mich...@smithcons.com] 
Sent: Thursday, January 06, 2011 7:04 AM
To: MS-Exchange Admin Issues
Subject: RE: [Bulk] RE: "Object could not be found" error 0x8004010F on Outlook 
2003

Yeah, well, grasping at straws...have you reviewed the send/receive 
groups/settings for this user and ensured they aren't busticated?

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com


-Original Message-
From: Maglinger, Paul [mailto:pmaglin...@scvl.com] 
Sent: Thursday, January 06, 2011 7:51 AM
To: MS-Exchange Admin Issues
Subject: RE: [Bulk] RE: "Object could not be found" error 0x8004010F on Outlook 
2003

Yes.

-Original Message-
From: Orland, Kathleen [mailto:korl...@rogers.com]
Sent: Wednesday, January 05, 2011 5:52 PM
To: MS-Exchange Admin Issues
Subject: RE: [Bulk] RE: "Object could not be found" error 0x8004010F on Outlook 
2003

Have you tried deleting the .SRS file with Outlook closed?

-Original Message-
From: Maglinger, Paul [mailto:pmaglin...@scvl.com]
Sent: Wednesday, January 05, 2011 5:30 PM
To: MS-Exchange Admin Issues
Subject: [Bulk] RE: "Object could not be found" error 0x8004010F on Outlook
2003

Just to clarify, this is happening the user does a "Send/Receive All" or when 
he is closing Outlook and it does a "Send/Receive" on close.  It does not occur 
when he sends an email.

-Original Message-
From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Wednesday, January 05, 2011 4:27 PM
To: MS-Exchange Admin Issues
Subject: RE: "Object could not be found" error 0x8004010F on Outlook 2003

Even then - Outlook should've resolved the address online when you clicked 
"Send".

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com


-Original Message-
From: Maglinger, Paul [mailto:pmaglin...@scvl.com]
Sent: Wednesday, January 05, 2011 5:24 PM
To: MS-Exchange Admin Issues
Subject: RE: "Object could not be found" error 0x8004010F on Outlook 2003

Unless you're set to send/receive when closing Outlook.

-Original Message-
From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Wednesday, January 05, 2011 4:18 PM
To: MS-Exchange Admin Issues
Subject: RE: "Object could not be found" error 0x8004010F on Outlook 2003

I'm out of ideas. :-(

Especially if it happens in online and offline mode...in online mode, Outlook 
shouldn't touch the OAB.

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com


-Original Message-
From: Maglinger, Paul [mailto:pmaglin...@scvl.com]
Sent: Wednesday, January 05, 2011 5:12 PM
To: MS-Exchange Admin Issues
Subject: RE: "Object could not be found" error 0x8004010F on Outlook 2003

Messages get sent and received.  Seems to be when he hits the Address Book.
Online mode.  Tried in cached mode, still have error.
Happens with tried with Outlook 2007 and 2010.  Just this user.

-Original Message-
From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Wednesday, January 05, 2011 3:46 PM
To: MS-Exchange Admin Issues
Subject: RE: "Object could not be found" error 0x8004010F on Outlook 2003

Do the messages actually get sent and received? That is, is the error spurious?

Is the user in cached or online mode? Does it still occur if you switch modes? 
Does it occur when using Outlook 2007 or Outlook 2010 with this user?

Sidebar: are you aware of the significant issues associated with using Outlook 
2003 against Exchange 2010?

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com


-Original Message-
From: Maglinger, Paul [mailto:pmaglin...@scvl.com]
Sent: Wednesday, January 05, 2011 4:35 PM
To: MS-Exchange Admin Issues
Subject: RE: "Object could not be found" error 0x8004010F on Outlook 2003

No, nothing special.  Just various distribution groups and security groups that 
other people are members of as well.

-Original Message-
From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Wednesday, January 05, 2011 2:42 PM
To: MS-Exchange Admin Issues
Subject: RE: "Object could not be found" error 0x8004010F on Outlook 2003

Is he a member of any "special groups"?

See a recent blog post I made on that topic as well as its predecessor (linked 
from this article):

<

Email stats for Exchange 2007/2010

2011-01-10 Thread Campbell, Rob
MBS help me put some final touches on this last week.

http://mjolinor.wordpress.com/2011/01/04/exchange-2010-mail-stats-testing/

It grabs detailed users stats from the Exchange message tracking logs and saves 
it as .csv.

If anybody that's got 2007 or 2010 wants to grab it and give it a go on their 
system, I'd appreciate any feedback.
**
Note: 
The information contained in this message may be privileged and confidential 
and 
protected from disclosure.  If the reader of this message is not the intended  
recipient, or an employee or agent responsible for delivering this message to  
the intended recipient, you are hereby notified that any dissemination,   
distribution or copying of this communication is strictly prohibited. If you  
have received this communication in error, please notify us immediately by  
replying to the message and deleting it from your computer. 
**

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

Re: PS Script to notify when a queue exceeds limit

2011-01-10 Thread Steven Peck
There is a wealth of PowerShell knowledge out there in the community
Free ebook
http://powershell.com/cs/blogs/ebook/
http://www.ravichaganti.com/blog/?p=1780&utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+RavikanthChaganti+%28Ravikanth+Chaganti%29

Yahoo or Kiffets collection of active community blogs
http://pipes.yahoo.com/pipes/pipe.info?_id=uAmYy9xq3BGHcV361fC6Jw
http://kiffets.com/i/PowerShell/d/w/

Virtual user group
http://powershellgroup.org/

Code repo <- great place to find code samples
http://poshcode.org/

IRC - #PowerShell on Freenode

Steven Peck
http://www.blkmtn.org



On Mon, Jan 10, 2011 at 6:58 AM, Campbell, Rob <
rob_campb...@centraltechnology.net> wrote:

>  There’s also the MS Scripting Guy.
>
>
>
> http://technet.microsoft.com/en-us/scriptcenter/dd742419.aspx
>
>
>
> *From:* Webster [mailto:carlwebs...@gmail.com]
> *Sent:* Monday, January 10, 2011 8:47 AM
>
> *To:* MS-Exchange Admin Issues
> *Subject:* RE: PS Script to notify when a queue exceeds limit
>
>
>
> MBS should write a quick blog entry on his recommendations for learning
> PowerShell.  I bought Don Jones’ PowerShell 2.0 TFM and subscribed to Bruce
> Payette’s Windows PowerShell in Action book in progress.  Both, I believe,
> on MBS’ recommendation.
>
>
>
>
>
> Webster
>
>
>
> *From:* Liby Philip Mathew [mailto:lmat...@path-solutions.com]
> *Subject:* RE: PS Script to notify when a queue exceeds limit
>
>
>
> Thanks Mike.
>
> Got it done.
>
> I need to learn power shellL
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>
> **
> Note:
> The information contained in this message may be privileged and confidential 
> and
> protected from disclosure.  If the reader of this message is not the intended
> recipient, or an employee or agent responsible for delivering this message to
> the intended recipient, you are hereby notified that any dissemination,
> distribution or copying of this communication is strictly prohibited. If you
> have received this communication in error, please notify us immediately by
> replying to the message and deleting it from your computer.
> **
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

Who has delegate rights to Calendars?

2011-01-10 Thread Kiernan, Margaret M. (x2255)
How can we run a query/report to find out who has delegate rights to other 
users calendars?

Thanks.

Margie

--
Privileged/Confidential Information may be contained in this message.  If you 
are not
the addressee indicated in this message (or responsible for delivery of the 
message to
such person), you may not copy or deliver this message to anyone.  In such 
case, you
should destroy this message and kindly notify the sender by reply email.  
Please advise
immediately if you or your employer do not consent to Internet email for 
messages of this
kind.
 
--
 
IRS Circular 230 disclosure:  Any tax advice contained in this communication 
(including
any attachments or enclosures) was not intended or written to be used, and 
cannot be
used, for the purpose of (i) avoiding penalties under the Internal Revenue Code 
or (ii)
promoting, marketing or recommending to another party any transaction or matter 
addressed
in this communication.  (The foregoing disclaimer has been affixed pursuant to 
U.S.
Treasury regulations governing tax practitioners.)
 
==

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Who has delegate rights to Calendars?

2011-01-10 Thread Campbell, Rob
What Exchange version are you running?

From: Kiernan, Margaret M. (x2255) [mailto:mkier...@pbwt.com]
Sent: Monday, January 10, 2011 3:08 PM
To: MS-Exchange Admin Issues
Subject: Who has delegate rights to Calendars?

How can we run a query/report to find out who has delegate rights to other 
users calendars?

Thanks.

Margie

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

--

Privileged/Confidential Information may be contained in this message.  If you 
are not

the addressee indicated in this message (or responsible for delivery of the 
message to

such person), you may not copy or deliver this message to anyone.  In such 
case, you

should destroy this message and kindly notify the sender by reply email.  
Please advise

immediately if you or your employer do not consent to Internet email for 
messages of this

kind.



--



IRS Circular 230 disclosure:  Any tax advice contained in this communication 
(including

any attachments or enclosures) was not intended or written to be used, and 
cannot be

used, for the purpose of (i) avoiding penalties under the Internal Revenue Code 
or (ii)

promoting, marketing or recommending to another party any transaction or matter 
addressed

in this communication.  (The foregoing disclaimer has been affixed pursuant to 
U.S.

Treasury regulations governing tax practitioners.)



==
**
Note: 
The information contained in this message may be privileged and confidential 
and 
protected from disclosure.  If the reader of this message is not the intended  
recipient, or an employee or agent responsible for delivering this message to  
the intended recipient, you are hereby notified that any dissemination,   
distribution or copying of this communication is strictly prohibited. If you  
have received this communication in error, please notify us immediately by  
replying to the message and deleting it from your computer. 
**

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Who has delegate rights to Calendars?

2011-01-10 Thread David Mazzaccaro
Run this command to check for delegates:

ldifde -f C:\delegates.txt -d "dc=DOMAIN" -l
name,publicDelegates,publicDelegatesBL -r
"(|(publicDelegates=*)(publicDelegatesBL=*))"

 

 

 

 

From: Kiernan, Margaret M. (x2255) [mailto:mkier...@pbwt.com] 
Sent: Monday, January 10, 2011 4:08 PM
To: MS-Exchange Admin Issues
Subject: Who has delegate rights to Calendars?

 

How can we run a query/report to find out who has delegate rights to
other users calendars?

 

Thanks.

 

Margie

---
To manage subscriptions click here:
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

--
Privileged/Confidential Information may be contained in this message.
If you are not
the addressee indicated in this message (or responsible for delivery of
the message to
such person), you may not copy or deliver this message to anyone.  In
such case, you
should destroy this message and kindly notify the sender by reply email.
Please advise
immediately if you or your employer do not consent to Internet email for
messages of this
kind.
 
--
 
IRS Circular 230 disclosure:  Any tax advice contained in this
communication (including
any attachments or enclosures) was not intended or written to be used,
and cannot be
used, for the purpose of (i) avoiding penalties under the Internal
Revenue Code or (ii)
promoting, marketing or recommending to another party any transaction or
matter addressed
in this communication.  (The foregoing disclaimer has been affixed
pursuant to U.S.
Treasury regulations governing tax practitioners.)
 

==

.
---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

Meeting Request issue

2011-01-10 Thread Wayne Dueck
 I have an unusual issue with Outlook and am not sure the next troubleshooting 
steps.
 Exchange 2007 SP2 ru2
 Outlook 2007 SP2
 
 I send a meeting request to UserA and UserA gets it but  UserB and UserC 
gets it also and I get an NDR back saying it's undeliverable to UserD which is 
an IMCEAEX... type address. In the header section of the NDR, the "To" shows 
the undeliverable to the IMCEAEX address and delivery to UserB and UserC(which 
I didn't send it to) and nothing about UserA receiving it but I have verified 
that she did receive it. The transaction logs back this up. They do not show a 
'Deliver' to UserA. The 'Receive' event shows the IMCEAEX, UserB, UserC. 
 
 - Happens with a meeting request (is repeatable) 
 - Does not happen with email to this person
 - Does not happen with meeting requests to other people.
 - UserA account IsLinked = False
 - UserA says there might of been a rule to forward meetings at one time but 
currently there are no rules
 - Checked UserA Active Directory object attributes for clues
 
 Where do I go from here?
Thanks for your help,
-Wayne
---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist


Re: Meeting Request issue

2011-01-10 Thread My New Display Name for Bob. :)
Delegates on the calendar for the user?
--Original Message--
From: Wayne Dueck
To: MS-Exchange Admin Issues
ReplyTo: MS-Exchange Admin Issues
Subject: Meeting Request issue
Sent: Jan 10, 2011 13:37

 I have an unusual issue with Outlook and am not sure the next troubleshooting 
steps.
 Exchange 2007 SP2 ru2
 Outlook 2007 SP2
 
 I send a meeting request to UserA and UserA gets it but  UserB and UserC 
gets it also and I get an NDR back saying it's undeliverable to UserD which is 
an IMCEAEX... type address. In the header section of the NDR, the "To" shows 
the undeliverable to the IMCEAEX address and delivery to UserB and UserC(which 
I didn't send it to) and nothing about UserA receiving it but I have verified 
that she did receive it. The transaction logs back this up. They do not show a 
'Deliver' to UserA. The 'Receive' event shows the IMCEAEX, UserB, UserC. 
 
 - Happens with a meeting request (is repeatable) 
 - Does not happen with email to this person
 - Does not happen with meeting requests to other people.
 - UserA account IsLinked = False
 - UserA says there might of been a rule to forward meetings at one time but 
currently there are no rules
 - Checked UserA Active Directory object attributes for clues
 
 Where do I go from here?
Thanks for your help,
-Wayne
---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist


Sent from my Verizon Wireless BlackBerry
---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

Re: Meeting Request issue

2011-01-10 Thread Don Ely
B and C probably also receive meeting requests for user A due to the
delegate configuration.  B or C, might have some kind of rule or delagate on
their mailbox as well...

On Mon, Jan 10, 2011 at 2:00 PM, Wayne Dueck wrote:

> I mis-spoke on the delegate question. I was looking at the mailbox
> permission, not the calendar. On the calendar, UserB and UserC have Editor
> Permissions.
>  -Wayne
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe exchangelist
>

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

RE: Meeting Request issue

2011-01-10 Thread Dueck Wayne L
Ok. Thanks, I'll track that down. I'll have to look into what the "Editor" 
delegate permissions does. 
-Wayne 

-Original Message-
From: Don Ely [mailto:don@gmail.com] 
Sent: Monday, January 10, 2011 2:05 PM
To: MS-Exchange Admin Issues
Subject: Re: Meeting Request issue

B and C probably also receive meeting requests for user A due to the delegate 
configuration.  B or C, might have some kind of rule or delagate on their 
mailbox as well...


On Mon, Jan 10, 2011 at 2:00 PM, Wayne Dueck  wrote:


I mis-spoke on the delegate question. I was looking at the mailbox 
permission, not the calendar. On the calendar, UserB and UserC have Editor 
Permissions.

-Wayne
---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist



---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist


---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist



RE: PS Script to notify when a queue exceeds limit

2011-01-10 Thread Liby Philip Mathew
Mike,
I guess batch file will not work as the cmd-let get-queue requires EMS.
Working hard to find a solution to invoke EMS to run the scheduled script.  Any 
clue?
Thank you.

Regards

Liby Philip Mathew | ICT Consultant
ICT Professional Services
Path Solutions
Tel: +965 24824600 Ext. 703
Fax: +965 24824500
www.path-solutions.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Monday, January 10, 2011 5:04 PM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

Thanks Mike.
Got it done.
I need to learn power shell:(

Regards

Liby Philip Mathew | ICT Consultant
ICT Professional Services
Path Solutions
Tel: +965 24824600 Ext. 703
Fax: +965 24824500
www.path-solutions.com

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, January 10, 2011 4:11 PM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

So...

Get-Queue |? { $_.MessageCount -gt 20 } |% { send-mailmessage 
-to ale...@whereever.com -subject "queue 
$($_.identity) too full ($($_.MessageCount))"

Put that into a BAT file and schedule the BAT file using task scheduler to run 
every 30 minutes.

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Monday, January 10, 2011 7:25 AM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

Thanks Mike,
I am on E2K7 SP2.  I guess your query is in reference to Send-MailMessage 
cmd-let. If so, that part is taken care.
But I need to send a message only if a Q exceeds 20 mails with the Identity & 
MessageCount of the Q and schedule it as a task that runs every 30min or so.
Regards

Liby Philip Mathew

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, January 10, 2011 3:17 PM
To: MS-Exchange Admin Issues
Subject: RE: PS Script to notify when a queue exceeds limit

Getting the number of messages in queues is trivial.

get-queue | select Identity, MessageCount

Sending a message differs somewhat depending on the version of Exchange 
(2007/2010). Which are you running?

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Liby Philip Mathew [mailto:lmat...@path-solutions.com]
Sent: Sunday, January 09, 2011 1:24 AM
To: MS-Exchange Admin Issues
Subject: PS Script to notify when a queue exceeds limit

HI,
I am looking for a power shell script that can generates a mail and post it to 
admin when a mail queue (on Hub & Edge)exceeds a particular number.
Hope someone may have it.
Appreciate getting a help on the same.

Regards

Liby Philip Mathew



Disclaimer
[The information contained in this e-mail message and any attached files are 
confidential information and intended solely for the use of the individual or 
entity to whom they are addressed. This transmission may contain information 
that is privileged, confidential or exempt from disclosure under applicable 
law. If you have received this e-mail in error, please notify the sender 
immediately and delete all copies. If you are not the intended recipient, any 
disclosure, copying, distribution, or use of the information contained herein 
is STRICTLY PROHIBITED. Path Solutions accepts no responsibility for any 
errors, omissions, computer viruses and other defects.]

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist