NameSpace.AddStore method (Outlook)
Adds a Personal Folders (.pst) file to the current profile.
expression. AddStore
( _Store_
)
expression A variable that represents a NameSpace object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Store | Required | Variant | The path of the .pst file to be added to the profile. If the .pst file does not exist, Microsoft Outlook creates it. |
Use the RemoveStore method to remove a .pst that is already added to a profile.
This Microsoft Visual Basic for Applications (VBA) example adds a new Personal Folders (.pst) file to the user's profile.
Sub CreatePST()
Dim myNameSpace As Outlook.NameSpace
Set myNameSpace = Application.GetNamespace("MAPI")
myNameSpace.AddStore "c:\" & myNameSpace.CurrentUser & "\.pst"
End Sub
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.