RE: New-MailboxExportRequest issues

2012-01-30 Thread Sobey, Richard A
Your Sent and Received are the same? You may also need to specify a MM:HH in addition to MM:DD:. Can you send the output of the command when it fails? From: bounce-9480934-8066...@lyris.sunbelt-software.com [mailto:bounce-9480934-8066...@lyris.sunbelt-software.com] On Behalf Of Joseph L.

RE: New-MailboxExportRequest issues

2012-01-30 Thread Joseph L. Casale
Right, Unless I misunderstand it, Sent mail is mail you send whereas Received mail is mail you received and I wanted both exported. No errors are thrown, it accepts it but the job reports failed when viewing the queue. I wasnt sure looking at the output of certain cmds versus their input as to

RE: New-MailboxExportRequest issues

2012-01-30 Thread Joseph L. Casale
Hailing from Canada:) What can I say, maybe it was something else as the jobs were accepted, but when viewing stats showed failed almost immediately. Search-Mailbox seems to accept either and so long as the DD is larger than any MM, it knows, and always seems to report back in DD/MM/. jlc

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
Can you run these for me? (Any PowerShell window, doesn't have to be EMS.) (get-culture) | fl (get-culture).DateTimeFormat Thanks. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Joseph L. Casale

RE: Problem creating linked mailboxes

2012-01-30 Thread Michael B. Smith
In ESM you should have an option to copy this window press ctrl-c or words to that effect, which will including the failing command and its parameters. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: James Kerr [mailto:cluster...@gmail.com] Sent:

RE: Analysing e2k10 transaction logs

2012-01-30 Thread Michael B. Smith
You can still use the IIS logs (if you have them turned on) to see data VOLUME - which can track user, source ip, data read, data written, etc. However, that doesn't allow you to see actual data CONTENT. The process described here allows you to examine content. Regards, Michael B. Smith

RE: New-MailboxExportRequest issues

2012-01-30 Thread Sobey, Richard A
Hah! Over here in Blighty I have to use DD/MM/ for any date up to and including the 12th of each month, and MM/DD/ for the 13th and after. Or, I can stick to MM/DD/ throughout the entire command. Grrr. From: bounce-9481349-8066...@lyris.sunbelt-software.com

RE: New-MailboxExportRequest issues

2012-01-30 Thread Sobey, Richard A
Of course, you're right, I was having a brain-fart moment. Sorry! See other replies anyway :) From: bounce-9481344-8066...@lyris.sunbelt-software.com [mailto:bounce-9481344-8066...@lyris.sunbelt-software.com] On Behalf Of Joseph L. Casale Sent: 30 January 2012 13:41 To: MS-Exchange Admin

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
I've never heard of that and it sounds like a bug. Granted I'm en-us all the way, so I don't see these types of problems. Can you also run these for me? (Any PowerShell window, doesn't have to be EMS.) (get-culture) | fl (get-culture).DateTimeFormat Thanks. I

Re: New-MailboxExportRequest issues

2012-01-30 Thread Steve Kradel
I'd suggest going with a format that's unambiguous, and readily accepted by both .NET and SQL: dd-MMM-; e.g., 30-JAN-2012. This is my date format of choice for systems and for communicating with an international audience. --Steve On Mon, Jan 30, 2012 at 10:18 AM, Sobey, Richard A

RE: New-MailboxExportRequest issues

2012-01-30 Thread Sobey, Richard A
It's a strange one, and from some forum digging I'm not alone. Yes, definitely a bug. Output below: [PS] C:\scripts\Ps(Get-Culture) | fl Parent : en LCID : 2057 KeyboardLayoutId : 2057 Name : en-GB

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
I agree with your concept - but I think I disagree with your choice of format. Search isn't built on SQL and it has a limited range of date formats it recognizes. I have notes that say the only universal unambiguous format is -mm-dd hh:mm:ss (with hh:mm:ss being optional), but I don't have

RE: New-MailboxExportRequest issues

2012-01-30 Thread Sobey, Richard A
E.G: [PS] C:\scripts\PsGet-MessageTrackingLog -Server ICEXCH-H1 -Sender r.so...@imperial.ac.uk -Start 15/01/2012 Cannot process argument transformation on parameter 'Start'. Cannot convert value 15/01/2012 to type System.DateTime . Error: String was not recognized as a valid DateTime. +

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
OK. That looks right, so it seems to be an Exchange-only issue. Can you try it with -mm-dd hh:mm:ss (with hh:mm:ss being optional) and see if that is a valid workaround? Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Sobey, Richard A

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
Well, there ya go. It's System.Globalization.DateTimeFormatInfo, element UniversalSortableDateTimePattern. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com -Original Message- From: Michael B. Smith [mailto:mich...@smithcons.com] Sent: Monday,

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
Oh, you are gonna hate this one. That's not valid. You have to do it like this: Get-MessageTrackingLog -Server ICEXCH-H1 -Sender r.so...@imperial.ac.ukmailto:r.so...@imperial.ac.uk -Start [DateTime]::Parse( 15/01/2012 ) It's a System.DateTime parameter, not a string parameter. What's

RE: New-MailboxExportRequest issues

2012-01-30 Thread Sobey, Richard A
Not quite, but what you are saying makes sense. Get-MessageTrackingLog -Server ICEXCH-H1 -Sender r.so...@imperial.ac.uk -Start [DateTime]::Parse( 15/01/2012 ) Cannot process argument transformation on parameter 'Start'. Cannot convert value [DateTime]::Parse to type System.D ateTime. Error:

Re: New-MailboxExportRequest issues

2012-01-30 Thread Webster
Sounds like the basis for a new MBS article to me. Carl Webster Consultant and Citrix Technology Professional http://www.CarlWebster.comhttp://www.carlwebster.com/ From: Michael Smith mich...@smithcons.commailto:mich...@smithcons.com Reply-To: Admin Issues

Re: New-MailboxExportRequest issues

2012-01-30 Thread Steve Kradel
I would expect the PoSH stuff to run DateTime.Parse or a similar method on its input -- didn't mean to imply that SQL was relevant here, or that dd-MMM- is SQL's most native-ish format (it is not) -- merely a format that I find easy to type, read, and which is well understood by most systems.

Re: Problem creating linked mailboxes

2012-01-30 Thread James Kerr
I can't get to that point since I can't select a linked domain controller and since I can't do that I also can't select linked master account which are mandatory to proceed further in ESM. All I have is that error that I posted in the event log. On Mon, Jan 30, 2012 at 9:44 AM, Michael B. Smith

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
That surprises me. Forget the cmdlet for a minute and do the below straight from the cmdline: Does this fail? [System.DateTime]::Parse(15/01/2012) And then, does this fail? $culture = new-object System.Globalization.CultureInfo( en-GB )

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
It's a tough article to write when you are using the native formats (en-US). :-P Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Webster [mailto:webs...@carlwebster.com] Sent: Monday, January 30, 2012 11:32 AM To: MS-Exchange Admin Issues Subject:

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
Search accepts that format too. :-) Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com -Original Message- From: Steve Kradel [mailto:skra...@zetetic.net] Sent: Monday, January 30, 2012 11:32 AM To: MS-Exchange Admin Issues Subject: Re:

RE: Analysing e2k10 transaction logs

2012-01-30 Thread Bob Fronk
Michael, Pinged you off list a few days ago, did you get the message? To other list members, I apologize for the noise. BF -Original Message- From: Michael B. Smith [mailto:mich...@smithcons.com] Sent: Monday, January 30, 2012 10:16 AM To: MS-Exchange Admin Issues Subject: RE:

Re: Analysing e2k10 transaction logs

2012-01-30 Thread Kurt Buff
Ah. The IIS logs (and in another case the SMTP logs) were sufficient for me to determine the culprits and make the necessary decisions. Kurt On Mon, Jan 30, 2012 at 07:15, Michael B. Smith mich...@smithcons.com wrote: You can still use the IIS logs (if you have them turned on) to see data

RE: New-MailboxExportRequest issues

2012-01-30 Thread Joseph L. Casale
Sorry for getting back late: [PS] C:\(get-culture) |fl Parent : en LCID : 4105 KeyboardLayoutId : 4105 Name : en-CA IetfLanguageTag: en-CA DisplayName: English (Canada)

RE: Analysing e2k10 transaction logs

2012-01-30 Thread Joseph L. Casale
Yup, logparser made for a nice query and output that was far more usable! Thanks, jlc From: Michael B. Smith [mich...@smithcons.com] Sent: Monday, January 30, 2012 8:15 AM To: MS-Exchange Admin Issues Subject: RE: Analysing e2k10 transaction logs You can

Re: Analysing e2k10 transaction logs

2012-01-30 Thread Harry Singh
Haven't never used logparser, would it simply be loading the IIS/SMTP log file via gui, or is there a command line option to run ? Thanks, H On Mon, Jan 30, 2012 at 1:06 PM, Joseph L. Casale jcas...@activenetwerx.com wrote: Yup, logparser made for a nice query and output that was far more

RE: PST Capture/Import tool released

2012-01-30 Thread Maglinger, Paul
Woohoo! From: Michael B. Smith [mailto:mich...@smithcons.com] Sent: Monday, January 30, 2012 11:28 AM To: MS-Exchange Admin Issues Subject: PST Capture/Import tool released .PST, Time to Walk the Plank http://blogs.technet.com/b/exchange/archive/2012/01/30/pst-time-to-walk-the-plank.aspx

RE: New-MailboxExportRequest issues

2012-01-30 Thread Michael B. Smith
Why does en-CA work on the first ::Parse() and en-GB fail? Weird. No, use -mm-dd. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Joseph L. Casale [mailto:jcas...@activenetwerx.com] Sent: Monday, January 30, 2012 12:57 PM To: MS-Exchange Admin

RE: Analysing e2k10 transaction logs

2012-01-30 Thread Joseph L. Casale
http://www.microsoft.com/download/en/details.aspx?displaylang=enid=24659 Gui, ehem, no:) And thank god... That tool is worth its weight in gold. jlc From: Harry Singh [hbo...@gmail.com] Sent: Monday, January 30, 2012 11:31 AM To: MS-Exchange Admin Issues Subject:

Re: PST Capture/Import tool released

2012-01-30 Thread Kurt Buff
Makes note on list for upgrade planning from E2003 to E21010... On Mon, Jan 30, 2012 at 09:28, Michael B. Smith mich...@smithcons.com wrote: .PST, Time to Walk the Plank http://blogs.technet.com/b/exchange/archive/2012/01/30/pst-time-to-walk-the-plank.aspx http://aka.ms/pstwalk #Exchange

Re: Analysing e2k10 transaction logs

2012-01-30 Thread Kurt Buff
Command line, with SQL syntax even. Highly recommended. On Mon, Jan 30, 2012 at 10:31, Harry Singh hbo...@gmail.com wrote: Haven't never used logparser, would it simply be loading the IIS/SMTP log file via gui, or is there a command line option to run ? Thanks, H On Mon, Jan 30, 2012 at

RE: New-MailboxExportRequest issues

2012-01-30 Thread Joseph L. Casale
Ugh, New-MailboxExportRequest -Mailbox User -ContentFilter {(Sent -lt 2012-01-15) -and (Received -lt 2012-01-15)} -FilePath \\server\path\test.pst Gets accepted into the queue, but when you view the queue it has failed after writing the 265KB pst... What do you figure? Thanks! jlc

RE: E2010SP1 Max Folder Depth / Max Folder Path Length?

2012-01-30 Thread Michael B. Smith
This is a partially known issue. There aren't repro steps and it hasn't been fixed because the Exchange team doesn't know how to reproduce it. All reports are somehow this happened. There is a limit that Exchange hits at 500 levels. You didn't get that deep, so apparently your process or issue

RE: Archive Mailbox Question

2012-01-30 Thread Michael B. Smith
No. You create a copy as of a particular date. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Joseph L. Casale [mailto:jcas...@activenetwerx.com] Sent: Monday, January 30, 2012 2:30 PM To: MS-Exchange Admin Issues Subject: Archive Mailbox Question

RE: Archive Mailbox Question

2012-01-30 Thread Joseph L. Casale
Thought as much... Trying to implement a searchable archive that integrates within windows, if not through OL at least through IE leveraging SSO so the user can open a webpage and not be required to login, then search mail. Almost all of the opensource methods to accomplish this are complicated

RE: E2010SP1 Max Folder Depth / Max Folder Path Length?

2012-01-30 Thread Wright, Seth - wrightst
I'll go back through the event logs again for more info and see if I can dig anything else up. As for using an online profile for Outlook, I don't know what mode the student was in, but I probably tried in cached mode. I don't remember what mode the profile was in for my MFCMAPI trials, but I

RE: Outlook Credentials

2012-01-30 Thread Reimer, Mark
I've seen this happen when an account is locked out. I'm assuming this on a domain. Mark From: Lynden A. Philadelphia [mailto:lphiladelp...@philadelphiagroup.com] Sent: Monday, January 30, 2012 2:34 PM To: MS-Exchange Admin Issues Subject: Outlook Credentials Does anyone know why all of a

RE: Outlook Credentials

2012-01-30 Thread Carol Fee
Have you tried rebooting your workstation ? That usually does the trick. CFee From: Lynden A. Philadelphia [mailto:lphiladelp...@philadelphiagroup.com] Sent: Monday, January 30, 2012 4:34 PM To: MS-Exchange Admin Issues Subject: Outlook Credentials Does anyone know why all of a sudden Outlook

RE: Outlook Credentials

2012-01-30 Thread Lynden A. Philadelphia
It's on a domain; the account is not locked out. From: Reimer, Mark [mailto:mark.rei...@prairie.edu] Sent: January-30-12 4:47 PM To: MS-Exchange Admin Issues Subject: RE: Outlook Credentials I've seen this happen when an account is locked out. I'm assuming this on a domain. Mark From: Lynden

RE: Outlook Credentials

2012-01-30 Thread Lynden A. Philadelphia
Didn't work From: Carol Fee [mailto:c...@massbar.org] Sent: January-30-12 4:52 PM To: MS-Exchange Admin Issues Subject: RE: Outlook Credentials Have you tried rebooting your workstation ? That usually does the trick. CFee From: Lynden A. Philadelphia

RE: Outlook Credentials

2012-01-30 Thread Dana J. Scott
Is it happening to all outlook users on the domain, or just one user? From: Lynden A. Philadelphia [mailto:lphiladelp...@philadelphiagroup.com] Sent: Monday, January 30, 2012 2:34 PM To: MS-Exchange Admin Issues Subject: Outlook Credentials Does anyone know why all of a sudden Outlook is asking

Re: Outlook Credentials

2012-01-30 Thread Steve Ens
Hi Lynden It happens to me as well, sporadically though. I just enter my username and password and it goes away. Try right clicking on the system tray Outlook icon while holding your Ctrl key...there are some tests you can run on the autodiscover configuration. Steve On Mon, Jan 30, 2012 at

RE: Outlook Credentials

2012-01-30 Thread Michael B. Smith
Clear the credential cache. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Lynden A. Philadelphia [mailto:lphiladelp...@philadelphiagroup.com] Sent: Monday, January 30, 2012 4:53 PM To: MS-Exchange Admin Issues Subject: RE: Outlook Credentials It's

RE: Exchange 2010 backup using native tools

2012-01-30 Thread Michael B. Smith
You have to add -vssfull and put the path to the log files in the -include parameter. So Wbadmin start backup -vssfull -include:d:,c:\program files\microsoft\exchange server\v14\mailbox\ Depending on how you are calling wbadmin, that might take some fancy quoting to get

RE: Outlook Credentials

2012-01-30 Thread Lynden A. Philadelphia
Two users so far Lynden P THINK GREEN before you PRINT SCREEN From: Dana J. Scott [mailto:d...@sutinfirm.com] Sent: January-30-12 5:53 PM To: MS-Exchange Admin Issues Subject: RE: Outlook Credentials Is it happening to all outlook users on the domain, or just one user? From: Lynden A.

RE: Themes in OWA

2012-01-30 Thread Michael B. Smith
Hmph. Use your favorite search engine exchange 2010 sp1 owa theme. Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Heaton, Joseph@DFG [mailto:jhea...@dfg.ca.gov] Sent: Monday, January 30, 2012 6:37 PM To: MS-Exchange Admin Issues Subject: Themes in

RE: AD site for Exchange 2010

2012-01-30 Thread Michael B. Smith
Too many questions. Force the Exchange server into a particular site: http://technet.microsoft.com/en-us/library/cc937923.aspx Then fix everything. (Note: other applications may need the same treatment as Exchange.) Regards, Michael B. Smith Consultant and Exchange MVP

Re: AD site for Exchange 2010

2012-01-30 Thread Steve Kradel
Yes, AD and things that depend on AD will generally do fine with one site and no subnet mappings at all. Once there are two or more sites, you must map every client to a site via ADSS or things will start to go off the rails. Go ahead and create a second, larger subnet for the site, wait a

Re: AD site for Exchange 2010

2012-01-30 Thread Richard Stovall
Thank you. On Mon, Jan 30, 2012 at 7:36 PM, Michael B. Smith mich...@smithcons.comwrote: Too many questions. ** ** Force the Exchange server into a particular site: ** ** http://technet.microsoft.com/en-us/library/cc937923.aspx ** ** Then fix everything. ** **

Re: AD site for Exchange 2010

2012-01-30 Thread Richard Stovall
Thanks very much, Steve. I've created the properly defined subnet, but I'm confused about exactly which DNS registrations I should be looking for. Richard On Mon, Jan 30, 2012 at 7:38 PM, Steve Kradel skra...@zetetic.net wrote: Yes, AD and things that depend on AD will generally do fine with

Re: AD site for Exchange 2010

2012-01-30 Thread Richard Stovall
Oh. I think I get it.* Am I looking for the static records for each DC in zonename |_sites | default-first-site-name | _tcp ? If so, they were already there for all the DCs by the time I looked. * And if I'm wrong, then I'm even more embarrassed... On Mon, Jan 30, 2012 at 8:38 PM, Richard

Re: AD site for Exchange 2010

2012-01-30 Thread Steve Kradel
You got it - these records are a result of DCs saying I am authoritative for this site (whether as a result of being located in the site, or by being close to the site if it has no DCs). The actual subnet-to-site mappings only live in AD, and nltest /dsgetdc is the best way to confirm that a

RE: Outlook Credentials

2012-01-30 Thread Lynden A. Philadelphia
How do you do that? Lynden P THINK GREEN before you PRINT SCREEN From: Michael B. Smith [mailto:mich...@smithcons.com] Sent: January-30-12 6:43 PM To: MS-Exchange Admin Issues Subject: RE: Outlook Credentials Clear the credential cache. Regards, Michael B. Smith Consultant and Exchange MVP

Re: AD site for Exchange 2010

2012-01-30 Thread Richard Stovall
Great. Thank you. Running dcdiag earlier, I did see that there were a number of machines on the network that were affected as you describe. The netlogon.log file hasn't changed since I deleted the new site, and dcdiag is now coming back without errors. My workstation was one of the ones with