WMI
Expand Minimize
This topic has not yet been rated - Rate this topic

UsePublicStoreDeletedItemLifetime Property

Exchange Server 2003

The UsePublicStoreDeletedItemLifetime property specifies whether the folder should use the deleted item lifetime of the local public message database (MDB). The UsePublicStoreDeletedItemLifetime property is read-write.

Applies To

The UsePublicStoreDeletedItemLifetime property is a member of the Exchange_PublicFolder Class.

Instance Path

The UsePublicStoreDeletedItemLifetime property appears on instances of the \\COMPUTERNAME\ROOT\MicrosoftExchangeV2:Exchange_PublicFolder class.

MOF Syntax

[read,
 write] boolean UsePublicStoreDeletedItemLifetime;

Qualifiers

This property has no qualifiers.

VBScript Example

The following example shows how to retrieve a list of Exchange_PublicFolder instances, and how to retrieve the associated UsePublicStoreDeletedItemLifetime properties.


'===============================================================
' Purpose:   Display each Exchange_PublicFolder found for Exchange server,
'            and show the UsePublicStoreDeletedItemLifetime property on the Exchange_PublicFolder
'            objects
' Change:    cComputerName [string] the computer to access
' Output:    Displays the name of each Exchange_PublicFolder's UsePublicStoreDeletedItemLifetime property
'===============================================================

On Error Resume Next
Dim cComputerName
Const cWMINameSpace = "root/MicrosoftExchangeV2"
Const cWMIInstance = "Exchange_PublicFolder"
cComputerName = "MyComputerNETBIOSName"

Dim strWinMgmts		' Connection string for WMI
Dim objWMIExchange	' Exchange Namespace WMI object
Dim listExchange_PublicFolders	' ExchangeLogons collection
Dim objExchange_PublicFolder		' A single ExchangeLogon WMI object

' Create the object string, indicating WMI (winmgmts), using the
' current user credentials (impersonationLevel=impersonate),
' on the computer specified in the constant cComputerName, and
' using the CIM namespace for the ExchangeClusterResource provider.
strWinMgmts = "winmgmts:{impersonationLevel=impersonate}!//"& _
cComputerName&"/"&cWMINameSpace
Set objWMIExchange =  GetObject(strWinMgmts)
' Verify we were able to correctly set the object.
If Err.Number <> 0 Then
  WScript.Echo "ERROR: Unable to connect to the WMI namespace."
Else
  '
  ' The Resources that currently exist appear as a list of
  ' ExchangeLogon instances in the Exchange namespace.
  Set listExchange_PublicFolders = objWMIExchange.InstancesOf(cWMIInstance)
  '
  ' Were any Exchange_PublicFolder Instances returned?
  If (listExchange_PublicFolders.count > 0) Then
    ' If yes, do the following:
    ' Iterate through the list of Exchange_PublicFolder objects.
    For Each objExchange_PublicFolder in listExchange_PublicFolders
   Wscript.Echo""
       '
       ' Display the value of the UsePublicStoreDeletedItemLifetime property.
       WScript.echo "UsePublicStoreDeletedItemLifetime= "& _
        " ["&TypeName(objExchange_PublicFolder.UsePublicStoreDeletedItemLifetime)&"] "& _
       objExchange_PublicFolder.UsePublicStoreDeletedItemLifetime
       '
    Next
  Else
    ' If no Exchange_PublicFolder instances were returned,
    ' display that.
    WScript.Echo "WARNING: No Exchange_PublicFolder instances were returned."
  End If
End If

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.