Powershell command

2010-05-17 Thread Paul Cookman
Anyone know of a good powershell command to find who has mailbox limits in 
place not controlled by there mailbox stores?




PST search using Pwoershell or 3rd party application?

2010-05-17 Thread Leedy, Andy
We need to search a few hundred PST files for any emails containing a keyword 
in the body or subject of the email.
Does anyone know if this is possible using Powershell or a 3rd party 
application?

Any recommendations would be appreciated.

Thanks,
-Andy



**

CONFIDENTIALITY NOTICE - The information transmitted in this message is 
intended only for the person or entity to which it is addressed and may contain 
confidential and/or privileged material. Any review, retransmission, 
dissemination or other use of this information by persons or entities other 
than the intended recipient is prohibited. If you received this in error, 
please contact the sender and destroy all copies of this document. Thank you.

Butler Schein Animal Health

**


RE: Powershell command

2010-05-17 Thread Campbell, Rob
get-mailbox -resultsize unlimited |? {$_.usedatabasequotadefaults -eq False} 
| select displayname

From: Paul Cookman [mailto:paul.cook...@selection.co.uk]
Sent: Monday, May 17, 2010 4:40 AM
To: MS-Exchange Admin Issues
Subject: Powershell command

Anyone know of a good powershell command to find who has mailbox limits in 
place not controlled by there mailbox stores?
**
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. 
**


RE: PST search using Pwoershell or 3rd party application?

2010-05-17 Thread Michael B. Smith
I developed a proprietary application to do this for a 
company-that-shall-not-be-named. It's non-trivial. (Of course, it was to handle 
many thousands of PSTs, not just a few hundred.)

If you want to do it auto-magically, you are best off to load them into 
Exchange 2010 and use multi-mailbox search. While that sounds like a lot of 
work - the alternative is even more work.

Disappointingly, the third-party tools that I investigated before that project 
were not usable for automation. While they could search PSTs, it was a manual 
operation to load each one, search it, save the results (if any), record and 
analyze failures, close the PST, lather, rinse, repeat.

Regards,

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

From: Leedy, Andy [mailto:ale...@butlerschein.com]
Sent: Monday, May 17, 2010 8:09 AM
To: MS-Exchange Admin Issues
Subject: PST search using Pwoershell or 3rd party application?

We need to search a few hundred PST files for any emails containing a keyword 
in the body or subject of the email.
Does anyone know if this is possible using Powershell or a 3rd party 
application?

Any recommendations would be appreciated.

Thanks,
-Andy



**

CONFIDENTIALITY NOTICE - The information transmitted in this message is 
intended only for the person or entity to which it is addressed and may contain 
confidential and/or privileged material. Any review, retransmission, 
dissemination or other use of this information by persons or entities other 
than the intended recipient is prohibited. If you received this in error, 
please contact the sender and destroy all copies of this document. Thank you.

Butler Schein Animal Health

**


RE: PST search using Pwoershell or 3rd party application?

2010-05-17 Thread Leedy, Andy
Did you do this in powershell, c# or something else?

Supposedly the Microsoft has opened up the Outlook data format  to allow 
developers to read, create, and interoperate with the data in .pst files.

In order to facilitate interoperability and enable customers and vendors to 
access the data in .pst files on a variety of platforms, we will be releasing 
documentation for the .pst file format.
http://blogs.msdn.com/interoperability/archive/2009/10/26/roadmap-for-outlook-personal-folders-pst-documentation.aspx

But I can't find the documentation or examples of opening or reading a pst.

-Andy

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, May 17, 2010 8:58 AM
To: MS-Exchange Admin Issues
Subject: RE: PST search using Pwoershell or 3rd party application?

I developed a proprietary application to do this for a 
company-that-shall-not-be-named. It's non-trivial. (Of course, it was to handle 
many thousands of PSTs, not just a few hundred.)

If you want to do it auto-magically, you are best off to load them into 
Exchange 2010 and use multi-mailbox search. While that sounds like a lot of 
work - the alternative is even more work.

Disappointingly, the third-party tools that I investigated before that project 
were not usable for automation. While they could search PSTs, it was a manual 
operation to load each one, search it, save the results (if any), record and 
analyze failures, close the PST, lather, rinse, repeat.

Regards,

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

From: Leedy, Andy [mailto:ale...@butlerschein.com]
Sent: Monday, May 17, 2010 8:09 AM
To: MS-Exchange Admin Issues
Subject: PST search using Pwoershell or 3rd party application?

We need to search a few hundred PST files for any emails containing a keyword 
in the body or subject of the email.
Does anyone know if this is possible using Powershell or a 3rd party 
application?

Any recommendations would be appreciated.

Thanks,
-Andy





**



CONFIDENTIALITY NOTICE - The information transmitted in this message is 
intended only for the person or entity to which it is addressed and may contain 
confidential and/or privileged material. Any review, retransmission, 
dissemination or other use of this information by persons or entities other 
than the intended recipient is prohibited. If you received this in error, 
please contact the sender and destroy all copies of this document. Thank you.



Butler Schein Animal Health



**


RE: PST search using Pwoershell or 3rd party application?

2010-05-17 Thread Michael B. Smith
The UI was done in C# and the core application was written in C++. MAPI is not 
supported in managed code (which C# generates).

Here is the document you are searching for: 
http://msdn.microsoft.com/en-us/library/ff385210.aspx

It's non-trivial to read a PST.

Regards,

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

From: Leedy, Andy [mailto:ale...@butlerschein.com]
Sent: Monday, May 17, 2010 9:52 AM
To: MS-Exchange Admin Issues
Subject: RE: PST search using Pwoershell or 3rd party application?

Did you do this in powershell, c# or something else?

Supposedly the Microsoft has opened up the Outlook data format  to allow 
developers to read, create, and interoperate with the data in .pst files.

In order to facilitate interoperability and enable customers and vendors to 
access the data in .pst files on a variety of platforms, we will be releasing 
documentation for the .pst file format.
http://blogs.msdn.com/interoperability/archive/2009/10/26/roadmap-for-outlook-personal-folders-pst-documentation.aspx

But I can't find the documentation or examples of opening or reading a pst.

-Andy

From: Michael B. Smith [mailto:mich...@smithcons.com]
Sent: Monday, May 17, 2010 8:58 AM
To: MS-Exchange Admin Issues
Subject: RE: PST search using Pwoershell or 3rd party application?

I developed a proprietary application to do this for a 
company-that-shall-not-be-named. It's non-trivial. (Of course, it was to handle 
many thousands of PSTs, not just a few hundred.)

If you want to do it auto-magically, you are best off to load them into 
Exchange 2010 and use multi-mailbox search. While that sounds like a lot of 
work - the alternative is even more work.

Disappointingly, the third-party tools that I investigated before that project 
were not usable for automation. While they could search PSTs, it was a manual 
operation to load each one, search it, save the results (if any), record and 
analyze failures, close the PST, lather, rinse, repeat.

Regards,

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

From: Leedy, Andy [mailto:ale...@butlerschein.com]
Sent: Monday, May 17, 2010 8:09 AM
To: MS-Exchange Admin Issues
Subject: PST search using Pwoershell or 3rd party application?

We need to search a few hundred PST files for any emails containing a keyword 
in the body or subject of the email.
Does anyone know if this is possible using Powershell or a 3rd party 
application?

Any recommendations would be appreciated.

Thanks,
-Andy






**




CONFIDENTIALITY NOTICE - The information transmitted in this message is 
intended only for the person or entity to which it is addressed and may contain 
confidential and/or privileged material. Any review, retransmission, 
dissemination or other use of this information by persons or entities other 
than the intended recipient is prohibited. If you received this in error, 
please contact the sender and destroy all copies of this document. Thank you.




Butler Schein Animal Health




**


RE: Powershell command

2010-05-17 Thread Paul Cookman
Thank you.

From: Campbell, Rob [mailto:rob_campb...@centraltechnology.net]
Sent: 17 May 2010 13:25
To: MS-Exchange Admin Issues
Subject: RE: Powershell command

get-mailbox -resultsize unlimited |? {$_.usedatabasequotadefaults -eq False} 
| select displayname

From: Paul Cookman [mailto:paul.cook...@selection.co.uk]
Sent: Monday, May 17, 2010 4:40 AM
To: MS-Exchange Admin Issues
Subject: Powershell command

Anyone know of a good powershell command to find who has mailbox limits in 
place not controlled by there mailbox stores?

**

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.

**

--
This message has been scanned for viruses and
dangerous content by MailScanner,
and is believed to be clean.




Re: Microsoft office 2007 ost limit.

2010-05-17 Thread David Baca
Thanks Michael,

That info was helpful.

David






From: Michael B. Smith mich...@smithcons.com
To: MS-Exchange Admin Issues exchangelist@lyris.sunbelt-software.com
Sent: Fri, May 14, 2010 11:22:30 AM
Subject: RE: Microsoft office 2007 ost limit.


The changes in Outlook 2007 SP2 were backported from Outlook 2010. They have 
the same performance profile.
 
OSTs up to 100 GB were tested.
 
However, you need to have memory and fairly fast disk. The OST format is disk 
intensive. 
 
[ These are from public comments made by Microsoft personnel. Don’t ask me for 
references. J]
 
Regards,
 
Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com
 
From:Joe Pochedley [mailto:joe.poched...@fivesgroup.com] 
Sent: Friday, May 14, 2010 2:08 PM
To: MS-Exchange Admin Issues
Subject: RE: Microsoft office 2007 ost limit.
 
I’m not sure you’re going to find anyone here who can give you a definitive 
answer that OST’s are OK at X gigabytes, but start to blow up at X+1 gigabytes… 
  Whether Microsoft set the default maximum based on performance concerns, or 
file stability concerns;  or neither; or both… I can’t say.
 
Seeing how Microsoft increases the default max OST size to 50GB in Office 2010 
should tell you they feel comfortable supporting up to a 50GB OST.  I’m not 
sure what tweaks they’ve made to the OST format in 2010…  Whether the change 
means anything to an OST under 2007, again I can’t say.
 
What *I* can tell you is that I have some users with OST’s that are near the 
20GB limit on Office 2007.  I’ve never once had a problem with the OST file 
itself.   Even if I did, I’d just delete the OST, tell the user to clean up 
their mailbox and then re-download from the server…   Outlook performance 
certainly does suffer if the PC is not up to the task of handling the large OST 
though.
 
Joe P
 
 
From:David Baca [mailto:dbaca.gr...@yahoo.com] 
Sent: Thursday, May 13, 2010 7:36 PM
To: MS-Exchange Admin Issues
Subject: Re: Microsoft office 2007 ost limit.
 
It tells me how to set the max but it doesn't say what the maximum allowed is 
before it becomes unstable.  Some would argue that 20 GB is the max. but I 
wanted to see if anyone has pushed the envelope. 
 
 



From:Orland, Kathleen korl...@rogers.com
To: MS-Exchange Admin Issues exchangelist@lyris.sunbelt-software.com
Sent: Thu, May 13, 2010 10:07:14 AM
Subject: Re: Microsoft office 2007 ost limit.
Have you read this? 
 
http://support.microsoft.com/kb/832925 

Kathleen Orland
 
 
- Original Message - 
From:David Baca 
To:MS-Exchange Admin Issues 
Sent:Thursday, May 13, 2010 12:53 PM
Subject:Microsoft office 2007 ost limit.
 
I was wondering if anyone could tell me if they have ever increased this ost 
file limit and what is the maximum limit is for a 2007 ost file (i know 20 GB 
is the default limit but I want to find out what the recommended maximum is 
without corruption of the ost file.)  
 
 
No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 9.0.819 / Virus Database: 271.1.1/2872 - Release Date: 05/13/10 
14:26:00


  

Re: PST search using Pwoershell or 3rd party application?

2010-05-17 Thread Kurt Buff
On Mon, May 17, 2010 at 05:09, Leedy, Andy ale...@butlerschein.com wrote:
 We need to search a few hundred PST files for any emails containing a
 keyword in the body or subject of the email.

 Does anyone know if this is possible using Powershell or a 3rd party
 application?



 Any recommendations would be appreciated.



 Thanks,

 -Andy

OL2MBOX might fit the bill:

http://alioth.debian.org/projects/libpst/

and perhaps

http://www.five-ten-sg.com/libpst/

Primitive, but might do what you want.

Kurt



GAL not updating on cached clients

2010-05-17 Thread Jean-Paul natola

Hi all,
 
the GAL is not updating on my 2007 clients that are in cached mode, and if i 
try to download address book  it just hangs.
 
the only work around i have is to delete the OAB files from 
\\pc1\c$\Documents and Settings\user_name\Local Settings\Application 
Data\Microsoft\Outlook
 
Exchange 2010
outlook 2007 (cached mode)
xp sp3


 
 
 
 
 
 



  
_
The New Busy is not the too busy. Combine all your e-mail accounts with Hotmail.
http://www.windowslive.com/campaign/thenewbusy?tile=multiaccountocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_4

RE: GAL not updating on cached clients

2010-05-17 Thread Michael B. Smith
What exchange version?

Regards,

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

From: Jean-Paul natola [mailto:jnat...@hotmail.com]
Sent: Monday, May 17, 2010 2:20 PM
To: MS-Exchange Admin Issues
Subject: GAL not updating on cached clients

Hi all,

the GAL is not updating on my 2007 clients that are in cached mode, and if i 
try to download address book  it just hangs.

the only work around i have is to delete the OAB files from
\\pc1\c$\Documentsfile:///\\pc1\c$\Documents and Settings\user_name\Local 
Settings\Application Data\Microsoft\Outlook

Exchange 2010
outlook 2007 (cached mode)
xp sp3












The New Busy is not the too busy. Combine all your e-mail accounts with 
Hotmail. Get 
busy.http://www.windowslive.com/campaign/thenewbusy?tile=multiaccountocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_4


RE: GAL not updating on cached clients

2010-05-17 Thread Jean-Paul natola

2010 standard





 


From: mich...@smithcons.com
To: exchangelist@lyris.sunbelt-software.com
Subject: RE: GAL not updating on cached clients
Date: Mon, 17 May 2010 18:24:41 +







What exchange version?
 

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


From: Jean-Paul natola [mailto:jnat...@hotmail.com] 
Sent: Monday, May 17, 2010 2:20 PM
To: MS-Exchange Admin Issues
Subject: GAL not updating on cached clients
 
Hi all,
 
the GAL is not updating on my 2007 clients that are in cached mode, and if i 
try to download address book  it just hangs.
 
the only work around i have is to delete the OAB files from 
\\pc1\c$\Documents and Settings\user_name\Local Settings\Application 
Data\Microsoft\Outlook
 
Exchange 2010
outlook 2007 (cached mode)
xp sp3


 
 
 
 
 
 







The New Busy is not the too busy. Combine all your e-mail accounts with 
Hotmail. Get busy.
_
The New Busy is not the old busy. Search, chat and e-mail from your inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_3

RE: GAL not updating on cached clients

2010-05-17 Thread Michael B. Smith
Kthx.

Turn up logging on OAB gen.

Try doing a get-exchangeserver |% {update-filedistributionservice $_.Name 
-type oab} and see if you can d/l the addr book after that.

Regards,

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

From: Jean-Paul natola [mailto:jnat...@hotmail.com]
Sent: Monday, May 17, 2010 2:49 PM
To: MS-Exchange Admin Issues
Subject: RE: GAL not updating on cached clients

2010 standard







From: mich...@smithcons.com
To: exchangelist@lyris.sunbelt-software.com
Subject: RE: GAL not updating on cached clients
Date: Mon, 17 May 2010 18:24:41 +
What exchange version?

Regards,

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

From: Jean-Paul natola [mailto:jnat...@hotmail.com]
Sent: Monday, May 17, 2010 2:20 PM
To: MS-Exchange Admin Issues
Subject: GAL not updating on cached clients

Hi all,

the GAL is not updating on my 2007 clients that are in cached mode, and if i 
try to download address book  it just hangs.

the only work around i have is to delete the OAB files from
\\pc1\c$\Documentsfile:///\\pc1\c$\Documents and Settings\user_name\Local 
Settings\Application Data\Microsoft\Outlook

Exchange 2010
outlook 2007 (cached mode)
xp sp3











The New Busy is not the too busy. Combine all your e-mail accounts with 
Hotmail. Get 
busy.http://www.windowslive.com/campaign/thenewbusy?tile=multiaccountocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_4


The New Busy is not the old busy. Search, chat and e-mail from your inbox. Get 
started.http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_3