使用powershell命令的Exchange 2007邮箱属性(属性)列表?

时间:2011-09-02 13:53:13

标签: powershell exchange-server

我需要列出Exchange 2007邮箱属性(使用powershell),可以使用powershell命令(Enable-Mailbox)进行设置。你知道我怎么做吗?

我知道参数列表在这里:http://technet.microsoft.com/en-us/library/aa998251%28EXCHG.80%29.aspx,是否有任何自定义参数未列在此处?

1 个答案:

答案 0 :(得分:1)

尝试使用:

get-mailbox

TechNet

评论后编辑:

set-mailbox mailboxname | Get-member | ? { $_.membertype -eq "Property"} # give all properties usable with se-mailbox commandlet


Get-Mailbox | Get-member | ? { $_.membertype -eq "Property"} #This give a list of all properties available from the Get-mailbox cmdlet