Questions tagged [pst]

File format used by Microsoft Outlook to store data locally.

Personal Storage Table (pst) is a file format used by Microsoft Outlook to store data locally. This includes emails, calendar events etc.

196 questions
3
votes
1 answer

Loop Through PSTs in Outlook 2003 with VBA

In Outlook 2007, I am able to loop through mails stores, including PSTs, using code like this: Dim stores As Outlook.stores Set stores = objNamespace.stores Dim store As Outlook.store For Each store In stores MsgBox…
Jacob Quisenberry
  • 1,131
  • 3
  • 20
  • 48
3
votes
2 answers

Using VBScript List Out All Outlook Profiles and PST's

I am attempting to write a script to check for Outlook profiles and find their relavent pst's and write it to a txt. We have some users who have to have 2 seperate profiles and who have to store some pst's on a seperate network share. I did find out…
Joe Williams
  • 33
  • 1
  • 1
  • 3
3
votes
1 answer

Read PST files from win32 or pypff

I want to read PST files using Python. I've found 2 libraries win32 and pypff Using win32 we can initiate a outlook object using: import win32com.client outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI") inbox =…
Mohit Motwani
  • 4,662
  • 3
  • 17
  • 45
3
votes
2 answers

Is there a way to import PST files into Outlook using C#?

Using: Visual Studio 2017 (Language: C#) I have a similar function written below in PowerShell script, but I need the C# version of it to execute on the click of a button within Visual Studio: Add-type -assembly "Microsoft.Office.Interop.Outlook" |…
Josh Pulda
  • 45
  • 5
3
votes
0 answers

how to parse pst file with tika into a list of emails, instead of a string of emails

I am using tika as a command line utility to parse a pst file: java -jar tika-app.jar -t my_emails.pst The output is a string of the contents of all the emails. This makes it hard to separate each email. Is it possible to output as a list of…
Michael
  • 1,398
  • 5
  • 24
  • 40
3
votes
0 answers

bigdata: how to analyze pst/email data?

i have pst or email files in hdfs. now, i want to do text analysis by whichever component available in hadoop which suits the best. how do i start with. Do I have to first extract the actual content out of these files and store it somewhere (in a…
natarajan k
  • 406
  • 9
  • 24
3
votes
1 answer

How can I get PST email address and name?

We are working on stuff that deal with PST, so we are trying to create using java-libpst sample code. It work fine for me, but we need to show the details of PST, like PST name, configured email account on given PST. I want to show email address and…
Neelam Sharma
  • 2,745
  • 4
  • 32
  • 73
3
votes
1 answer

Extract Email adresses from .pst file with java-libpst

i have several .pst files and need all the mail-addresses, i sent mails to. The example code of the library allows me to traverse every mail in the file, but i can't find the right getter to extract the mail address of the receiver. To traverse…
IDontKnow
  • 159
  • 1
  • 12
3
votes
0 answers

How to read a .pst file using c# code

I'm using visual studio 2008 and i want to read a .pst file using c# code and want to display the contents of the pst file on a webpage? please let me know the detailed procdedure of doing that. Thanks Satish
user1419211
  • 31
  • 1
  • 1
  • 2
3
votes
1 answer

PST handling using Ruby

I am in the process of writing some code to extract information about the contents of PST files such as the total messages, sub folder listing, number of messages per folder, email subject name and sent/received date for each message. It is a work…
Craig Hendley
  • 239
  • 2
  • 4
  • 14
3
votes
2 answers

How to process/extract .pst using hadoop Map reduce

I am using MAPI tools (Its microsoft lib and in .NET) and then apache TIKA libraries to process and extract the pst from exchange server, which is not scalable. How can I process/extracts pst using MR way ... Is there any tool, library available…
Yogesh
  • 191
  • 1
  • 2
  • 12
2
votes
1 answer

MS Exchange 2010: cmdlet Not Executing Correctly as a Scheduled Task

I've been using a Scheduled Task and the New-MailboxExportRequest cmdlet to export my organization's mailboxes to .PST archive files each night for awhile now. Unfortunately, the ExportRequests are not removed after the archive operation completes…
2
votes
2 answers

Is there a way to use Python Win32com module to read any local PST file and export messages as MSG files?

I am working on a two stages Digital Forensics project, and on stage one, I need to extract all the messages stored on several outlook's PST/OST files, and save them as MSG files in a folder hierarchy like pstFilename\inbox, draft, sent... for each…
HIC
  • 21
  • 1
  • 4
2
votes
2 answers

Beginner's guide towards a linux based solution to read mail content (including attachments) from MS Outlook's .pst files

I have just started with the basics of how MS Outlook stores its mails in its own format (.pst format) and I have to deliver a script (search something or write my own) which - parses these .pst files on a linux system (which were zipped and sent…
Sandeepan Nath
  • 9,966
  • 17
  • 86
  • 144
2
votes
1 answer

plusSeconds in ZonedDateTime not working as expected

Below is the logic we are trying to code. We have startdate(SD) and enddate(ED) in UTC, we first convert startdate to PST(SD_PST) and then add difference between startdate and enddate to the PST converted startdate (SD_PST+(ED minus SD)) to obtain…
Astlez
  • 35
  • 5
1
2
3
13 14