How to hide pstStore

N

nitwalke

Hi all

I have programmatically created new pstStore. This pstStore is visibl
to end user. How can hide this pstStore. Addin is on Outlook 2003 in C#

_pstStore = oSession.Stores.AddPSTStore(....,...,...)

Thanks

Regards
Niti
 
D

Dmitry Streblechenko

RDOSession.Stores.AddPstStore will add teh specified PST store to the
current profile.
If you only need to read items from the PST store, create a new instance of
teh RDOSession obejct and call RDOSession.LogonPstStore - it will create
(and delete) a new temporary profile with only the specified store in it. No
existing profiles will be affected.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
 
B

Brian Tillman

Hi all,

I have programmatically created new pstStore. This pstStore is visibl
to end user. How can hide this pstStore. Addin is on Outlook 2003 i
C#.

_pstStore = oSession.Stores.AddPSTStore(....,...,...);

Hide it where, in Windows or in Outlook? If it's on the person'
computer, that person can see it

--
Brian Tillma

Brian Tillman [MVP-Outlook]

-
http://forums.slipstick.co
 
N

nitwalke

Brian said:
Hide it where, in Windows or in Outlook? If it's on the person'
computer, that person can see it.

Thanks for reply,

Hide it in Outlook.I have to create new folder in this store and ad
some mail into this folder, do some processing on the mail.So I hav
created new store.
Everything is working using new store but only this store can see b
end user.
How can I hide new store?

Thanks
 
N

nitwalke

Thanks for reply,

Hide it in Outlook.I have to create new folder in this store and ad
some mail into this folder, do some processing on the mail.So I hav
created new store.
Everything is working using new store but only this store can see b
end user.
How can I hide new store?

Thanks,

Hi all,

my problem has resolved.
I have created new instance of RDOsession and called LogOnPstStore - i
has created new temporary profile and add add specified pstStore i
it.This store is not visible in outlook.

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top