exchange 2003 and query
puertorico123
Member Posts: 95 ■■□□□□□□□□
in Off-Topic
its is posible to make a query for search user account with out a enable mailbox?
and a script to automatic configure a mailbox?
explain: in user id, from directory active, i make a right-click and then use "task exchange", for enable a mailbox.
and a script to automatic configure a mailbox?
explain: in user id, from directory active, i make a right-click and then use "task exchange", for enable a mailbox.
HOLD:
Comptia A+
Comptia Network+
2009 Plan:
MCSA...75%
CCENT....0%
70-648..0%
2010 Plan:
MCITP
ORACLE
Comptia A+
Comptia Network+
2009 Plan:
MCSA...75%
CCENT....0%
70-648..0%
2010 Plan:
MCITP
ORACLE
Comments
-
HeroPsycho Inactive Imported Users Posts: 1,940puertorico123 wrote: »its is posible to make a query for search user account with out a enable mailbox?
and a script to automatic configure a mailbox?
explain: in user id, from directory active, i make a right-click and then use "task exchange", for enable a mailbox.
Using the Quest AD cmdlets and PowerShell:
get-qaduser * -includedproperties homemdb | where-object {$_.homemdb -eq $null}
See if that works.
Powershell script to create a mailbox:
CodeGuru: Enterprise Powershell: Creating Mailboxes in Exchange 2003Good luck to all!