NameSpace.AddStore Method (Outlook)
Adds a Personal Folders (.pst) file to the current profile.
Syntax
expression .AddStore(Store)
expression A variable that represents a NameSpace object.
Parameters
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. |
Remarks
Use the RemoveStore method to remove a .pst that is already added to a profile.
Example
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