1: 2: 3: 4:
set Session = CreateObject("Redemption.RDOSession") Session.LogonPstStore pstFile , 1, "PST For " & userName set Store = Session.Stores.DefaultStore Store.ValidateIPMTree
1: 2: 3: 4: 5:
using Redemption; ..... Redemption.RDOSession RDSession = (Redemption.RDOSession) new Redemption.RDOSession(); RDSession.LogonPstStore(pstFile, 1, "PST For " + UsertName, 0 , 0);
1: 2:
set Store = Session.Stores.DefaultStore Store.ValidateIPMTree
1:
RDSession.Stores RDStore = new Session.Stores.DefaultStore
Redemption.RDOPstStore RDPstStore = (Redemption.RDOPstStore) new Redemption.RDOPstStore(); RDPstStore.ValidateIPMTree();
1: 2: 3:
set Session = CreateObject("Redemption.RDOSession") Session.Logon MsgBox "The name of the default store is" & vbCrLf & Session.Stores.DefaultStore.Name
Redemption.RDOPstStore RDStores; RDStores = (Redemption.RDOPstStore)RDSession.Stores.DefaultStore;