【问题标题】:List of Exchange 2007 Mailbox attributes(properties) using by powershell command?PowerShell命令使用的Exchange 2007邮箱属性(属性)列表?
【发布时间】:2015-11-01 08:59:18
【问题描述】:

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

我知道参数列表在这里:http://technet.microsoft.com/en-us/library/aa998251%28EXCHG.80%29.aspx,有没有没有在这里列出的自定义参数?

【问题讨论】:

    标签: powershell exchange-server


    【解决方案1】:

    尝试使用:

    get-mailbox
    

    TechNet

    在 cmets 之后编辑:

    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 
    

    【讨论】:

    • 试过了。如果我没有在这个命令中指定身份,它会返回一个所有邮箱的列表(这是很多信息)。指定身份对我来说是不可接受的。我只需要对一个邮箱使用此命令时获得的属性名称
    • 获取邮箱 |获取会员 | ? { $_.membertype -eq "Property"} #这给出了 Get-mailbox cmdlet 中可用的属性列表
    • 非常感谢克里斯蒂安,这正是我所需要的
    猜你喜欢
    • 1970-01-01
    • 2013-12-17
    • 1970-01-01
    • 1970-01-01
    • 2011-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-10-25
    • 1970-01-01
    相关资源
    最近更新 更多