Re: Strange mail address issue

2012-11-07 Thread KenM
or do a simple LDAP query using something like ADFIND or Powershell with the MS cmdlets get-adobject -ldapfilter (mail=jsm...@company.com) On Wed, Nov 7, 2012 at 3:35 PM, pramatow...@mediageneral.com wrote: Or put a delivery receipt on the message and no waiting:) Blackberry *From*:

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread KenM
powershell and export-mailbox http://www.msexchange.org/articles_tutorials/exchange-server-2010/management-administration/exporting-importing-mailboxes-exchange-server-2010.html

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread KenM
No you are able to script export-mailbox pretty easily using powershell On Thu, Oct 28, 2010 at 1:14 PM, Jean-Paul natola jnat...@hotmail.comwrote: So if I understand this correctly, I have export each users box one at a time? -- Date: Thu, 28 Oct 2010

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread KenM
Something like this will export all this has not been tested get-mailbox | export-mailbox $_ -pstfolderpath c:\ $($_.name).txt On Thu, Oct 28, 2010 at 1:23 PM, KenM kenmli...@gmail.com wrote: No you are able to script export-mailbox pretty easily using powershell On Thu, Oct 28, 2010

Re: exporting ALL maiboxes to PST's

2010-10-28 Thread KenM
maiboxes to PST's From: kenmli...@gmail.com To: exchangelist@lyris.sunbelt-software.com Something like this will export all this has not been tested get-mailbox | export-mailbox $_ -pstfolderpath c:\ $($_.name).txt On Thu, Oct 28, 2010 at 1:23 PM, KenM kenmli...@gmail.com wrote

Re: Power Shell and Multi Valued Attribute

2010-10-26 Thread KenM
this should work, it will give you the users DN $GroupMem = (Get-Group Name_Of_Group).members | select DistinguishedName ForEach ($Member in $GroupMem){ Do something } On Tue, Oct 26, 2010 at 3:14 PM, Kleciak, Clint D A7IT clint.klec...@cigna.com wrote: I am trying to modify settings of

Re: Another Export-Mailbox question

2010-05-08 Thread KenM
the rest..} etc *From:* KenM [mailto:kenmli...@gmail.com] *Sent:* Thursday, May 06, 2010 5:03 PM *To:* MS-Exchange Admin Issues *Subject:* Another Export-Mailbox question I am creating a powershell script that can export several mailboxes to PST of users that are going to be disabled

Another Export-Mailbox question

2010-05-06 Thread KenM
I am creating a powershell script that can export several mailboxes to PST of users that are going to be disabled and deleted. I know there is a XML and on screen logging when you run export-mailbox but is there any way to add error checking into a script that will verify the mailbox exported

Re: Can Powershell do this?

2010-05-06 Thread KenM
I found some things wrong in my last post this is a little better. $users - get-qaduser Foreach ($user in $users){ $sam = $user.samaccountname set-qaduser $sam -UserPrincipalName $...@domain.local } On Thu, May 6, 2010 at 7:26 PM, KenM kenmli...@gmail.com wrote: You can do sometihng like