我需要列出Exchange 2007邮箱属性(使用powershell),可以使用powershell命令(Enable-Mailbox)进行设置。你知道我怎么做吗?
我知道参数列表在这里:http://technet.microsoft.com/en-us/library/aa998251%28EXCHG.80%29.aspx,是否有任何自定义参数未列在此处?
答案 0 :(得分:1)
尝试使用:
get-mailbox
评论后编辑:
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