From: Jasper Recto on 28 Jan 2010 12:09 Can anybody tell me what the get command is to list each user and their storage limit settings? Thanks, Jasper
From: Karl Mitschke on 28 Jan 2010 12:37 Hello Jasper, > Can anybody tell me what the get command is to list each user and > their storage limit settings? > > Thanks, > Jasper Try this: Get-Mailbox -ResultSize Unlimited |Seletc-Object Alias, IssueWarningQuota, ProhibitSendQuota, ProhibitSendReceiveQuota, UseDatabaseQuotaDefaults Karl http://unlockpowershell.wordpress.com/
From: Ed Crowley [MVP] on 28 Jan 2010 17:43 Not quite. Instead of "Seletc-Object" (sic) you want "Format-Table" or "ft" or "Format-List" or "fl". -- Ed Crowley MVP "There are seldom good technological solutions to behavioral problems." .. "Karl Mitschke" <karlmitschke(a)somestate.gov> wrote in message news:d66cd4c21b4bd8cc6e1cf9ace999(a)msnews.microsoft.com... > Hello Jasper, > >> Can anybody tell me what the get command is to list each user and >> their storage limit settings? >> >> Thanks, >> Jasper > > Try this: > > Get-Mailbox -ResultSize Unlimited |Seletc-Object Alias, IssueWarningQuota, > ProhibitSendQuota, ProhibitSendReceiveQuota, UseDatabaseQuotaDefaults > > Karl > http://unlockpowershell.wordpress.com/ > >
From: Karl Mitschke on 29 Jan 2010 10:25 Hello Ed Crowley [MVP], > Not quite. Instead of "Seletc-Object" (sic) you want "Format-Table" > or "ft" or "Format-List" or "fl". > > "Karl Mitschke" <karlmitschke(a)somestate.gov> wrote in message > news:d66cd4c21b4bd8cc6e1cf9ace999(a)msnews.microsoft.com... > >> Hello Jasper, >> >>> Can anybody tell me what the get command is to list each user and >>> their storage limit settings? >>> >>> Thanks, >>> Jasper >> Try this: >> >> Get-Mailbox -ResultSize Unlimited |Seletc-Object Alias, >> IssueWarningQuota, ProhibitSendQuota, ProhibitSendReceiveQuota, >> UseDatabaseQuotaDefaults >> >> Karl >> http://unlockpowershell.wordpress.com/ I propose that Select-Object will work just fine, depending on what the OP wants to do with the data :) "Seletc-Object" is another matter however ;) For instance, exporting to a csv file with |Export-Csv test.csv -NoTypeInformation will go badly with a Format- command. Regards Karl http://unlockpowershell.wordpress.com/
From: Jasper Recto on 29 Jan 2010 12:42 Thanks! "Karl Mitschke" <karlmitschke(a)somestate.gov> wrote in message news:d66cd4c21b4bd8cc6e1cf9ace999(a)msnews.microsoft.com... > Hello Jasper, > >> Can anybody tell me what the get command is to list each user and >> their storage limit settings? >> >> Thanks, >> Jasper > > Try this: > > Get-Mailbox -ResultSize Unlimited |Seletc-Object Alias, IssueWarningQuota, > ProhibitSendQuota, ProhibitSendReceiveQuota, UseDatabaseQuotaDefaults > > Karl > http://unlockpowershell.wordpress.com/ > >
|
Pages: 1 Prev: Resource booking Next: Problem when receiving emails sent to multiple email domains |